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.
 
 
 
FZ/lis-module-grp-nb-web/src/main/webapp/g_app/AllFeeQueryDetailInit.jsp

184 lines
3.1 KiB

<%
/***************************************************************
* <p>ProName:AllFeeQueryDetailInit.jsp</p>
* <p>Title:费用明细</p>
* <p>Description:费用明细</p>
* <p>Copyright:Copyright (c) 2012</p>
* <p>Company:Sinosoft</p>
* @author : liuhe
* @version : 1.0
* @date : 2025-08-14
****************************************************************/
%>
<script language="JavaScript">
/**
* 初始化界面
*/
function initForm() {
try {
initParam();
initInpBox();
initButton();
initPolGrid();
queryInfo();
} catch (re) {
i18nAlert("初始化界面错误!", "LIS-01178");
}
}
/**
* 初始化界面参数
*/
function initOtherParam() {
try {
} catch (ex) {
}
}
/**
* 初始化参数
*/
function initParam() {
try {
fm.PayNo.value = tPayNo;
fm.SumActuPayMoney.value = tSumActuPayMoney;
} catch (re) {
i18nAlert("初始化参数错误!", "LIS-01179");
}
}
/**
* 初始化录入控件
*/
function initInpBox() {
try {
} catch (ex) {
i18nAlert("初始化录入控件错误!", "LIS-01180");
}
}
/**
* 初始化按钮
*/
function initButton() {
try {
} catch (ex) {
i18nAlert("初始化按钮错误!", "LIS-01186");
}
}
/**
* 把null的字符串转为空
*/
function nullToEmpty(string) {
if ((string=="null")||(string=="undefined")) {
string = "";
}
return string;
}
function initPolGrid()
{
turnPage1 = new turnPageClass();
var iArray = new Array();
var i = 0;
try {
iArray[i]=new Array();
iArray[i][0]="序号";
iArray[i][1]="30px";
iArray[i][2]=10;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="保单号码";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="交费分类";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="实交金额";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="交费间隔";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="交费日期";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="现交至日期";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="交费类型";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="总单/合同号码";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
iArray[i]=new Array();
iArray[i][0]="集体保单号码";
iArray[i][1]="80px";
iArray[i][2]=100;
iArray[i++][3]=0;
PolGrid = new MulLineEnter( "fm" , "PolGrid" );
//这些属性必须在loadMulLine前
PolGrid.mulLineCount = 0;
PolGrid.displayTitle = 1;
PolGrid.locked = 1;
PolGrid.canSel = 1;
PolGrid.canChk = 0;
PolGrid.hiddenPlus = 1;
PolGrid.hiddenSubtraction = 1;
PolGrid.loadMulLine(iArray);
}
catch(ex)
{
alert(ex);
}
}
</script>