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.
38 lines
1.2 KiB
38 lines
1.2 KiB
var turnPage = new turnPageClass();
|
|
var turnPage2 = new turnPageClass();
|
|
|
|
function queryTmpFeeRetStateClick(){
|
|
var tSel = TmpSerialNoGrid.getSelNo()-1;
|
|
if (tSel<0){
|
|
alert("请选择一条数据")
|
|
return false;
|
|
}
|
|
var tempRefundId = TmpSerialNoGrid.getRowColData(tSel,1)
|
|
var tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_finfee.LJTmpFeeRetStateQuerySql");
|
|
tSQLInfo.setSqlId("LJTmpFeeRetStateQuerySql1");
|
|
tSQLInfo.setModule("grp_finance");
|
|
tSQLInfo.addSubPara(tempRefundId);
|
|
|
|
|
|
turnPage.queryModal(tSQLInfo.getString(), TmpRetStateQueryGrid);
|
|
if (TmpRetStateQueryGrid.mulLineCount==0){
|
|
alert("未查询到数据");
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
function queryTmpSerialNoClick(){
|
|
var tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_finfee.LJTmpFeeRetStateQuerySql");
|
|
tSQLInfo.setSqlId("LJTmpFeeRetStateQuerySql2");
|
|
tSQLInfo.setModule("grp_finance");
|
|
tSQLInfo.addSubPara(fm.payerName.value);
|
|
tSQLInfo.addSubPara(fm.tempRefundId.value);
|
|
turnPage2.queryModal(tSQLInfo.getString(), TmpSerialNoGrid);
|
|
if (TmpSerialNoGrid.mulLineCount==0){
|
|
alert("未查询到数据");
|
|
return;
|
|
}
|
|
} |