41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%>
|
|
<%
|
|
String projectId = CurPage.getParameter("projectId");
|
|
String projectManage = CurPage.getParameter("projectManage");
|
|
String sTempletNo = "LBTransferHisInfo";
|
|
ASObjectModel doTemp = new ASObjectModel(sTempletNo);
|
|
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
|
|
dwTemp.Style = "2";
|
|
dwTemp.genHTMLObjectWindow("");//得到的参数
|
|
String sButtons[][] = {
|
|
{"true","","Button","保存","保存所有修改","saveRecord()","","","","btn_icon_save"},
|
|
{"true","","Button","返回","返回列表页面","goBack()","","","","btn_icon_return"},
|
|
};
|
|
%>
|
|
<%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
|
<script type="text/javascript">
|
|
|
|
function saveRecord(){
|
|
as_save("myiframe0","goBack()");
|
|
}
|
|
|
|
function goBack(){
|
|
var sUrl = "/Tenwa/Lease/Flow/Comm/LBTransferHis/LBProjectForTransferList.jsp";
|
|
AsControl.OpenView(sUrl,"","_self","");
|
|
}
|
|
|
|
function selectProjectManager(){
|
|
AsDialog.OpenSelector("SelectProjectManager","projectManage,<%=projectManage%>","dialogWidth=" + parseInt(window.screen.width * 0.3) + "px dialogHeight=" + parseInt(window.screen.height * 0.5) + "px",function(sReturn){
|
|
if(!sReturn || sReturn == "_CANCEL_"){
|
|
return;
|
|
}
|
|
sReturn = sReturn.split("@");
|
|
setItemValue(0,getRow(),"NEW_MANAGER",sReturn[0]);
|
|
setItemValue(0,getRow(),"NEW_MANAGER_NAME",sReturn[1]);
|
|
setItemValue(0,getRow(),"NEW_ORGID",sReturn[2]);
|
|
setItemValue(0,getRow(),"NEW_ORGLEVEL",sReturn[3]);
|
|
},"请选择项目经理");
|
|
}
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |