41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><%
|
|
/*
|
|
Author: undefined 2017-06-17
|
|
Content: 示例详情页面
|
|
History Log:
|
|
*/
|
|
String ishistory = CurPage.getParameter("IsHistory");
|
|
String flowunid = CurPage.getParameter("FlowUnid");
|
|
String contractId = CurPage.getParameter("ContractId");
|
|
String productid = Sqlca.getString("select PRODUCT_ID from LB_CONTRACT_INFO_TEMP where flowunid = '"+flowunid+"'");
|
|
String sTempletNo = "LB_CONTRACT_INFO_PAY";//--模板号--
|
|
ASObjectModel doTemp = new ASObjectModel(sTempletNo);
|
|
/* if(null!=ishistory&&ishistory.equals("true")){
|
|
doTemp.setDataQueryClass("com.tenwa.flow.flowHistory.FlowDataInfoHistory");//如果是历史则新显示历史数据
|
|
} */
|
|
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
|
|
dwTemp.Style = "2";
|
|
dwTemp.ReadOnly = "1";
|
|
dwTemp.genHTMLObjectWindow(contractId);
|
|
|
|
String sButtons[][] = {
|
|
};
|
|
sButtonPosition = "south";
|
|
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
|
<script type="text/javascript">
|
|
window.onload = function(){
|
|
var type = getItemValue(0,0,"customertype");
|
|
if(type=="03"||type==""||type==null){
|
|
hideItem(0,"CERTTYPE_CC");
|
|
hideItem(0,"CERTID_CC");
|
|
hideItem(0,"TEL_CC");
|
|
}else if(type=="01"){
|
|
hideItem(0,"SEX_CP");
|
|
hideItem(0,"CERTTYPE_CP");
|
|
hideItem(0,"CERTID_CP");
|
|
hideItem(0,"MOBILE_CP");
|
|
}
|
|
}
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |