/*************************************************************** *

ProName:EdorGRInput.js

*

Title:保单补发

*

Description:保单补发

*

Copyright:Copyright (c) 2012

*

Company:Sinosoft

* @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 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(); //fm.submit(); ajaxSubmit2(document.getElementById("fm")); } 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(); } } /** * 控制勾选保单补发 */ function showGrpGR(){ if(fm.GrpGR.checked==true){ fm.GrpGRFlag.value ="1"; }else { fm.GrpGRFlag.value ="0"; } } /** * 控制勾选收取保单补发费用 */ function showMoney(){ if(fm.NeedGetMoney.checked==true){ tSQLInfo = new SqlClass(); tSQLInfo.setModule("grp_pa"); tSQLInfo.setResourceName("g_pos.EdorGRSql"); tSQLInfo.setSqlId("EdorGRSql1"); tSQLInfo.addSubPara("Reissue"); var arrResult = easyExecSql(tSQLInfo.getString()); if(arrResult !=null){ fm.Money.value=arrResult[0][0]; } fm.FeeGRFlag.value ="1"; }else{ fm.Money.value='0'; fm.FeeGRFlag.value ="0"; } } /*** * 检查勾选条件 */ function showCheck(){ tSQLInfo = new SqlClass(); tSQLInfo.setModule("grp_pa"); tSQLInfo.setResourceName("g_pos.EdorGRSql"); tSQLInfo.setSqlId("EdorGRSql4"); tSQLInfo.addSubPara(tEdorNo); tSQLInfo.addSubPara(tEdorType); tSQLInfo.addSubPara(tGrpContNo); var arrRelsult = easyExecSql(tSQLInfo.getString()); if(arrRelsult != null){ if(arrRelsult[0][0]=='0'){ fm.GrpGR.checked=true; fm.GrpGRFlag.value ="1"; } fm.GoonGetMethod1.value = arrRelsult[0][1]; fm.GoonGetMethod1Name.value = arrRelsult[0][2]; } // tSQLInfo = new SqlClass(); // tSQLInfo.setModule("grp_pa"); // tSQLInfo.setResourceName("g_pos.EdorGRSql"); // tSQLInfo.setSqlId("EdorGRSql5"); // tSQLInfo.addSubPara(tEdorNo); // tSQLInfo.addSubPara(tEdorType); // tSQLInfo.addSubPara(tGrpContNo); // // var arrRelsult = easyExecSql(tSQLInfo.getString()); // if(arrRelsult != null){ // fm.NeedGetMoney.checked=true; // fm.Money.value = arrRelsult[0][0]; // fm.FeeGRFlag.value ="1"; // } tSQLInfo = new SqlClass(); tSQLInfo.setModule("grp_pa"); tSQLInfo.setResourceName("g_pos.EdorGRSql"); tSQLInfo.setSqlId("EdorGRSql6"); tSQLInfo.addSubPara(tGrpContNo); var arrRelsult = easyExecSql(tSQLInfo.getString()); if(arrRelsult != null){ fm.Times.value = arrRelsult[0][0]; } } function saveClick(){ if(!verifyForm("fm")){ return false; } if(fm.GrpGR.checked==false){ i18nAlert("请勾选【保单补发】", "LIS-03350"); return false; } mOperate="SAVE"; fm.action = "../API/grp_pa/g_pos/EdorGRSave/ADD?Operate="+ mOperate+"&EdorType="+tEdorType+"&EdorAppNo="+tEdorAppNo+"&GrpContNo="+tGrpContNo+"&MissionID="+tMissionID+"&SubMissionID="+tSubMissionID+"&ActivityID="+tActivityID+"&EdorNo="+tEdorNo; submitFunc(); }