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.
75 lines
2.2 KiB
75 lines
2.2 KiB
/***************************************************************
|
|
* <p>ProName:LCContPolChildAmntInput.js</p>
|
|
* <p>Title:未成年人累计身故保额查询</p>
|
|
* <p>Description:未成年人累计身故保额查询</p>
|
|
* <p>Copyright:Copyright (c) 2012</p>
|
|
* <p>Company:Sinosoft</p>
|
|
* @author : 蔡云聪
|
|
* @version : 8.0
|
|
* @date : 2014-05-06
|
|
****************************************************************/
|
|
var showInfo;
|
|
var turnPage = new turnPageClass();
|
|
var turnPage1 = new turnPageClass();
|
|
var tSQLInfo = new SqlClass();
|
|
|
|
function queryUnderAgeInfo(){
|
|
|
|
initContPolChildAmntGrid();
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorUWSql");
|
|
tSQLInfo.setSqlId("LCContPolChildAmntsql1");
|
|
tSQLInfo.addSubPara(tGrpPropNo);
|
|
tSQLInfo.addSubPara(fm.ManageCom.value);
|
|
tSQLInfo.addSubPara(fm.InsuredNo.value);
|
|
tSQLInfo.addSubPara(fm.InsuName.value);
|
|
tSQLInfo.addSubPara(fm.IDNo.value);
|
|
tSQLInfo.addSubPara(fm.sysPlanCode.value);
|
|
tSQLInfo.setModule("grp_pa");
|
|
|
|
turnPage1.queryModal(tSQLInfo.getString(), ContPolChildAmntGrid, 1, 1);
|
|
if (!turnPage1.strQueryResult) {
|
|
i18nAlert("未查询到符合条件的查询结果!", "LIS-03016");
|
|
}
|
|
}
|
|
|
|
function queryProposalGrpContNo(){
|
|
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setModule("grp_pa");
|
|
tSQLInfo.setResourceName("g_pos.EdorUWSql");
|
|
tSQLInfo.setSqlId("LCInsuredInfo4");
|
|
tSQLInfo.addSubPara(tGrpPropNo);
|
|
|
|
var arrResult = easyExecSql(tSQLInfo.getString());
|
|
if (arrResult!=null){
|
|
fm.ProposalGrpContNo.value = arrResult[0][0];
|
|
}
|
|
}
|
|
function queryUnderAgeInfo1(){
|
|
|
|
initContPolChildAmntGrid();
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorUWSql");
|
|
tSQLInfo.setSqlId("LCContPolChildAmntsql1");
|
|
tSQLInfo.addSubPara(tGrpPropNo);
|
|
tSQLInfo.addSubPara(fm.ManageCom.value);
|
|
tSQLInfo.addSubPara(fm.InsuredNo.value);
|
|
tSQLInfo.addSubPara(fm.InsuName.value);
|
|
tSQLInfo.addSubPara(fm.IDNo.value);
|
|
tSQLInfo.addSubPara(fm.sysPlanCode.value);
|
|
tSQLInfo.setModule("grp_pa");
|
|
|
|
turnPage1.queryModal(tSQLInfo.getString(), ContPolChildAmntGrid, 1, 1);
|
|
if (!turnPage1.strQueryResult) {
|
|
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 保险方案查询
|
|
*/
|
|
function showContPlanCode(cObj,cObjName,cObjCode){
|
|
return showCodeList('contplan',[cObj,cObjName,cObjCode],[0,1,2],null,tGrpPropNo,'GrpContNo',1,null);
|
|
}
|
|
|
|
|