Merge branch 'release20211231' into ap007
# Conflicts: # WebContent/WEB-INF/etc/jbo/jbo_customer.xml
This commit is contained in:
commit
ddee136cc7
@ -5,10 +5,11 @@
|
||||
*/
|
||||
String sAreaCodeValue = CurPage.getParameter("AreaCodeValue");//在该页面打开后打开二级分类时传值。
|
||||
String sAreaCode = CurPage.getParameter("AreaCode");//已有值时,做初始化传入。
|
||||
String sourceForm = CurPage.getParameter("sourceForm");//判断打开页面来源
|
||||
String sOpen = "";
|
||||
String sDefaultItem = "";
|
||||
String sDefaultItem2 = "";
|
||||
|
||||
|
||||
if(sAreaCode.length()>3) sDefaultItem = sAreaCode.substring(0,4);
|
||||
if(sAreaCode!=null&&sAreaCode.length()>4){
|
||||
sOpen = "YES";//暂不作控制。
|
||||
@ -35,18 +36,18 @@
|
||||
newBusiness();
|
||||
<% }%>
|
||||
}
|
||||
|
||||
//modify by hwang,修改双击相应函数。function TreeViewOnDBClick()修改为function TreeViewOnDBLClick()
|
||||
|
||||
//modify by hwang,修改双击相应函数。function TreeViewOnDBClick()修改为function TreeViewOnDBLClick()
|
||||
function TreeViewOnDBLClick(){
|
||||
newBusiness();
|
||||
}
|
||||
|
||||
|
||||
//新选一个行政区划
|
||||
function newBusiness(){
|
||||
//选择行政规划大类时可以自动触发右边节目
|
||||
<% if(sAreaCodeValue == null){ %>
|
||||
if(buff.AreaCode.value!=""){
|
||||
sReturnValue = buff.AreaCode.value;
|
||||
sReturnValue = buff.AreaCode.value;
|
||||
parent.OpenPage("/Common/ToolsA/AreaCodeSelect.jsp?AreaCodeValue="+getCurTVItem().id,"frameright","");
|
||||
}else{
|
||||
alert("请选择行政区划细项!");//请选择行政规划细项!
|
||||
@ -60,20 +61,20 @@
|
||||
if(typeof(sID)=="undefined" || sID.length<5){
|
||||
alert("请选择行政区划细项!");//请选择行政区划细项!
|
||||
}else{
|
||||
if(sID.length==6){
|
||||
if(sID.length==6){
|
||||
//top.returnValue = sValue+"@"+sName;
|
||||
parent.AsDialog.ClosePage(sValue+"@"+sName);
|
||||
}else{
|
||||
alert("请选择行政区划细项!");//请选择行政区划细项!
|
||||
}
|
||||
}
|
||||
<% }%>
|
||||
<% }%>
|
||||
}
|
||||
//清空
|
||||
function clearAll(){
|
||||
parent.AsDialog.ClosePage("_CLEAR_");
|
||||
}
|
||||
|
||||
|
||||
function goBack(){
|
||||
parent.AsDialog.ClosePage("_CANCEL_");
|
||||
}
|
||||
@ -82,12 +83,13 @@
|
||||
function startMenu(){
|
||||
<%
|
||||
OHTMLTreeView tviTemp = new OHTMLTreeView(CurPage, "行政区划列表","right");
|
||||
String codeNo = "zx".equals(sourceForm)?"ZXAreaCode":"AreaCode";
|
||||
//选择行业类型一
|
||||
if(sAreaCodeValue == null)
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='AreaCode' and length(SortNo) <= 4");
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='"+codeNo+"' and length(SortNo) <= 4");
|
||||
else
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='AreaCode' and SortNo like '"+sAreaCodeValue+"%'");
|
||||
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='"+codeNo+"' and SortNo like '"+sAreaCodeValue+"%'");
|
||||
|
||||
out.println(tviTemp.generateHTMLTreeView());
|
||||
%>
|
||||
}
|
||||
@ -130,8 +132,8 @@
|
||||
</html>
|
||||
<script type="text/javascript">
|
||||
startMenu();
|
||||
expandNode('root');
|
||||
expandNode('root');
|
||||
selectItem('<%=sDefaultItem%>');//自动点击树图,目前写死,也可以设置到 code_library中进行设定
|
||||
selectItem('<%=sDefaultItem2%>');//自动点击树图,目前写死,也可以设置到 code_library中进行设定
|
||||
</script>
|
||||
<%@ include file="/IncludeEnd.jsp"%>
|
||||
<%@ include file="/IncludeEnd.jsp"%>
|
||||
|
||||
@ -4,15 +4,16 @@
|
||||
*/
|
||||
String sAreaCode = CurPage.getParameter("AreaCode");
|
||||
String usedCar = CurPage.getParameter("usedCar");
|
||||
String sourceForm = CurPage.getParameter("sourceForm");
|
||||
%><%@include file="/Resources/CodeParts/Frame03.jsp"%>
|
||||
<script type="text/javascript">
|
||||
myleft.width=340;
|
||||
var usedCar = "<%=usedCar%>";
|
||||
if("usedCar" == usedCar){
|
||||
OpenPage("/Common/ToolsA/SuedCarAreaCodeSelect.jsp?AreaCode=<%=sAreaCode%>","frameleft","");
|
||||
OpenPage("/Common/ToolsA/SuedCarAreaCodeSelect.jsp?AreaCode=<%=sAreaCode%>&sourceForm=<%=sourceForm%>","frameleft","");
|
||||
}else{
|
||||
OpenPage("/Common/ToolsA/AreaCodeSelect.jsp?AreaCode=<%=sAreaCode%>","frameleft","");
|
||||
OpenPage("/Common/ToolsA/AreaCodeSelect.jsp?AreaCode=<%=sAreaCode%>&sourceForm=<%=sourceForm%>","frameleft","");
|
||||
OpenPage("/Blank.jsp?TextToShow=请在左方列表中选择一项","frameright","");
|
||||
}
|
||||
</script>
|
||||
<%@ include file="/IncludeEnd.jsp"%>
|
||||
</script>
|
||||
<%@ include file="/IncludeEnd.jsp"%>
|
||||
|
||||
@ -5,10 +5,11 @@
|
||||
*/
|
||||
String sAreaCodeValue = CurPage.getParameter("AreaCodeValue");//在该页面打开后打开二级分类时传值。
|
||||
String sAreaCode = CurPage.getParameter("AreaCode");//已有值时,做初始化传入。
|
||||
String sourceForm = CurPage.getParameter("sourceForm");//判断打开页面来源
|
||||
String sOpen = "";
|
||||
String sDefaultItem = "";
|
||||
String sDefaultItem2 = "";
|
||||
|
||||
|
||||
if(sAreaCode.length()>3) sDefaultItem = sAreaCode.substring(0,4);
|
||||
if(sAreaCode!=null&&sAreaCode.length()>4){
|
||||
sOpen = "YES";//暂不作控制。
|
||||
@ -31,12 +32,12 @@
|
||||
buff.AreaCode.value=sAreaCode+"@"+sAreaCodeName+"@"+sAreaCodeID;
|
||||
|
||||
}
|
||||
|
||||
//modify by hwang,修改双击相应函数。function TreeViewOnDBClick()修改为function TreeViewOnDBLClick()
|
||||
|
||||
//modify by hwang,修改双击相应函数。function TreeViewOnDBClick()修改为function TreeViewOnDBLClick()
|
||||
function TreeViewOnDBLClick(){
|
||||
newBusiness();
|
||||
}
|
||||
|
||||
|
||||
//新选一个行政区划
|
||||
function newBusiness(){
|
||||
var s = buff.AreaCode.value;
|
||||
@ -47,7 +48,7 @@
|
||||
if(typeof(sID)=="undefined" || sID.length<4){
|
||||
alert("请选择市或者区级细项!");//请选择行政区划细项!
|
||||
}else{
|
||||
if(sID.length==4){
|
||||
if(sID.length==4){
|
||||
//top.returnValue = sValue+"@"+sName;
|
||||
parent.AsDialog.ClosePage(sValue+"@"+sName);
|
||||
}else{
|
||||
@ -55,12 +56,12 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//清空
|
||||
function clearAll(){
|
||||
parent.AsDialog.ClosePage("_CLEAR_");
|
||||
}
|
||||
|
||||
|
||||
function goBack(){
|
||||
parent.AsDialog.ClosePage("_CANCEL_");
|
||||
}
|
||||
@ -69,12 +70,13 @@
|
||||
function startMenu(){
|
||||
<%
|
||||
OHTMLTreeView tviTemp = new OHTMLTreeView(CurPage, "行政区划列表","right");
|
||||
String codeNo = "zx".equals(sourceForm)?"ZXAreaCode":"AreaCode";
|
||||
//选择行业类型一
|
||||
if(sAreaCodeValue == null)
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='AreaCode' and length(SortNo) <= 4");
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='"+codeNo+"' and length(SortNo) <= 4");
|
||||
else
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='AreaCode' and SortNo like '"+sAreaCodeValue+"%'");
|
||||
|
||||
tviTemp.init(JBOFactory.getBizObjectManager("jbo.sys.CODE_LIBRARY"), "SortNo","ItemName","ItemNo","","from O where CodeNO='"+codeNo+"' and SortNo like '"+sAreaCodeValue+"%'");
|
||||
|
||||
out.println(tviTemp.generateHTMLTreeView());
|
||||
%>
|
||||
}
|
||||
@ -102,7 +104,7 @@
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
|
||||
<%}%>
|
||||
</tr>
|
||||
</table>
|
||||
@ -112,8 +114,8 @@
|
||||
</html>
|
||||
<script type="text/javascript">
|
||||
startMenu();
|
||||
expandNode('root');
|
||||
expandNode('root');
|
||||
selectItem('<%=sDefaultItem%>');//自动点击树图,目前写死,也可以设置到 code_library中进行设定
|
||||
selectItem('<%=sDefaultItem2%>');//自动点击树图,目前写死,也可以设置到 code_library中进行设定
|
||||
</script>
|
||||
<%@ include file="/IncludeEnd.jsp"%>
|
||||
<%@ include file="/IncludeEnd.jsp"%>
|
||||
|
||||
@ -5,17 +5,17 @@
|
||||
<%@page import="java.text.SimpleDateFormat"%>
|
||||
<%@ page contentType="text/html; charset=GBK"%>
|
||||
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><%
|
||||
|
||||
|
||||
Date curdate = new Date();
|
||||
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd");
|
||||
String dateString = formatter.format(curdate);
|
||||
String dateString = formatter.format(curdate);
|
||||
String sPhaseNo=CurPage.getParameter("sPhaseNo");
|
||||
String flowunid = CurPage.getParameter("FlowUnid");
|
||||
String FlowName = CurPage.getParameter("FlowName");//获取流程名称
|
||||
String IsHistory = CurPage.getParameter("IsHistory");//获取流程名称
|
||||
String projectId = CurPage.getParameter("ProjectId");
|
||||
String channel = CurPage.getParameter("channel");
|
||||
|
||||
|
||||
String customerid = Sqlca.getString("select customer_id from lb_union_lessee_temp where flowunid='"+flowunid+"'");
|
||||
String sTempletNo = "";//--模板号--
|
||||
String sexChange="";
|
||||
@ -50,6 +50,7 @@
|
||||
doTemp.setDefaultValue("CERTTYPE", "Ind01");
|
||||
if(rightType.equals("ReadOnly")){
|
||||
doTemp.setColInnerBtEvent("fulladdress", "");//设置地址按钮
|
||||
doTemp.setColInnerBtEvent("NATIVEPLACE", "");//设置户籍地址按钮
|
||||
}
|
||||
dwTemp.Style = "2";//freeform
|
||||
dwTemp.genHTMLObjectWindow(flowunid + "," + customerid);
|
||||
@ -67,7 +68,7 @@
|
||||
//{"true","","Button","身份校验","身份校验","identityVerification()","","","","btn_icon_check",""}
|
||||
};
|
||||
|
||||
|
||||
|
||||
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
||||
<script type="text/javascript">
|
||||
function select(){
|
||||
@ -96,14 +97,14 @@
|
||||
|
||||
/* function identityVerification(){//身份校验
|
||||
var id = getItemValue(0,0,'ID');
|
||||
var result=RunJavaMethodTrans("com.tenwa.lease.flow.project.validate.IdentityVerification","doIdentityVerification",'id='+id);
|
||||
var result=RunJavaMethodTrans("com.tenwa.lease.flow.project.validate.IdentityVerification","doIdentityVerification",'id='+id);
|
||||
if(result == 'ERROR'){
|
||||
alert('验证失败');
|
||||
}else{
|
||||
alert(result);
|
||||
}
|
||||
} */
|
||||
|
||||
|
||||
function changeChildrensNumber(){//已婚时显示配偶信息页面
|
||||
var marriage = getItemValue(0,0,"MARRIAGE");
|
||||
if("01" == marriage){
|
||||
@ -120,7 +121,7 @@
|
||||
changeFamilyRequired();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function changeFamilyRequired(){//已婚时设置配偶信息必填,并将婚姻状况参数传递到子页面
|
||||
var marriage = getItemValue(0,getRow(0),"MARRIAGE");
|
||||
if("01" == marriage){
|
||||
@ -130,16 +131,16 @@
|
||||
frame_list.window.changeFamilyRequiredFalse(marriage);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function changeSex(){
|
||||
var sex = getItemValue(0,getRow(0),"sex");
|
||||
frame_list.window.setParent(sex);
|
||||
}
|
||||
|
||||
|
||||
if(getItemValue(0,0,"CERTTYPE") == null || getItemValue(0,0,"CERTTYPE") == ""){
|
||||
setItemValue(0,0,"CERTTYPE","Ind01");
|
||||
}
|
||||
|
||||
|
||||
function checkName(){//校验姓名
|
||||
var customerType = "03";
|
||||
var customerName = getItemValue(0,getRow(),"FULLNAME");
|
||||
@ -149,7 +150,7 @@
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoCheck","checkName",sParams);
|
||||
return sReturnInfo;
|
||||
}
|
||||
|
||||
|
||||
function checkCertId(){//校验证件号
|
||||
var customerType = "03";
|
||||
//var customerName = getItemValue(0,getRow(),"CustomerName");
|
||||
@ -159,7 +160,7 @@
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoCheck","checkCertId",sParams);
|
||||
return sReturnInfo;
|
||||
}
|
||||
|
||||
|
||||
function checkMobile(){//校验手机号标红
|
||||
var customerType = "03";
|
||||
var mobile = getItemValue(0,getRow(),"mobile");
|
||||
@ -167,7 +168,7 @@
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoCheck","checkMobile",sParams);
|
||||
return sReturnInfo;
|
||||
}
|
||||
|
||||
|
||||
function checkMobileRepeat(){//校验手机号重复
|
||||
var customerType = "03";
|
||||
var mobile = getItemValue(0,getRow(),"mobile");
|
||||
@ -179,7 +180,7 @@
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function checkEmergencyContactTel(){//校验紧急联系人1电话
|
||||
var customerType = "03";
|
||||
var emergencyTel = getItemValue(0,getRow(),"EMERGENCY_CONTACT_TEL");
|
||||
@ -187,7 +188,7 @@
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoCheck","checkMobile",sParams);
|
||||
return sReturnInfo;
|
||||
}
|
||||
|
||||
|
||||
function checkEmergencyRepeat(){//校验紧急联系人1电话重复
|
||||
var customerType = "03";
|
||||
var emergencyTel = getItemValue(0,getRow(),"EMERGENCY_CONTACT_TEL");
|
||||
@ -199,7 +200,7 @@
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function checkRemark(){//校验紧急联系人2电话
|
||||
var customerType = "03";
|
||||
var remark = getItemValue(0,getRow(),"REMARK");
|
||||
@ -207,7 +208,7 @@
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoCheck","checkMobile",sParams);
|
||||
return sReturnInfo;
|
||||
}
|
||||
|
||||
|
||||
function checkRemarkRepeat(){//校验紧急联系人2电话重复
|
||||
var customerType = "03";
|
||||
var remark = getItemValue(0,getRow(),"REMARK");
|
||||
@ -219,7 +220,7 @@
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// function checkRepeat(mobile,emergencyTel,remark){
|
||||
// var result = "";
|
||||
// var mobile = getItemValue(0,getRow(),"mobile");
|
||||
@ -231,9 +232,9 @@
|
||||
// result = "false";
|
||||
// }
|
||||
// return result;
|
||||
|
||||
|
||||
// }
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
//changeOtherRequired();
|
||||
checkMailingAddress();
|
||||
@ -245,7 +246,7 @@
|
||||
// }
|
||||
|
||||
if("0030"=="<%=sPhaseNo%>" ||"0040"=="<%=sPhaseNo%>"||"0050"=="<%=sPhaseNo%>"||"0060"=="<%=sPhaseNo%>"|| ("0070"=="<%=sPhaseNo%>" && "false"=="<%=IsHistory%>")){//经销商阶段看不见标红,初审、复审、信审可以标红
|
||||
|
||||
|
||||
var certResult = checkCertIdAll();
|
||||
if(certResult=="4"){
|
||||
//$("#FULLNAME").attr("style","color:red;");
|
||||
@ -282,10 +283,10 @@
|
||||
//$("#FULLNAME").attr("style","color:red;");
|
||||
$("#REMARK").css("color","red");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//第二阶段隐藏身份校验按钮
|
||||
if("0020"!="<%=sPhaseNo%>"){
|
||||
$("#ButtonTR").attr("style","display:none;");
|
||||
@ -298,7 +299,10 @@
|
||||
//init();
|
||||
$("#FULLADDRESS").css("width",$("#FULLADDRESS").parent().parent().parent().parent()[0].clientWidth/2+200+"px");
|
||||
$("#FULLADDRESS").attr("ReadOnly","true");
|
||||
$("#ENTRYTIME").attr("ReadOnly","true");
|
||||
//户籍地址设置
|
||||
$("#NATIVEPLACE").css("width",$("#NATIVEPLACE").parent().parent().parent().parent()[0].clientWidth/2+200+"px");
|
||||
$("#NATIVEPLACE").attr("ReadOnly","true");
|
||||
$("#ENTRYTIME").attr("ReadOnly","true");
|
||||
$("#WORKCORP")[0].width = $("#WORKCORP").parent().parent().parent()[0].clientWidth/2+200;
|
||||
$("#WORKADD")[0].width = $("#WORKADD").parent().parent().parent()[0].clientWidth/2+200;
|
||||
$("#WORKTEL")[0].width = $("#WORKTEL").parent().parent().parent()[0].clientWidth/2+200;
|
||||
@ -316,7 +320,7 @@
|
||||
$("#IS_NETCAR_0").prop("checked", "checked");
|
||||
}
|
||||
changeNetCarInfo();
|
||||
|
||||
|
||||
})
|
||||
var flag=false;//标记是否复制过客户
|
||||
function changeCertid(){
|
||||
@ -333,7 +337,7 @@
|
||||
if(res0 != "0"){
|
||||
alert(res0);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
function copyCustomer(custid,flowunid){
|
||||
RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerAction","copyCustomerInfo",'customerid='+custid+',flowunid='+flowunid);
|
||||
@ -389,11 +393,11 @@
|
||||
setItemRequired(0,"cityname",false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function CheckDate(){
|
||||
var idexpiry=getItemValue(0,getRow(),"IDEXPIRY");
|
||||
var date1 = "<%=dateString%>";
|
||||
|
||||
|
||||
if(date1>=idexpiry){
|
||||
setErrorTips("IDEXPIRY","证件到期日必须晚于当前日期!");
|
||||
return false;
|
||||
@ -401,22 +405,22 @@
|
||||
setErrorTips("IDEXPIRY","");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
// function IsTelephone(obj){//正则判断固定电话区号
|
||||
// var pattern=/(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)/;
|
||||
// if(pattern.test(obj))
|
||||
// {
|
||||
// return true;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// return false;
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
// function IsTelephone(obj){//正则判断固定电话区号
|
||||
// var pattern=/(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)/;
|
||||
// if(pattern.test(obj))
|
||||
// {
|
||||
// return true;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// return false;
|
||||
// }
|
||||
// }
|
||||
|
||||
function checkTel(){//校验手机号格式和不为空校验
|
||||
var mobile = getItemValue(0,getRow(0),"mobile");
|
||||
if(mobile==""){
|
||||
@ -441,7 +445,7 @@
|
||||
return false;
|
||||
} */
|
||||
}
|
||||
|
||||
|
||||
function saveRecord(leasfrom,projectSource,inputName,inputTel,projectNo,operationType,zcProjectNumber,zcContractNumber){//保存
|
||||
//校验申请人手机号和配偶手机号是否重复
|
||||
var RepeatReault = "";
|
||||
@ -516,15 +520,15 @@
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//RepeatReault = frame_list.window.checkRepeat(mobile,emergencyTel,remark);//传参基本信息校验三个手机号
|
||||
|
||||
|
||||
var mobileResult = checkTel();
|
||||
if(mobileResult==false){
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
//校验公司电话区号
|
||||
var workTel = getItemValue(0,0,"WORKTEL");
|
||||
/* if(typeof(workTel)!=undefined && mobile != ''){
|
||||
@ -540,7 +544,7 @@
|
||||
// //alert("公司电话格式不正确!");
|
||||
// return;
|
||||
// }
|
||||
|
||||
|
||||
<%-- var idexpiry=getItemValue(0,getRow(),"IDEXPIRY");
|
||||
var date1 = "<%=dateString%>";
|
||||
if(date1>=idexpiry){
|
||||
@ -567,7 +571,7 @@
|
||||
return true;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
function saveCertInfo(inputName,inputTel,leasfrom,projectSource,projectNo,operationType,zcProjectNumber,zcContractNumber){
|
||||
var sResult = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoManage","saveCertInfo",'zcProjectNumber='+zcProjectNumber+',zcContractNumber='+zcContractNumber+',projectNo='+projectNo+',inputName='+inputName+',operationType='+operationType+',inputTel='+inputTel+',project_source='+projectSource+',leas_from='+leasfrom+',idexpiry='+getItemValue(0,0,"idexpiry")+',certtype='+getItemValue(0,0,"certtype")+',customerid='+getItemValue(0,0,"customerid")+',flowunid=<%=flowunid%>,certid='+getItemValue(0,0,"certid")+',name='+getItemValue(0,0,"name")+',userid=<%=CurUser.getUserID()%>,orgid=<%=CurUser.getOrgID()%>,channel=<%=channel%>');
|
||||
if(sResult == "SUCCESS"){
|
||||
@ -581,8 +585,8 @@
|
||||
}else{
|
||||
edit();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//新增
|
||||
function newRecord(){
|
||||
var sUrl = "/Tenwa/Lease/Flow/Project/BusinessApplication/CustomerAddress.jsp";
|
||||
@ -597,14 +601,14 @@
|
||||
return;
|
||||
}
|
||||
if(result !== ""){
|
||||
setItemValue(0,0,"addressid",result.split("@")[0]);
|
||||
setItemValue(0,0,"fulladdress",result.split("@")[1]);
|
||||
setItemValue(0,0,"country",result.split("@")[2]);
|
||||
setItemValue(0,0,"province",result.split("@")[3]);
|
||||
setItemValue(0,0,"dressdetail",result.split("@")[4]);
|
||||
setItemValue(0,0,"zipcode",result.split("@")[5]);
|
||||
setItemValue(0,0,"provincename",result.split("@")[6]);
|
||||
}
|
||||
setItemValue(0,0,"addressid",result.split("@")[0]);
|
||||
setItemValue(0,0,"fulladdress",result.split("@")[1]);
|
||||
setItemValue(0,0,"country",result.split("@")[2]);
|
||||
setItemValue(0,0,"province",result.split("@")[3]);
|
||||
setItemValue(0,0,"dressdetail",result.split("@")[4]);
|
||||
setItemValue(0,0,"zipcode",result.split("@")[5]);
|
||||
setItemValue(0,0,"provincename",result.split("@")[6]);
|
||||
}
|
||||
},"新增地址信息");
|
||||
}
|
||||
//详情
|
||||
@ -620,11 +624,11 @@
|
||||
return;
|
||||
}
|
||||
if(result !== ""){
|
||||
setItemValue(0,0,"addressid",result.split("@")[0]);
|
||||
setItemValue(0,0,"fulladdress",result.split("@")[1]);
|
||||
setItemValue(0,0,"country",result.split("@")[2]);
|
||||
setItemValue(0,0,"province",result.split("@")[3]);
|
||||
setItemValue(0,0,"dressdetail",result.split("@")[4]);
|
||||
setItemValue(0,0,"addressid",result.split("@")[0]);
|
||||
setItemValue(0,0,"fulladdress",result.split("@")[1]);
|
||||
setItemValue(0,0,"country",result.split("@")[2]);
|
||||
setItemValue(0,0,"province",result.split("@")[3]);
|
||||
setItemValue(0,0,"dressdetail",result.split("@")[4]);
|
||||
setItemValue(0,0,"zipcode",result.split("@")[5]);
|
||||
setItemValue(0,0,"provincename",result.split("@")[6]);
|
||||
}
|
||||
@ -652,17 +656,17 @@
|
||||
return;
|
||||
}
|
||||
if(result !== ""){
|
||||
setItemValue(0,0,"addressid",result.split("@")[0]);
|
||||
setItemValue(0,0,"fulladdress",result.split("@")[1]);
|
||||
setItemValue(0,0,"country",result.split("@")[2]);
|
||||
setItemValue(0,0,"province",result.split("@")[3]);
|
||||
setItemValue(0,0,"dressdetail",result.split("@")[4]);
|
||||
setItemValue(0,0,"zipcode",result.split("@")[5]);
|
||||
setItemValue(0,0,"addressid",result.split("@")[0]);
|
||||
setItemValue(0,0,"fulladdress",result.split("@")[1]);
|
||||
setItemValue(0,0,"country",result.split("@")[2]);
|
||||
setItemValue(0,0,"province",result.split("@")[3]);
|
||||
setItemValue(0,0,"dressdetail",result.split("@")[4]);
|
||||
setItemValue(0,0,"zipcode",result.split("@")[5]);
|
||||
setItemValue(0,0,"provincename",result.split("@")[6]);
|
||||
}
|
||||
}
|
||||
},"修改地址信息");
|
||||
}
|
||||
|
||||
|
||||
function selectProviceCode(){//选择省份
|
||||
var countrycode = getItemValue(0,getRow(),"country");
|
||||
if(typeof(countrycode)!=undefined && countrycode == 'CHN'){
|
||||
@ -697,9 +701,9 @@
|
||||
//校验证件类型为身份证或临时身份证时,出生日期是否同证件编号中的日期一致
|
||||
var certType = getItemValue(0,getRow(),"CERTTYPE");
|
||||
var certID = getItemValue(0,getRow(),"CERTID");
|
||||
|
||||
|
||||
if(certType == 'Ind01' || certType == 'Ind08'){
|
||||
|
||||
|
||||
//将身份证中的日期自动赋给出生日期,把身份证中的性别赋给性别
|
||||
if(certID.length == 15){
|
||||
sex = certID.substring(14);
|
||||
@ -709,10 +713,10 @@
|
||||
setItemValue(0,getRow(),"BIRTHDAY",certID);
|
||||
if(sex%2==0){//奇男偶女
|
||||
setItemValue(0,getRow(),"SEX","2");
|
||||
|
||||
|
||||
}else{
|
||||
setItemValue(0,getRow(),"SEX","1");
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
if(certID.length == 18){
|
||||
@ -726,21 +730,21 @@
|
||||
}else{
|
||||
setItemValue(0,getRow(),"SEX","1");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* function setErrorTips(colName,tips){
|
||||
|
||||
/* function setErrorTips(colName,tips){
|
||||
if(tips==""){
|
||||
setItemUnit(0,getRow(),colName,"");
|
||||
return ;
|
||||
}
|
||||
setItemUnit(0,getRow(),colName,"<font color=red>"+tips+"</font>");
|
||||
} */
|
||||
|
||||
|
||||
//校验驾驶证(是/否)
|
||||
function checkDriver(){
|
||||
var driverLicense = getItemValue(0,getRow(),"DRIVERLICENSE");
|
||||
@ -753,7 +757,7 @@
|
||||
setItemRequired(0, "LICENSENAME", true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function setIdexpiry(){
|
||||
var curDate = new Date();
|
||||
;
|
||||
@ -772,7 +776,7 @@
|
||||
}
|
||||
},0,document.getElementById("DWTR").offsetTop);
|
||||
}
|
||||
|
||||
|
||||
function checkCertInfo(flag){
|
||||
if(typeof(flag)=="undefined") flag=false;
|
||||
var certType = getItemValue(0,getRow(),"certtype");
|
||||
@ -781,24 +785,24 @@
|
||||
//检查自然人证件
|
||||
if(certType == 'Ind01'){
|
||||
if (!checkIdCard(certid)){
|
||||
setErrorTips("certid",getBusinessMessage('156'));
|
||||
setErrorTips("certid",getBusinessMessage('156'));
|
||||
return false;
|
||||
}else{
|
||||
setErrorTips("certid","");
|
||||
setErrorTips("certid","");
|
||||
}
|
||||
}
|
||||
// 护照验证
|
||||
if(certType == 'Ind03'){
|
||||
if (!checkCard(certid)){
|
||||
setErrorTips("certid","护照格式有误!");
|
||||
setErrorTips("certid","护照格式有误!");
|
||||
return false;
|
||||
}else{
|
||||
setErrorTips("certid","");
|
||||
setErrorTips("certid","");
|
||||
}
|
||||
}
|
||||
return true;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 护照验证
|
||||
function checkCard(value) {
|
||||
@ -806,12 +810,12 @@
|
||||
var re2 = /^[a-zA-Z0-9]{5,17}$/;
|
||||
return (re2.test(value)) || re1.test(value);
|
||||
}
|
||||
|
||||
|
||||
function checkIdCard(value) {
|
||||
var re = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
|
||||
return re.test(value);
|
||||
}
|
||||
|
||||
return re.test(value);
|
||||
}
|
||||
|
||||
function checkEmergencyContactTel(){//校验紧急联系人1的电话格式
|
||||
var mobile = getItemValue(0,getRow(0),"EMERGENCY_CONTACT_TEL");
|
||||
if(mobile==""){
|
||||
@ -827,14 +831,14 @@
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function checkREMARK(){//校验紧急联系人2的电话格式
|
||||
var mobile = getItemValue(0,getRow(0),"REMARK");
|
||||
if(mobile==""){
|
||||
// setErrorTips("REMARK","电话不能为空!");
|
||||
return true;
|
||||
}
|
||||
var phone = /^[1][2,3,4,5,6,7,8,9][0-9]{9}$/;
|
||||
var phone = /^[1][2-9][0-9]{9}$/;
|
||||
if(phone.test(mobile)){
|
||||
setErrorTips("REMARK","");
|
||||
return true;
|
||||
@ -843,7 +847,7 @@
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//根据是否网约车显示不同的数据
|
||||
function changeNetCarInfo(){
|
||||
var netcar = getItemValue(0,0,"IS_NETCAR");
|
||||
@ -885,13 +889,13 @@
|
||||
document.getElementById("NETCERTNAME").value = '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function checkMobileAll(mobile){//检验所有手机号
|
||||
var sParams = "mobile="+mobile+",flowunid="+"<%=flowunid%>";
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.lease.flow.project.businessapply.CustomerInfoCheck","checkTel",sParams);
|
||||
return sReturnInfo;
|
||||
}
|
||||
|
||||
|
||||
function checkCertIdAll(){//校验证件号
|
||||
var certId = getItemValue(0,getRow(),"CERTID");
|
||||
var sParams = "certId="+certId+",flowunid="+"<%=flowunid%>";
|
||||
@ -906,5 +910,18 @@
|
||||
var customerName = getItemValue(0,getRow(),"FULLNAME");
|
||||
return customerName;
|
||||
}
|
||||
//修改户籍地址
|
||||
function selectHouseholdAddress(){
|
||||
let areaCode = getItemValue(0,0,"area_code");
|
||||
AsDialog.PopView("/Tenwa/Lease/Flow/Project/BusinessApplication/HouseholdSelect.jsp",'areaCode='+areaCode,"resizable=yes;dialogWidth=600px;dialogHeight=355px;center:yes;status:no;statusbar:no",function(result){
|
||||
if(result == "cancel"){
|
||||
return;
|
||||
}
|
||||
if(result !== ""){
|
||||
setItemValue(0,0,"AREA_CODE",result.split("@")[0]);
|
||||
setItemValue(0,0,"NATIVEPLACE",result.split("@")[1]);
|
||||
}
|
||||
},(!areaCode?"新增":"修改")+"户籍地址");
|
||||
}
|
||||
</script>
|
||||
<%@ include file="/Frame/resources/include/include_end.jspf"%>
|
||||
|
||||
@ -0,0 +1,49 @@
|
||||
<%@ page import="org.apache.commons.lang3.StringUtils" %>
|
||||
<%@ page contentType="text/html; charset=GBK"%>
|
||||
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%><%
|
||||
|
||||
String areaCode = CurPage.getParameter("areaCode");
|
||||
String flowUnid = CurPage.getParameter("FlowUnid");
|
||||
ASObjectModel doTemp = new ASObjectModel("HouseholdSelectAddr");
|
||||
if(StringUtils.isNotBlank(areaCode)){
|
||||
ASResultSet as2 = Sqlca.getASResultSet(new SqlObject("select substring_index(NATIVEPLACE,itemname,-1) as addresss ,itemname as area_name " +
|
||||
" from customer_person_temp cpt join code_library cl on cpt.area_code = cl.itemno and cl.codeno = 'ZXAreaCode' where flowunid = :flowunid ").setParameter("flowunid", flowUnid));
|
||||
if(as2.next()){
|
||||
doTemp.setDefaultValue("provincename", as2.getString("area_name"));
|
||||
doTemp.setDefaultValue("dressdetail", as2.getString("addresss"));
|
||||
}
|
||||
}
|
||||
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
|
||||
dwTemp.Style = "2";//freeform
|
||||
dwTemp.genHTMLObjectWindow("");
|
||||
String sButtons[][] = {
|
||||
{"true","All","Button","保存","保存所有修改","saveRecord()","","","","btn_icon_save"},
|
||||
{"true","","Button","返回","返回列表页面","parent.AsDialog.ClosePage('cancel')","","","","btn_icon_return"}
|
||||
};
|
||||
sButtonPosition = "south";
|
||||
%><%@ include file="/Frame/resources/include/ui/include_info.jspf"%>
|
||||
<script type="text/javascript">
|
||||
//省市(户籍选择)
|
||||
function selectRegionCodeZX(){
|
||||
AsDialog.PopView("/Common/ToolsA/AreaVFrame.jsp","sourceForm=zx&AreaCode=<%=areaCode%>","dialogWidth=850px;dialogHeight=450px;center:yes;status:no;statusbar:no",function(sAreaCodeInfo){
|
||||
if( sAreaCodeInfo == '_CANCEL_'){
|
||||
return;
|
||||
}
|
||||
//增加清空功能的判断
|
||||
if( sAreaCodeInfo == '_CLEAR_'){
|
||||
setItemValue(0,0,"provincename",'');
|
||||
return;
|
||||
}
|
||||
if(sAreaCodeInfo !== ""){
|
||||
setItemValue(0,0,"province",sAreaCodeInfo.split("@")[0]);
|
||||
setItemValue(0,0,"provincename",sAreaCodeInfo.split("@")[1]);
|
||||
}
|
||||
},'选择户籍行政区划');
|
||||
}
|
||||
function saveRecord(){
|
||||
if(!iV_all("0")) return;//先检查填写完整性
|
||||
let returnVal = getItemValue(0,getRow(0),"province")+'@'+getItemValue(0,getRow(0),"provincename")+getItemValue(0,getRow(0),"dressdetail");
|
||||
parent.AsDialog.ClosePage(returnVal);
|
||||
}
|
||||
</script>
|
||||
<%@ include file="/Frame/resources/include/include_end.jspf"%>
|
||||
@ -29,7 +29,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_ACCOUNT" label="客户账户表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="id" type="STRING" length="32"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_INFO" label="客户基本信息表" keyAttributes="customerid">
|
||||
<attributes>
|
||||
<attribute name="customerid" label="客户编号" type="STRING" length="40"/>
|
||||
@ -168,7 +168,7 @@
|
||||
<attribute name="updatetime" label="更新时间" type="STRING" length="32"/>
|
||||
<attribute name="distributor_id" label="经销商编号" type="STRING" length="32"/>
|
||||
<attribute name="customer_num" label="客户编码" type="STRING" length="32"/>
|
||||
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -273,11 +273,11 @@
|
||||
<attribute name="mobile" label="手机号" type="STRING" length="32"/>
|
||||
<attribute name="DRIVERLICENSE" label="驾驶证" type="STRING" length="32"/>
|
||||
<attribute name="LICENSENAME" label="驾驶证姓名" type="STRING" length="200"/>
|
||||
<attribute name="CountryName" label="国家" type="STRING" length="200"/>
|
||||
<attribute name="CountryName" label="国家" type="STRING" length="200"/>
|
||||
<attribute name="ProvinceName" label="省份" type="STRING" length="200"/>
|
||||
<attribute name="CityName" label="城市" type="STRING" length="200"/>
|
||||
<attribute name="EMERGENCY_CONTACT_PERSON" label="紧急联系人" type="STRING" length="32"/>
|
||||
<attribute name="EMERGENCY_CONTACT_TEL" label="紧急联系电话" type="STRING" length="32"/>
|
||||
<attribute name="EMERGENCY_CONTACT_TEL" label="紧急联系电话" type="STRING" length="32"/>
|
||||
<attribute name="ENTRYTIME" label="入职时间" type="STRING" length="32"/>
|
||||
<attribute name="FORMALEMP" label="正式员工" type="STRING" length="32"/>
|
||||
<attribute name="childrens_number" label="子女人数" type="STRING" length="32"/>
|
||||
@ -300,6 +300,7 @@
|
||||
<attribute name="spnumber" label="手机号" type="STRING" length="32" />
|
||||
<attribute name="smincome" label="月收入" type="DOUBLE" length="22" scale="2" />
|
||||
<attribute name="e_mail" label="电子邮箱" type="STRING" length="32" />
|
||||
<attribute name="area_code" label="户籍行政区划编码" type="STRING" length="20" />
|
||||
<attribute name="idexpiry" label="北财-承租人身份证有效期" type="STRING" length="32"/>
|
||||
<attribute name="nation" label="北财-承租人民族" type="STRING" length="32"/>
|
||||
<attribute name="industry_type" label="北财-承租人行业类型" type="STRING" length="32"/>
|
||||
@ -421,14 +422,14 @@
|
||||
<attribute name="invalid" label="是否废弃" type="STRING" length="10"/>
|
||||
<attribute name="flowunid" label="流程标识" type="STRING" length="32"/>
|
||||
<attribute name="inputtime" label="登记时间" type="STRING" length="32"/>
|
||||
<attribute name="updatetime" label="更新时间" type="STRING" length="32"/>
|
||||
<attribute name="updatetime" label="更新时间" type="STRING" length="32"/>
|
||||
<attribute name="DRIVERLICENSE" label="驾驶证" type="STRING" length="32"/>
|
||||
<attribute name="LICENSENAME" label="驾驶证姓名" type="STRING" length="200"/>
|
||||
<attribute name="CountryName" label="国家" type="STRING" length="200"/>
|
||||
<attribute name="CountryName" label="国家" type="STRING" length="200"/>
|
||||
<attribute name="ProvinceName" label="省份" type="STRING" length="200"/>
|
||||
<attribute name="CityName" label="城市" type="STRING" length="200"/>
|
||||
<attribute name="EMERGENCY_CONTACT_PERSON" label="紧急联系人" type="STRING" length="32"/>
|
||||
<attribute name="EMERGENCY_CONTACT_TEL" label="紧急联系电话" type="STRING" length="32"/>
|
||||
<attribute name="EMERGENCY_CONTACT_TEL" label="紧急联系电话" type="STRING" length="32"/>
|
||||
<attribute name="childrens_number" label="子女人数" type="STRING" length="32"/>
|
||||
<attribute name="family_address" label="居住地址" type="STRING" length="200"/>
|
||||
<attribute name="telephone" label="固定电话" type="STRING" length="32"/>
|
||||
@ -449,6 +450,7 @@
|
||||
<attribute name="spnumber" label="手机号" type="STRING" length="32" />
|
||||
<attribute name="smincome" label="月收入" type="DOUBLE" length="22" scale="2" />
|
||||
<attribute name="e_mail" label="电子邮箱" type="STRING" length="32" />
|
||||
<attribute name="area_code" label="户籍行政区划编码" type="STRING" length="20" />
|
||||
<attribute name="idexpiry" label="北财-承租人身份证有效期" type="STRING" length="32"/>
|
||||
<attribute name="nation" label="北财-承租人民族" type="STRING" length="32"/>
|
||||
<attribute name="industry_type" label="北财-承租人行业类型" type="STRING" length="32"/>
|
||||
@ -555,7 +557,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_CERT_HIS" label="证件历史表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="标识" type="STRING" length="32"/>
|
||||
@ -584,8 +586,8 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
|
||||
|
||||
<class name="CUSTOMER_ADDRESS_HIS" label="客户地址临时表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="序列号" type="STRING" length="32"/>
|
||||
@ -784,7 +786,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_GROUP_COMPANY" label="集团信息表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="序列号" type="STRING" length="32"/>
|
||||
@ -856,7 +858,7 @@
|
||||
<attribute name="UPDATEORGID" label="更新部门" type="STRING" length="32"/>
|
||||
<attribute name="UPDATETIME" label="更新时间" type="STRING" length="32"/>
|
||||
<attribute name="APPLY_TYPE" label="申请加入/申请解除" type="STRING" length="32"/>
|
||||
</attributes>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="customer_blank_list_temp" />
|
||||
@ -998,12 +1000,12 @@
|
||||
<attribute name="LIMIT_APPROVAL_DATE" label="授信日期" type="STRING" length="100"/>
|
||||
<attribute name="LIMIT_EFFECTIVE_DATE" label="授信有效期" type="STRING" length="32"/>
|
||||
<attribute name="LIMIT_END_DATE" label="授信到期日" type="STRING" length="100"/>
|
||||
|
||||
|
||||
<attribute name="DEALER_LEGAL_NAME" label="经销商法定名称" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_PHONE" label="公司联系电话" type="STRING" length="32"/>
|
||||
<attribute name="RETAIL_OPEN_DATE" label="零售开放日期" type="STRING" length="32"/>
|
||||
<attribute name="SUB_DEALER" label="分销商" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="CITY" label="城市" type="STRING" length="32"/>
|
||||
<attribute name="BRAND" label="品牌" type="STRING" length="32"/>
|
||||
<attribute name="NAME" label="姓名" type="STRING" length="32"/>
|
||||
@ -1014,7 +1016,7 @@
|
||||
<attribute name="SHOWROOMPHONE" label="展厅电话" type="STRING" length="32"/>
|
||||
<attribute name="SHOWROOMADDRESS" label="展厅地址" type="STRING" length="32"/>
|
||||
<attribute name="SHOWROOMPOSTALCODE" label="展厅邮编" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="LEGALPERSON" label="法人" type="STRING" length="32"/>
|
||||
<attribute name="GENERALMANAGER" label="总经理" type="STRING" length="32"/>
|
||||
<attribute name="TOP_MANAGER_CELL_PHONE" label="总经理手机" type="STRING" length="32"/>
|
||||
@ -1025,7 +1027,7 @@
|
||||
<attribute name="FINANCIALMANAGER" label="财务经理" type="STRING" length="32"/>
|
||||
<attribute name="FINANCIAL_CELL_PHONE" label="财务经理手机" type="STRING" length="32"/>
|
||||
<attribute name="FINANCIAL_CELL_MAIL" label="财务经理邮件" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="FINANCE_SAFE_MANAGER" label="金融保险经理" type="STRING" length="32"/>
|
||||
<attribute name="FINANCE_SAFE_MANAGER_CELL_PHONE" label="金融保险经理手机" type="STRING" length="32"/>
|
||||
<attribute name="FINANCE_SAFE_MANAGER_POST" label="金融保险经理邮件" type="STRING" length="32"/>
|
||||
@ -1036,13 +1038,13 @@
|
||||
<attribute name="BANK_NAME" label="银行开户行总行名称" type="STRING" length="32"/>
|
||||
<attribute name="ACCOUNT_WITH_BANK" label="银行开户行名称" type="STRING" length="32"/>
|
||||
<attribute name="BANK_ACCOUNT_NAME" label="银行户名" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="BANKACCOUNT" label="银行账号" type="STRING" length="32"/>
|
||||
<attribute name="DEALERCODE" label="经销商代码" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_COST_CENTER_CODE" label="经销商成本中心代码" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_COMMISSION_FOR_FP" label="经销商佣金" type="STRING" length="32"/>
|
||||
<attribute name="MBAFC_EARLYDISBURSEMENT_TYPE" label="早期支付类型" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="DSM_NAME" label="管理员姓名" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_GROUP" label="经销商集团" type="STRING" length="32"/>
|
||||
<attribute name="NEW_DEALER_GROUP" label="新经销商集团" type="STRING" length="32"/>
|
||||
@ -1059,10 +1061,10 @@
|
||||
<attribute name="WHOLESALE" label="批发商" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_BANK_ABBREVIATION" label="证券发行银行" type="STRING" length="32"/>
|
||||
<attribute name="SUBSIDIARY_COMPANY" label="所属母公司" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="distributor_money" label="经销商注册资金" type="STRING" length="32"/>
|
||||
<attribute name="distributor_form_id" label="经销商表id" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="RETAIL_DATE" label="零售业务上线日期" type="STRING" length="32"/>
|
||||
<attribute name="REGION" label="地区" type="STRING" length="32"/>
|
||||
<attribute name="SUB_DISTRIBUTOR" label="子经销商" type="STRING" length="32"/>
|
||||
@ -1105,8 +1107,8 @@
|
||||
<attribute name="district" label="地区" type="STRING" length="64"/>
|
||||
<attribute name="provinceInfo" label="省份" type="STRING" length="64"/>
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
<attribute name="CRTPVC" label="" type="STRING" length="100"/>
|
||||
|
||||
<attribute name="CRTPVC" label="" type="STRING" length="100"/>
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -1137,8 +1139,8 @@
|
||||
<attribute name="form_id" label="正式表id" type="STRING" length="32"/>
|
||||
<attribute name="district" label="地区" type="STRING" length="64"/>
|
||||
<attribute name="provinceInfo" label="省份" type="STRING" length="64"/>
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -1189,7 +1191,7 @@
|
||||
<attribute name="LIMIT_END_DATE" label="授信到期日" type="STRING" length="100"/>
|
||||
<attribute name="district" label="地区" type="STRING" length="64"/>
|
||||
<attribute name="provinceInfo" label="省份" type="STRING" length="64"/>
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -1244,8 +1246,8 @@
|
||||
<attribute name="DISTRIBUTOR_ACCOUNT_TEMP" label="经销商名称" type="STRING" length="32"/>
|
||||
<attribute name="district" label="地区" type="STRING" length="64"/>
|
||||
<attribute name="provinceInfo" label="省份" type="STRING" length="64"/>
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -1299,12 +1301,12 @@
|
||||
<attribute name="LIMIT_APPROVAL_DATE" label="授信日期" type="STRING" length="100"/>
|
||||
<attribute name="LIMIT_EFFECTIVE_DATE" label="授信有效期" type="STRING" length="32"/>
|
||||
<attribute name="LIMIT_END_DATE" label="授信到期日" type="STRING" length="100"/>
|
||||
|
||||
|
||||
<attribute name="DEALER_LEGAL_NAME" label="经销商法定名称" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_PHONE" label="公司联系电话" type="STRING" length="32"/>
|
||||
<attribute name="RETAIL_OPEN_DATE" label="零售开放日期" type="STRING" length="32"/>
|
||||
<attribute name="SUB_DEALER" label="分销商" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="CITY" label="城市" type="STRING" length="32"/>
|
||||
<attribute name="BRAND" label="品牌" type="STRING" length="32"/>
|
||||
<attribute name="NAME" label="姓名" type="STRING" length="32"/>
|
||||
@ -1315,7 +1317,7 @@
|
||||
<attribute name="SHOWROOMPHONE" label="展厅电话" type="STRING" length="32"/>
|
||||
<attribute name="SHOWROOMADDRESS" label="展厅地址" type="STRING" length="32"/>
|
||||
<attribute name="SHOWROOMPOSTALCODE" label="展厅邮编" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="LEGALPERSON" label="法人" type="STRING" length="32"/>
|
||||
<attribute name="GENERALMANAGER" label="总经理" type="STRING" length="32"/>
|
||||
<attribute name="TOP_MANAGER_CELL_PHONE" label="总经理手机" type="STRING" length="32"/>
|
||||
@ -1326,7 +1328,7 @@
|
||||
<attribute name="FINANCIALMANAGER" label="财务经理" type="STRING" length="32"/>
|
||||
<attribute name="FINANCIAL_CELL_PHONE" label="财务经理手机" type="STRING" length="32"/>
|
||||
<attribute name="FINANCIAL_CELL_MAIL" label="财务经理邮件" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="FINANCE_SAFE_MANAGER" label="金融保险经理" type="STRING" length="32"/>
|
||||
<attribute name="FINANCE_SAFE_MANAGER_CELL_PHONE" label="金融保险经理手机" type="STRING" length="32"/>
|
||||
<attribute name="FINANCE_SAFE_MANAGER_POST" label="金融保险经理邮件" type="STRING" length="32"/>
|
||||
@ -1337,13 +1339,13 @@
|
||||
<attribute name="BANK_NAME" label="银行开户行总行名称" type="STRING" length="32"/>
|
||||
<attribute name="ACCOUNT_WITH_BANK" label="银行开户行名称" type="STRING" length="32"/>
|
||||
<attribute name="BANK_ACCOUNT_NAME" label="银行户名" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="BANKACCOUNT" label="银行账号" type="STRING" length="32"/>
|
||||
<attribute name="DEALERCODE" label="经销商代码" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_COST_CENTER_CODE" label="经销商成本中心代码" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_COMMISSION_FOR_FP" label="经销商佣金" type="STRING" length="32"/>
|
||||
<attribute name="MBAFC_EARLYDISBURSEMENT_TYPE" label="早期支付类型" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="DSM_NAME" label="管理员姓名" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_GROUP" label="经销商集团" type="STRING" length="32"/>
|
||||
<attribute name="NEW_DEALER_GROUP" label="新经销商集团" type="STRING" length="32"/>
|
||||
@ -1360,7 +1362,7 @@
|
||||
<attribute name="WHOLESALE" label="批发商" type="STRING" length="32"/>
|
||||
<attribute name="DEALER_BANK_ABBREVIATION" label="证券发行银行" type="STRING" length="32"/>
|
||||
<attribute name="SUBSIDIARY_COMPANY" label="所属母公司" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="RETAIL_DATE" label="零售业务上线日期" type="STRING" length="32"/>
|
||||
<attribute name="REGION" label="地区" type="STRING" length="32"/>
|
||||
<attribute name="SUB_DISTRIBUTOR" label="子经销商" type="STRING" length="32"/>
|
||||
@ -1548,8 +1550,8 @@
|
||||
<attribute name="DISTRIBUTOR_ACCOUNT_TEMP" label="经销商名称" type="STRING" length="32"/>
|
||||
<attribute name="district" label="地区" type="STRING" length="64"/>
|
||||
<attribute name="provinceInfo" label="省份" type="STRING" length="64"/>
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
|
||||
<attribute name="open_bank" label="开户银行" type="STRING" length="100"/>
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -1632,7 +1634,7 @@
|
||||
<property name="createKey" value="true" />
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
</class>
|
||||
<class name="DISTRIBUTE_CHANGE_INFO_TEMP" label="经销商变更信息表" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="ID" type="STRING" length="32"/>
|
||||
@ -1837,7 +1839,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_INVOICE_TEMP" label="开票信息流程表" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="flowunid" label="流程id" type="STRING" length="32"/>
|
||||
@ -2057,7 +2059,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LM_DISTRIBUTOR_TO_CAR" label="" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="标识" type="STRING" length="100"/>
|
||||
@ -2079,7 +2081,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LM_PORTAL_TO_CAR" label="" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="ID" type="STRING" length="100"/>
|
||||
@ -2101,7 +2103,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LM_DISTRIBUTOR_TO_PRODUCT" label="" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="ID" type="STRING" length="100"/>
|
||||
@ -2537,7 +2539,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LB_CAR_CREDIT_RISKITEM_TEMP" label="个人风险详情表" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="标识编号" type="STRING" length="32"/>
|
||||
@ -2566,7 +2568,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LB_CAR_CREDIT_RISKITEM" label="个人风险详情正式表" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="标识编号" type="STRING" length="32"/>
|
||||
@ -2594,7 +2596,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_FAMILY" label="" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="标识" type="STRING" length="32"/>
|
||||
@ -2645,8 +2647,8 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
|
||||
|
||||
<class name="CUSTOMER_FAMILY_HIS" label="" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="标识" type="STRING" length="32"/>
|
||||
@ -2778,7 +2780,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LB_TEST" label="定时任务处理器" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="标识id" type="STRING" length="100"/>
|
||||
@ -2875,7 +2877,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LB_CAR_CREDIT_PERSONAL_INFO" label="个人风险信息正式表" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="标识编号" type="STRING" length="32"/>
|
||||
@ -2907,7 +2909,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LB_CARDATA_COMMERCIAL_BRAND" label="商用车品牌表" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="标识编号" type="STRING" length="32"/>
|
||||
@ -3010,7 +3012,7 @@
|
||||
<attribute name="geartype" label="变速箱" type="STRING"/>
|
||||
<attribute name="cartype" label="车辆类型" type="STRING"/>
|
||||
<attribute name="modelyear" label="年款" type="STRING"/>
|
||||
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -3019,7 +3021,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="CUSTOMER_INFO_TEMP" label="客户基本信息表" keyAttributes="customerid">
|
||||
<attributes>
|
||||
<attribute name="customerid" label="客户编号" type="STRING" length="40"/>
|
||||
@ -3148,7 +3150,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
|
||||
<class name="CUSTOMER_LIST" label="" keyAttributes="cust_id">
|
||||
<attributes>
|
||||
@ -3322,7 +3324,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="vi_the_rent_plan" label="经销商租金计划报表" keyAttributes="">
|
||||
<attributes>
|
||||
<attribute name="contract_number" label="业务合同号" type="STRING"/>
|
||||
@ -3368,7 +3370,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="VI_SETTLEMENT_OF_DATA" label="经销商结清数据报表" keyAttributes="">
|
||||
<attributes>
|
||||
<attribute name="hire_date" label="合同到期日" type="STRING"/>
|
||||
@ -3391,7 +3393,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="VI_DEALER_COLLECTION" label="经销商催收报表" keyAttributes="">
|
||||
<attributes>
|
||||
<attribute name="project_no" label="申请号码" type="STRING"/>
|
||||
@ -3423,7 +3425,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LPOUNDAGE_MAINTENANCE" label="扣款渠道手续费率维护" keyAttributes="id">
|
||||
<attributes>
|
||||
<attribute name="id" label="标识" type="STRING" length="32"/>
|
||||
@ -3490,7 +3492,7 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
<class name="VI_DISTRIBUTOR_INFO" label="经销商信息页签" keyAttributes="">
|
||||
<attributes>
|
||||
<attribute name="DISTRIBUTOR_NO" label="经销商编号" type="STRING"/>
|
||||
@ -3508,9 +3510,9 @@
|
||||
<property name="createKey" value="true" />
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
|
||||
|
||||
</class>
|
||||
|
||||
|
||||
<class name="LC_OVERDUE_RENT_PLAN" label="" keyAttributes="">
|
||||
<attributes>
|
||||
<attribute name="ID" label="ID" type="STRING" length="96"/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user