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.
201 lines
6.7 KiB
201 lines
6.7 KiB
/***************************************************************
|
|
* <p>ProName:EdorEAInput.js</p>
|
|
* <p>Title:公司解约保</p>
|
|
* <p>Description:公司解约</p>
|
|
* <p>Copyright:Copyright (c) 2012</p>
|
|
* <p>Company:Sinosoft</p>
|
|
* @author : 蔡云聪
|
|
* @version : 8.0
|
|
* @date : 2014-06-26
|
|
****************************************************************/
|
|
|
|
var showInfo;
|
|
var turnPage = new turnPageClass();
|
|
var turnPage1 = new turnPageClass();
|
|
var turnPage2 = new turnPageClass();
|
|
var mOperate = "";//操作状态
|
|
var tSQLInfo = new SqlClass();
|
|
|
|
//整单退保被保险人查询
|
|
function queryClick(){
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorEASql");
|
|
tSQLInfo.setModule("grp_pa");
|
|
tSQLInfo.setSqlId("EdorEASql1");
|
|
tSQLInfo.addSubPara(tGrpContNo);
|
|
tSQLInfo.addSubPara(tEdorNo);
|
|
tSQLInfo.addSubPara(tEdorType);
|
|
tSQLInfo.addSubPara(document.all("InsuredName").value);
|
|
tSQLInfo.addSubPara(document.all("InsuredIDNo").value);
|
|
tSQLInfo.addSubPara(document.all("InsuredNo").value);
|
|
|
|
turnPage1.queryModal(tSQLInfo.getString(), UpdateInsuredInfoGrid, 1, 1);
|
|
|
|
if(!turnPage1.strQueryResult){
|
|
i18nAlert("未查询到符合条件的查询结果!", "LIS-03011");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
function initCheckClaim() {
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorEASql");
|
|
tSQLInfo.setModule("grp_pa");
|
|
tSQLInfo.setSqlId("EdorEASql5");
|
|
tSQLInfo.addSubPara(tEdorNo);
|
|
tSQLInfo.addSubPara(tEdorType);
|
|
tSQLInfo.addSubPara(tGrpContNo);
|
|
|
|
var arrResult2 = easyExecSql(tSQLInfo.getString(), 1, 0, 1);
|
|
|
|
if (arrResult2!=null) {
|
|
document.all("CheckClaim").checked = true;
|
|
return;
|
|
}
|
|
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorEASql");
|
|
tSQLInfo.setModule("grp_pa");
|
|
tSQLInfo.setSqlId("EdorEASql6");
|
|
tSQLInfo.addSubPara(tEdorNo);
|
|
tSQLInfo.addSubPara(tEdorType);
|
|
tSQLInfo.addSubPara(tGrpContNo);
|
|
|
|
var arrResult3 = easyExecSql(tSQLInfo.getString(), 1, 0, 1);
|
|
|
|
if (arrResult3!=null) {
|
|
document.all("CheckClaim").checked = true;
|
|
}
|
|
|
|
}
|
|
|
|
//保存信息
|
|
function saveClick(){
|
|
|
|
if(!verifyForm("fm")){
|
|
return false;
|
|
}
|
|
if(document.all("BackType").value=='52' && document.all("BackCal").value=="" ){
|
|
i18nAlert("条件退保,请选择退保算法!", "LIS-03038");
|
|
return false;
|
|
}
|
|
|
|
mOperate="SAVE";
|
|
fm.action="../API/grp_pa/g_pos/EdorEASave/ADD?Operate="+ mOperate+"&EdorType="+tEdorType+"&EdorAppNo="+tEdorAppNo+"&GrpContNo="+tGrpContNo+"&MissionID="+tMissionID+"&Edorcodetype="+tEdorcodetype+"&SubMissionID="+tSubMissionID+"&ActivityID="+tActivityID+"&EdorNo="+tEdorNo;
|
|
submitFunc();
|
|
ajaxSubmit2(document.getElementById("fm"));
|
|
}
|
|
function submitFunc(){
|
|
var showStr=i18nMessage("正在保存数据,请您稍候并且不要修改屏幕上的值或链接其他页面", "LIS-04525");
|
|
var urlStr="../common/jsp/MessagePage.jsp?picture=C&content=" + encodeURIComponent(showStr);
|
|
//showInfo=window.showModelessDialog(urlStr,window,"status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px");
|
|
var name='提示'; //网页名称,可为空;
|
|
var iWidth=550; //弹出窗口的宽度;
|
|
var iHeight=250; //弹出窗口的高度;
|
|
var iTop = (window.screen.availHeight - iHeight) / 2; //获得窗口的垂直位置
|
|
var iLeft = (window.screen.availWidth - iWidth) / 2; //获得窗口的水平位置
|
|
showInfo = window.open (urlStr,name, "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no,height="+ iHeight+",width="+iWidth+",innerHeight="+iHeight+",innerWidth=" +iWidth+",left="+iLeft+",top="+iTop,false);
|
|
|
|
showInfo.focus();
|
|
}
|
|
|
|
function returnbak() {
|
|
top.opener.initForm();
|
|
top.close();
|
|
}
|
|
|
|
/**
|
|
* 提交数据后返回操作
|
|
*/
|
|
function afterSubmit(FlagStr, content) {
|
|
|
|
if (typeof(showInfo)=="object" && typeof(showInfo)!="unknown") {
|
|
showInfo.close();
|
|
}
|
|
|
|
if (FlagStr=="Fail") {
|
|
var urlStr = "../common/jsp/MessagePage.jsp?picture=C&content="+ encodeURIComponent(content);
|
|
//showModalDialog(urlStr,window,"status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px");
|
|
var name='提示'; //网页名称,可为空;
|
|
var iWidth=550; //弹出窗口的宽度;
|
|
var iHeight=250; //弹出窗口的高度;
|
|
var iTop = (window.screen.availHeight - iHeight) / 2; //获得窗口的垂直位置
|
|
var iLeft = (window.screen.availWidth - iWidth) / 2; //获得窗口的水平位置
|
|
showInfo = window.open (urlStr,name, "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no,height="+ iHeight+",width="+iWidth+",innerHeight="+iHeight+",innerWidth=" +iWidth+",left="+iLeft+",top="+iTop,false);
|
|
|
|
showInfo.focus();
|
|
} else {
|
|
var urlStr = "../common/jsp/MessagePage.jsp?picture=S&content="+ encodeURIComponent(content);
|
|
//showModalDialog(urlStr,window,"status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px");
|
|
var name='提示'; //网页名称,可为空;
|
|
var iWidth=550; //弹出窗口的宽度;
|
|
var iHeight=250; //弹出窗口的高度;
|
|
var iTop = (window.screen.availHeight - iHeight) / 2; //获得窗口的垂直位置
|
|
var iLeft = (window.screen.availWidth - iWidth) / 2; //获得窗口的水平位置
|
|
showInfo = window.open (urlStr,name, "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no,height="+ iHeight+",width="+iWidth+",innerHeight="+iHeight+",innerWidth=" +iWidth+",left="+iLeft+",top="+iTop,false);
|
|
|
|
showInfo.focus();
|
|
QueryReson();
|
|
}
|
|
}
|
|
function afterCodeSelect(o, p) {
|
|
|
|
if(o=='queryea') {
|
|
|
|
if(p.value=='51') {
|
|
divCalName.style.display = "none";
|
|
divCalCode.style.display = "none";
|
|
} else if(p.value=='52'){
|
|
|
|
divCalName.style.display = "";
|
|
divCalCode.style.display = "";
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 查询退保原因
|
|
**/
|
|
|
|
function QueryReson(){
|
|
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorEASql");
|
|
tSQLInfo.setModule("grp_pa");
|
|
tSQLInfo.setSqlId("EdorEASql2");
|
|
tSQLInfo.addSubPara(tEdorAppNo);
|
|
tSQLInfo.addSubPara(tEdorNo);
|
|
tSQLInfo.addSubPara(tEdorType);
|
|
tSQLInfo.addSubPara(tGrpContNo);
|
|
|
|
var arrResult = easyExecSql(tSQLInfo.getString(), 1, 0, 1);
|
|
|
|
if (arrResult==null) {
|
|
|
|
}else{
|
|
document.all("ReasonDesc").value = arrResult[0][0];
|
|
document.all("BackType").value = arrResult[0][1];
|
|
document.all("BackTypeName").value = arrResult[0][2];
|
|
//如果是条件解约,则退保的算法进行展示
|
|
if("52"==arrResult[0][1]){
|
|
divCalName.style.display = "";
|
|
divCalCode.style.display = "";
|
|
}
|
|
}
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_pos.EdorEASql");
|
|
tSQLInfo.setModule("grp_pa");
|
|
tSQLInfo.setSqlId("EdorEASql3");
|
|
tSQLInfo.addSubPara(tEdorAppNo);
|
|
tSQLInfo.addSubPara(tEdorType);
|
|
|
|
var arrResult2 = easyExecSql(tSQLInfo.getString(), 1, 0, 1);
|
|
|
|
if (arrResult2==null) {
|
|
|
|
}else{
|
|
document.all("BackCal").value = arrResult2[0][0];
|
|
document.all("BackCalName").value = arrResult2[0][1];
|
|
}
|
|
}
|
|
|