You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

54 lines
1.5 KiB

<%
//程序名称:CertifyPrintInput.jsp
//程序功能:
//创建日期:2002-10-14 10:20:44
//创建人 :CrtHtml程序创建
//更新记录: 更新人 更新日期 更新原因/内容
%>
<%@page import="com.sinosoft.lis.pubfun.DateUtil"%>
<%@include file="../common/jsp/UsrCheck.jsp"%>
<SCRIPT src="../common/javascript/Common.js"></SCRIPT>
<%
//添加页面控件的初始化。
GlobalInput globalInput = (GlobalInput)session.getAttribute("GI");
String strManageCom = globalInput.ComCode;
String strOperator = globalInput.Operator;
String strCurTime = DateUtil.getCurrentDate();
%>
<script language="JavaScript">
function initInpBox()
{
try {
fm.reset();
fm.ManageCom.value = '<%= strManageCom %>';
fm.OperatorInput.value = '<%= strOperator %>';
fm.InputMakeDate.value = '<%= strCurTime %>';
fm.GetMakeDate.value = '<%= strCurTime %>';
} catch(ex) {
i18nAlert("{0}函数中发生异常:初始化界面错误!", "LIS-01177", "CertifyPrintInputInit.jsp-->InitInpBox");
}
}
function initForm()
{
try {
initInpBox();
} catch(re) {
i18nAlert("{0}函数中发生异常:初始化界面错误!", "LIS-01177", "CertifyPrintInputInit.jsp-->InitForm");
}
}
// 设置提单信息
function setGetInfo()
{
try {
fm.GetMakeDate.value = '<%= strCurTime %>';
fm.OperatorGet.value = '<%= strOperator %>';
} catch(ex) {
i18nAlert("{0}函数中发生异常:初始化界面错误!", "LIS-01177", "CertifyPrintInputInit.jsp-->setGetInfo");
}
}
</script>