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.
 
 
 
FZ/lis-module-grp-nb-web/src/main/webapp/g_app/LCRequestInput.js

41 lines
1.2 KiB

/***************************************************************
* <p>ProName:LCRequestInput.js</p>
* <p>Title:业务需求</p>
* <p>Description:业务需求</p>
* <p>Copyright:Copyright (c) 2012</p>
* <p>Company:Sinosoft</p>
* @author : caiyc
* @version : 8.0
* @date : 2014-03-18
****************************************************************/
var showInfo;
var turnPage = new turnPageClass();//系统使用
var turnPage1 = new turnPageClass();
var mOperate = "";//操作状态
var tSQLInfo = new SqlClass();
/**
* 查询
*/
function queryClick() {
tSQLInfo = new SqlClass();
tSQLInfo.setResourceName("g_app.LCRequestSql");
tSQLInfo.setModule("grp_nb");
tSQLInfo.setSqlId("LCRequestSql1");
tSQLInfo.addSubPara(tOfferListNo);
var arrResult1 = easyExecSql(tSQLInfo.getString());
if (arrResult1 !== null && arrResult1 !== "") {
var tQuotNo = arrResult1[0][0];
var tQuotBatNo = arrResult1[0][1];
tSQLInfo = new SqlClass();
tSQLInfo.setResourceName("g_app.LCRequestSql");
tSQLInfo.setModule("grp_nb");
tSQLInfo.setSqlId("LCRequestSql2");
tSQLInfo.addSubPara(tQuotNo);
tSQLInfo.addSubPara(tQuotBatNo);
turnPage1.queryModal(tSQLInfo.getString(), RequestGrid, 1, 1);
}
}