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.
55 lines
1.8 KiB
55 lines
1.8 KiB
/***************************************************************
|
|
* <p>ProName:GrpRelFeeQuery.js</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
|
|
****************************************************************/
|
|
var showInfo;
|
|
var turnPage = new turnPageClass();
|
|
var mOperate = "";//操作状态
|
|
var tSQLInfo = new SqlClass();
|
|
|
|
/**
|
|
* 查询
|
|
*/
|
|
function queryInfo(){
|
|
|
|
//交费信息
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_app.LCContSql");
|
|
tSQLInfo.setModule("grp_common");
|
|
tSQLInfo.setSqlId("LCContSql217");
|
|
tSQLInfo.addSubPara(tGrpPropNo);
|
|
turnPage.queryModal(tSQLInfo.getString(),PolGrid, 2, 1);
|
|
// if (!turnPage.strQueryResult) {
|
|
// i18nAlert("未查询到符合条件的查询结果!", "LIS-03016");
|
|
// }
|
|
|
|
//团单发票打印信息
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_app.LCContSql");
|
|
tSQLInfo.setModule("grp_common");
|
|
tSQLInfo.setSqlId("LCContSql218");
|
|
tSQLInfo.addSubPara(tGrpPropNo);
|
|
turnPage.queryModal(tSQLInfo.getString(),GrpInvoiceGrid, 2, 1);
|
|
}
|
|
|
|
/**
|
|
* 费用明细
|
|
*/
|
|
function getQueryDetail(){
|
|
var tSelNo = PolGrid.getSelNo()-1;
|
|
if (tSelNo<0) {
|
|
alert("请选中一条投保信息");
|
|
return false;
|
|
}
|
|
|
|
var tPayNo = PolGrid.getRowColData(tSelNo,1);
|
|
var tSumActuPayMoney = PolGrid.getRowColData(tSelNo,4);
|
|
var tType = PolGrid.getRowColData(tSelNo,11);
|
|
window.open("./AllFeeQueryDetail.jsp?GrpPropNo="+tGrpPropNo+"&PayNo="+tPayNo+"&SumActuPayMoney="+tSumActuPayMoney+"&Type="+tType,"费用明细",'width=950,height=520,top=0,left=0,toolbar=0,location=0,directories=0,menubar=0,scrollbars=1,resizable=1,status=0');
|
|
} |