52 lines
2.0 KiB
Plaintext
52 lines
2.0 KiB
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><%
|
|
/*
|
|
Author: undefined 2018-12-20
|
|
Content: 示例详情页面
|
|
History Log:
|
|
*/
|
|
String sPrevUrl = CurPage.getParameter("PrevUrl");
|
|
String flowunid = CurPage.getParameter("FlowUnid");
|
|
String phaseNo = CurPage.getParameter("PhaseNo");
|
|
if(sPrevUrl == null) sPrevUrl = "";
|
|
|
|
String sTempletNo = "ProjectDistriborInfo";//--模板号--
|
|
ASObjectModel doTemp = new ASObjectModel(sTempletNo);
|
|
String flag = "false";
|
|
if("0010".equals(phaseNo)||"0020".equals(phaseNo)){
|
|
doTemp.setColInnerBtEvent("DISTRIBUTOR_NAME", "selectDistributor()");
|
|
flag = "true";
|
|
}
|
|
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
|
|
dwTemp.Style = "2";//freeform
|
|
//dwTemp.ReadOnly = "-2";//只读模式
|
|
dwTemp.genHTMLObjectWindow(flowunid);
|
|
|
|
String sButtons[][] = {
|
|
{flag,"All","Button","保存","保存所有修改","as_save(0)","","","",""},
|
|
// {String.valueOf(!com.amarsoft.are.lang.StringX.isSpace(sPrevUrl)),"All","Button","返回","返回列表","returnList()","","","",""}
|
|
};
|
|
// sButtonPosition = "south";
|
|
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
|
<script type="text/javascript">
|
|
function returnList(){
|
|
AsControl.OpenView("<%=sPrevUrl%>", "","_self","");
|
|
}
|
|
|
|
function selectDistributor(){
|
|
AsDialog.OpenSelector("selectDistributor","","dialogWidth=" + parseInt(window.screen.width * 0.8) + "px dialogHeight=" + parseInt(window.screen.height * 0.5) + "px",
|
|
function(sReturn){
|
|
if(!sReturn||sReturn=="_CANCEL_"||sReturn=="")
|
|
{
|
|
//alert(getHtmlMessage('1'));//请选择一条信息!
|
|
return;
|
|
}
|
|
sReturn = sReturn.split("@");
|
|
setItemValue(0,0,"DISTRIBUTOR_NAME",sReturn[0]);
|
|
setItemValue(0,0,"distributor_id",sReturn[1]);
|
|
setItemValue(0,0,"DISTRIBUTOR_CODING",sReturn[2]);
|
|
setCertType();
|
|
},"请选择经销商",'');
|
|
}
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |