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.
70 lines
2.5 KiB
70 lines
2.5 KiB
/***************************************************************
|
|
* <p>ProName:LSQuotShowUWDescInit.js</p>
|
|
* <p>Title:询价查询--总公司最终意见</p>
|
|
* <p>Description:询价查询--总公司最终意见</p>
|
|
* <p>Copyright:Copyright (c) 2012</p>
|
|
* <p>Company:Sinosoft</p>
|
|
* @author : 张成
|
|
* @version : 8.0
|
|
* @date : 2015-01-14
|
|
****************************************************************/
|
|
|
|
var showInfo;
|
|
var turnPage = new turnPageClass();//系统使用
|
|
var turnPage1 = new turnPageClass();
|
|
var mOperate = "";//操作状态
|
|
var tSQLInfo = new SqlClass();
|
|
|
|
|
|
/**
|
|
* 查询已保存特别约定
|
|
*/
|
|
function quryGrpSpec() {
|
|
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_quot.LSQuotQuerySql");
|
|
tSQLInfo.setSqlId("LSQuotQuerySql5");
|
|
tSQLInfo.addSubPara(tQuotNo);
|
|
tSQLInfo.addSubPara(tQuotBatNo);
|
|
tSQLInfo.setModule("grp_quotation");
|
|
var arrResult = easyExecSql(tSQLInfo.getString());
|
|
if (arrResult !== null && arrResult !== "") {
|
|
fm.UWConclu.value = arrResult[0][0];
|
|
fm.UWConcluName.value = arrResult[0][1];
|
|
fm.UWOpinion.value = arrResult[0][2];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 核保意见查询
|
|
*/
|
|
function quryUWOpinion() {
|
|
|
|
tSQLInfo = new SqlClass();
|
|
tSQLInfo.setResourceName("g_quot.LSQuotQuerySql");
|
|
tSQLInfo.setSqlId("LSQuotQuerySql8");
|
|
tSQLInfo.addSubPara(tQuotNo);
|
|
tSQLInfo.setModule("grp_quotation");
|
|
turnPage1.queryModal(tSQLInfo.getString(), UWOpinionGrid, 2, 1);
|
|
|
|
}
|
|
|
|
function AuditOpinion(parm1){
|
|
|
|
var tAuditOpinion=$("#"+parm1).find("input[name=UWOpinionGrid3]").val();
|
|
|
|
if (tAuditOpinion !=""){
|
|
var showStr = i18nMessage("意见: " + tAuditOpinion, "");
|
|
var urlStr = "../common/jsp/MessagePage666.jsp?content=" + encodeURIComponent(showStr);
|
|
//showInfo = window.showModelessDialog(urlStr, window, "status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px");
|
|
//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();
|
|
}
|
|
} |