优化合同查询功能

This commit is contained in:
tangfutang 2019-12-27 15:06:52 +08:00
parent ba0bee337c
commit 6b865f9f71
5 changed files with 1463 additions and 1008 deletions

View File

@ -1,128 +1,130 @@
<%@page import="jbo.app.tenwa.customer.DISTRIBUTOR_INFO"%>
<%@page import="com.tenwa.comm.dataRightmanager.DataRightManager"%>
<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin_list.jspf"%>
<%@ page import="org.apache.commons.lang.StringUtils" %>
<%
String InfoForType=CurPage.getParameter("InfoForType");
String userid=CurUser.getUserID().substring(0,5);
String userid1=CurUser.getUserID();
String Orgid=CurUser.getOrgID();
String Model="";
String distributor_id="";
if(InfoForType.equals("02")){
Model="ContractInfoAllViewFroCT";
}else{
if("8006U".equals(userid)){
String sSql = "select distributor_no from O where orgid = :orgid";
BizObject bo = JBOFactory.createBizObjectQuery(DISTRIBUTOR_INFO.CLASS_NAME, sSql).setParameter("orgid", Orgid).getSingleResult(false);
distributor_id=bo.getAttribute("distributor_no").toString();
Model="ContractInfoAllViewFroJXS";
}else{
Model="ContractInfoAllViewFroQC";
}
}
ASObjectModel doTemp = new ASObjectModel(Model);
if("ContractInfoAllViewFroJXS".equals(Model)){
/* String sCondtion=DataRightManager.getRightCondition(CurUser,"O", "contract"); */
//做合同信息查询加权限时将此代码注释掉了
//doTemp.appendJboWhere(" and O.distributor_id='"+distributor_id+"'");
}
//合同信息查询加权限
BizObjectManager manager = JBOFactory.getBizObjectManager("jbo.awe.USER_ROLE");
List<BizObject> roleListObject = manager.createQuery("userid=:userid").setParameter("userid", userid1).getResultList(false);
List<String> roleList = new ArrayList<String>();
String roleid = "";
for(BizObject bo : roleListObject){
roleid = bo.getAttribute("roleid").toString();
roleList.add(roleid);
}
//roleid:800R00000044 北财合作方
String roleId = "800R00000044";
if(InfoForType.equals("02")){//传统和汽车类传统
String orgidB = Orgid.substring(0,7);
if("8009011".equals(orgidB)){
doTemp.appendJboWhere(" and O.businesstype='3' ");
}else if("8009010".equals(orgidB)){
doTemp.appendJboWhere(" and O.businesstype='2' ");
}else{
doTemp.appendJboWhere(" and (O.businesstype='2' or O.businesstype='3' )");
}
}else{//C端汽车
//roleid:800R00000045 rolename: bccuishou
//如果登录人属于bccuishou角色可以看到北财下的所有的合同
if(roleList.contains("800R00000045")){
List<BizObject> userObjectList = manager.createQuery("roleid=:roleid").setParameter("roleid", roleId).getResultList(false);
String userId = "";
List<String> useridList = new ArrayList<String>();
for(BizObject bo : userObjectList){
userId = bo.getAttribute("userid").toString();
useridList.add("'"+userId+"'");
}
String useridStr = StringUtils.join(useridList.toArray(), ",");
doTemp.appendJboWhere(" and O.project_manage in (" + useridStr + ")");
}
//登录人属于经销商角色 401经销商roleid
if(roleList.contains("401")){
doTemp.appendJboWhere(" and O.project_manage='"+userid1+"'");
}
}
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
dwTemp.Style="1"; //--设置为Grid风格--
dwTemp.ReadOnly = "1"; //只读模式
dwTemp.setPageSize(pageSize == null?10:Integer.parseInt(pageSize));
dwTemp.genHTMLObjectWindow("");
//0、是否展示 1、 权限控制 2、 展示类型 3、按钮显示名称 4、按钮解释文字 5、按钮触发事件代码 6、 7、 8、 9、图标CSS层叠样式 10、风格
String sButtons[][] =new String[][] {
{"true","","Button","流程信息","流程信息","viewAllFlow()","","","","btn_icon_detail",""},
{"true","","Button","附件信息","附件信息","viewAllFlowAttachment()","","","","btn_icon_detail",""},
{"true","","Button","合同信息","合同信息","viewContractInfo()","","","","btn_icon_detail",""}
};
%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
<script type="text/javascript">
//在加载完表格后调用
function viewAllFlow(){
var sUrl = "Tenwa/Lease/Flow/Contract/contractInfoAllView/contractFlowViewList.jsp";
var sPara = getItemValue(0,getRow(0),'id');
if(typeof(sPara)=="undefined" || sPara.length==0 ){
alert("参数不能为空!");
return ;
}
var sparm='id='+sPara;
AsControl.OpenTab(sUrl,sparm,{title:'流程历史信息'});
}
function viewAllFlowAttachment(){
var sUrl = "/Tenwa/Comm/Document/LBDocumentList.jsp";
var sPara = getItemValue(0,getRow(0),'id');
var proj_id=getItemValue(0,getRow(0),'project_id');
if(typeof(sPara)=="undefined" || sPara.length==0 ){
alert("参数不能为空!");
return ;
}
var sparm='proj_id='+proj_id+'&contract_id='+sPara+"&type=contract&IsHistory=true&query=query";
AsControl.OpenTab(sUrl,sparm,{title:'流程附件信息'});
}
function viewContractInfo(){
var sUrl = "/Tenwa/Lease/App/InformationTable/InfoView.jsp";
var sPara = getItemValue(0,getRow(0),'id');
var contract_no = getItemValue(0,getRow(0),'contract_no');
var productId = getItemValue(0,getRow(0),'PRODUCT_ID');
var FlowUnid = getItemValue(0,getRow(0),'flowunid');
if(typeof(sPara)=="undefined" || sPara.length==0 ){
alert("参数不能为空!");
return ;
}
var ShowType="flow_contract_sum";
//判断是汽车的还是传统的合同查询
if("01"=="<%=InfoForType%>"){
ShowType="flow_contract_sum_car";
}
var sparm='ContractId='+sPara+"&ProjectId="+getItemValue(0,getRow(0),'project_id')+"&ShowType="+ShowType+"&RightType=ReadOnly&IsHistory=false"+"&contract_no="+contract_no+"&productId="+productId+"&FlowUnid="+FlowUnid;
AsControl.OpenTab(sUrl,sparm,{title:'合同基本信息【'+ getItemValue(0,getRow(0),'contract_number')+'】'});
}
</script>
<%@page import="jbo.app.tenwa.customer.DISTRIBUTOR_INFO"%>
<%@page import="com.tenwa.comm.dataRightmanager.DataRightManager"%>
<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin_list.jspf"%>
<%@ page import="org.apache.commons.lang.StringUtils" %>
<%
String InfoForType=CurPage.getParameter("InfoForType");
String userid=CurUser.getUserID().substring(0,5);
String userid1=CurUser.getUserID();
String Orgid=CurUser.getOrgID();
String Model="";
String distributor_id="";
if(InfoForType.equals("02")){
Model="ContractInfoAllViewFroCT";
}else{
if("8006U".equals(userid)){
String sSql = "select distributor_no from O where orgid = :orgid";
BizObject bo = JBOFactory.createBizObjectQuery(DISTRIBUTOR_INFO.CLASS_NAME, sSql).setParameter("orgid", Orgid).getSingleResult(false);
distributor_id=bo.getAttribute("distributor_no").toString();
//Model="ContractInfoAllViewFroJXS";
Model="ViBusinessAffinfo";
}else{
//Model="ContractInfoAllViewFroQC";
Model="ViBusinessAffinfo";
}
}
ASObjectModel doTemp = new ASObjectModel(Model);
if("ContractInfoAllViewFroJXS".equals(Model)){
/* String sCondtion=DataRightManager.getRightCondition(CurUser,"O", "contract"); */
//做合同信息查询加权限时将此代码注释掉了
//doTemp.appendJboWhere(" and O.distributor_id='"+distributor_id+"'");
}
//合同信息查询加权限
BizObjectManager manager = JBOFactory.getBizObjectManager("jbo.awe.USER_ROLE");
List<BizObject> roleListObject = manager.createQuery("userid=:userid").setParameter("userid", userid1).getResultList(false);
List<String> roleList = new ArrayList<String>();
String roleid = "";
for(BizObject bo : roleListObject){
roleid = bo.getAttribute("roleid").toString();
roleList.add(roleid);
}
//roleid:800R00000044 北财合作方
String roleId = "800R00000044";
if(InfoForType.equals("02")){//传统和汽车类传统
String orgidB = Orgid.substring(0,7);
if("8009011".equals(orgidB)){
doTemp.appendJboWhere(" and O.businesstype='3' ");
}else if("8009010".equals(orgidB)){
doTemp.appendJboWhere(" and O.businesstype='2' ");
}else{
doTemp.appendJboWhere(" and (O.businesstype='2' or O.businesstype='3' )");
}
}else{//C端汽车
//roleid:800R00000045 rolename: bccuishou
//如果登录人属于bccuishou角色可以看到北财下的所有的合同
if(roleList.contains("800R00000045")){
List<BizObject> userObjectList = manager.createQuery("roleid=:roleid").setParameter("roleid", roleId).getResultList(false);
String userId = "";
List<String> useridList = new ArrayList<String>();
for(BizObject bo : userObjectList){
userId = bo.getAttribute("userid").toString();
useridList.add("'"+userId+"'");
}
String useridStr = StringUtils.join(useridList.toArray(), ",");
doTemp.appendJboWhere(" and O.project_manage in (" + useridStr + ")");
}
//登录人属于经销商角色 401经销商roleid
if(roleList.contains("401")){
doTemp.appendJboWhere(" and O.project_manage='"+userid1+"'");
}
}
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
dwTemp.Style="1"; //--设置为Grid风格--
dwTemp.ReadOnly = "1"; //只读模式
dwTemp.setPageSize(pageSize == null?10:Integer.parseInt(pageSize));
dwTemp.genHTMLObjectWindow("");
//0、是否展示 1、 权限控制 2、 展示类型 3、按钮显示名称 4、按钮解释文字 5、按钮触发事件代码 6、 7、 8、 9、图标CSS层叠样式 10、风格
String sButtons[][] =new String[][] {
{"true","","Button","流程信息","流程信息","viewAllFlow()","","","","btn_icon_detail",""},
{"true","","Button","附件信息","附件信息","viewAllFlowAttachment()","","","","btn_icon_detail",""},
{"true","","Button","合同信息","合同信息","viewContractInfo()","","","","btn_icon_detail",""}
};
%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
<script type="text/javascript">
//在加载完表格后调用
function viewAllFlow(){
var sUrl = "Tenwa/Lease/Flow/Contract/contractInfoAllView/contractFlowViewList.jsp";
var sPara = getItemValue(0,getRow(0),'id');
if(typeof(sPara)=="undefined" || sPara.length==0 ){
alert("参数不能为空!");
return ;
}
var sparm='id='+sPara;
AsControl.OpenTab(sUrl,sparm,{title:'流程历史信息'});
}
function viewAllFlowAttachment(){
var sUrl = "/Tenwa/Comm/Document/LBDocumentList.jsp";
var sPara = getItemValue(0,getRow(0),'id');
var proj_id=getItemValue(0,getRow(0),'project_id');
if(typeof(sPara)=="undefined" || sPara.length==0 ){
alert("参数不能为空!");
return ;
}
var sparm='proj_id='+proj_id+'&contract_id='+sPara+"&type=contract&IsHistory=true&query=query";
AsControl.OpenTab(sUrl,sparm,{title:'流程附件信息'});
}
function viewContractInfo(){
var sUrl = "/Tenwa/Lease/App/InformationTable/InfoView.jsp";
var sPara = getItemValue(0,getRow(0),'id');
var contract_no = getItemValue(0,getRow(0),'contract_no');
var productId = getItemValue(0,getRow(0),'PRODUCT_ID');
var FlowUnid = getItemValue(0,getRow(0),'flowunid');
if(typeof(sPara)=="undefined" || sPara.length==0 ){
alert("参数不能为空!");
return ;
}
var ShowType="flow_contract_sum";
//判断是汽车的还是传统的合同查询
if("01"=="<%=InfoForType%>"){
ShowType="flow_contract_sum_car";
}
var sparm='ContractId='+sPara+"&ProjectId="+getItemValue(0,getRow(0),'project_id')+"&ShowType="+ShowType+"&RightType=ReadOnly&IsHistory=false"+"&contract_no="+contract_no+"&productId="+productId+"&FlowUnid="+FlowUnid;
AsControl.OpenTab(sUrl,sparm,{title:'合同基本信息【'+ getItemValue(0,getRow(0),'contract_number')+'】'});
}
</script>
<%@ include file="/Frame/resources/include/include_end.jspf"%>

View File

@ -5157,6 +5157,105 @@
</managerProperties>
</manager>
</class>
<class name="VI_BUSINESS_AFFINFO" label="" keyAttributes="">
<attributes>
<attribute name="distributor_id" label="distributor_id" type="STRING"/>
<attribute name="ID" label="ID" type="STRING"/>
<attribute name="CONTRACT_NO" label="CONTRACT_NO" type="STRING"/>
<attribute name="CONTRACT_NUMBER" label="CONTRACT_NUMBER" type="STRING"/>
<attribute name="CONTRACT_STATUS" label="CONTRACT_STATUS" type="STRING"/>
<attribute name="PRODUCT_NAME" label="PRODUCT_NAME" type="STRING"/>
<attribute name="PRODUCT_ID" label="PRODUCT_ID" type="STRING"/>
<attribute name="PROJECT_ID" label="PROJECT_ID" type="STRING"/>
<attribute name="PROJECT_DATE" label="PROJECT_DATE" type="STRING"/>
<attribute name="PROJECT_NAME" label="PROJECT_NAME" type="STRING"/>
<attribute name="PROJECT_TYPE" label="PROJECT_TYPE" type="STRING"/>
<attribute name="RENT_METHOD" label="RENT_METHOD" type="STRING"/>
<attribute name="PROJECT_SOURCE" label="PROJECT_SOURCE" type="STRING"/>
<attribute name="PROJECT_INDUSTRY" label="PROJECT_INDUSTRY" type="STRING"/>
<attribute name="LEAS_FORM" label="LEAS_FORM" type="STRING"/>
<attribute name="LEASE_FORM" label="LEASE_FORM" type="STRING"/>
<attribute name="PROJECT_DEPT" label="PROJECT_DEPT" type="STRING"/>
<attribute name="PROJECT_REGISTRAR" label="PROJECT_REGISTRAR" type="STRING"/>
<attribute name="PROJECT_MANAGE" label="PROJECT_MANAGE" type="STRING"/>
<attribute name="PROJECT_ASSIST" label="PROJECT_ASSIST" type="STRING"/>
<attribute name="END_DATE" label="END_DATE" type="STRING"/>
<attribute name="START_DATE" label="START_DATE" type="STRING"/>
<attribute name="ACTUAL_START_DATE" label="ACTUAL_START_DATE" type="STRING"/>
<attribute name="ACTUAL_END_DATE" label="ACTUAL_END_DATE" type="STRING"/>
<attribute name="ACCOUNTING_START_DATE" label="ACCOUNTING_START_DATE" type="STRING"/>
<attribute name="FIVE_CATALOG" label="FIVE_CATALOG" type="STRING"/>
<attribute name="FIVE_CATALOG_DATE" label="FIVE_CATALOG_DATE" type="STRING"/>
<attribute name="FIVE_CATALOG_MEMO" label="FIVE_CATALOG_MEMO" type="STRING"/>
<attribute name="SIGN_PLACE" label="SIGN_PLACE" type="STRING"/>
<attribute name="SIGN_DATE" label="SIGN_DATE" type="STRING"/>
<attribute name="SIGN_PEOPLE" label="SIGN_PEOPLE" type="STRING"/>
<attribute name="OTHER_CONDITION" label="OTHER_CONDITION" type="STRING"/>
<attribute name="FLOWUNID" label="FLOWUNID" type="STRING"/>
<attribute name="INPUTUSERID" label="INPUTUSERID" type="STRING"/>
<attribute name="INPUTORGID" label="INPUTORGID" type="STRING"/>
<attribute name="INPUTTIME" label="INPUTTIME" type="STRING"/>
<attribute name="UPDATEUSERID" label="UPDATEUSERID" type="STRING"/>
<attribute name="UPDATEORGID" label="UPDATEORGID" type="STRING"/>
<attribute name="UPDATETIME" label="UPDATETIME" type="STRING"/>
<attribute name="DATA_STATE" label="DATA_STATE" type="STRING"/>
<attribute name="MODIFY_REASON" label="MODIFY_REASON" type="STRING"/>
<attribute name="ISFILEARCHIVED" label="ISFILEARCHIVED" type="STRING"/>
<attribute name="IS_PRINT" label="IS_PRINT" type="STRING"/>
<attribute name="ASSET_TYPE" label="ASSET_TYPE" type="STRING"/>
<attribute name="RENT_INVOICE_TYPE" label="RENT_INVOICE_TYPE" type="STRING"/>
<attribute name="INVOICE_MEMO" label="INVOICE_MEMO" type="STRING"/>
<attribute name="CONTRACT_INVOICE_STATUS" label="CONTRACT_INVOICE_STATUS" type="STRING"/>
<attribute name="seal_type" label="seal_type" type="STRING"/>
<attribute name="mortgage_agent" label="mortgage_agent" type="STRING"/>
<attribute name="VERSIONID" label="VERSIONID" type="STRING"/>
<attribute name="BUSINESSTYPE" label="BUSINESSTYPE" type="STRING"/>
<attribute name="AREA_CODE" label="AREA_CODE" type="STRING"/>
<attribute name="CAR_TYPE" label="CAR_TYPE" type="STRING"/>
<attribute name="LENDING_TYPE" label="LENDING_TYPE" type="STRING"/>
<attribute name="inputName" label="inputName" type="STRING"/>
<attribute name="inputTel" label="inputTel" type="STRING"/>
<attribute name="HaveCommission" label="HaveCommission" type="STRING"/>
<attribute name="IS_NETCAR" label="IS_NETCAR" type="STRING"/>
<attribute name="IS_OPERATION" label="IS_OPERATION" type="STRING"/>
<attribute name="IS_AFFILIATED" label="IS_AFFILIATED" type="STRING"/>
<attribute name="IS_OPERATION_QUALIFICATION" label="IS_OPERATION_QUALIFICATION" type="STRING"/>
<attribute name="TRANSPORTCERTID" label="TRANSPORTCERTID" type="STRING"/>
<attribute name="AFFILIATEDNAME" label="AFFILIATEDNAME" type="STRING"/>
<attribute name="NETCERTNAME" label="NETCERTNAME" type="STRING"/>
<attribute name="LEGALPERSONNAME" label="LEGALPERSONNAME" type="STRING"/>
<attribute name="AFFILIATEDDATE" label="AFFILIATEDDATE" type="STRING"/>
<attribute name="AFFILIATEDENDDATE" label="AFFILIATEDENDDATE" type="STRING"/>
<attribute name="REGISTEREDMONEY" label="REGISTEREDMONEY" type="STRING"/>
<attribute name="AFFILIATEDACTUALADDRESS" label="AFFILIATEDACTUALADDRESS" type="STRING"/>
<attribute name="AFFILIATEDADDRESS" label="AFFILIATEDADDRESS" type="STRING"/>
<attribute name="TRANSPORTDATE" label="TRANSPORTDATE" type="STRING"/>
<attribute name="NETCERTID" label="NETCERTID" type="STRING"/>
<attribute name="LEGALPERSONID" label="LEGALPERSONID" type="STRING"/>
<attribute name="ASSETTRANSFERER" label="ASSETTRANSFERER" type="STRING"/>
<attribute name="TRANSFERDATE" label="TRANSFERDATE" type="STRING"/>
<attribute name="TURNOUTREMARKS" label="TURNOUTREMARKS" type="STRING"/>
<attribute name="has_gps" label="has_gps" type="STRING"/>
<attribute name="PROJECT_DEPT_DETAIL" label="PROJECT_DEPT_DETAIL" type="STRING"/>
<attribute name="ITEMNAME" label="ITEMNAME" type="STRING"/>
<attribute name="CUSTOMER_NAME" label="CUSTOMER_NAME" type="STRING"/>
<attribute name="FRAME_NUMBER" label="FRAME_NUMBER" type="STRING"/>
<attribute name="PROJECT_NO" label="PROJECT_NO" type="STRING"/>
<attribute name="mobile" label="mobile" type="STRING"/>
<attribute name="NAME" label="NAME" type="STRING"/>
<attribute name="VNDR_NAME" label="VNDR_NAME" type="STRING"/>
<attribute name="APPLYPAY_DATE" label="APPLYPAY_DATE" type="STRING"/>
<attribute name="START_DATE_NEW" label="START_DATE_NEW" type="STRING"/>
<attribute name="contract_stat" label="contract_stat" type="STRING"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="vi_business_affinfo" />
<property name="createKey" value="true" />
</managerProperties>
</manager>
</class>
</package>
<package name="jbo.com.tenwa.lease.carbrand" >
<class name="LB_CLAIMS_BOOK_DETAIL" label="索赔申请书详情表" keyAttributes="ID">

View File

@ -0,0 +1,368 @@
package jbo.com.tenwa.lease.comm;
import java.lang.String;
/**
* - JBO命名常量类<br><br>
* Note: This file is generated by ADE tools, <em>dont</em> modify it.<br>
*/
public interface VI_BUSINESS_AFFINFO{
/**
* <br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.com.tenwa.lease.comm.VI_BUSINESS_AFFINFO";
/**
* distributor_id STRING(20)<br>
*/
public static final String distributor_id = "distributor_id";
/**
* ID STRING(20)<br>
*/
public static final String ID = "ID";
/**
* CONTRACT_NO STRING(20)<br>
*/
public static final String CONTRACT_NO = "CONTRACT_NO";
/**
* CONTRACT_NUMBER STRING(20)<br>
*/
public static final String CONTRACT_NUMBER = "CONTRACT_NUMBER";
/**
* CONTRACT_STATUS STRING(20)<br>
*/
public static final String CONTRACT_STATUS = "CONTRACT_STATUS";
/**
* PRODUCT_NAME STRING(20)<br>
*/
public static final String PRODUCT_NAME = "PRODUCT_NAME";
/**
* PRODUCT_ID STRING(20)<br>
*/
public static final String PRODUCT_ID = "PRODUCT_ID";
/**
* PROJECT_ID STRING(20)<br>
*/
public static final String PROJECT_ID = "PROJECT_ID";
/**
* PROJECT_DATE STRING(20)<br>
*/
public static final String PROJECT_DATE = "PROJECT_DATE";
/**
* PROJECT_NAME STRING(20)<br>
*/
public static final String PROJECT_NAME = "PROJECT_NAME";
/**
* PROJECT_TYPE STRING(20)<br>
*/
public static final String PROJECT_TYPE = "PROJECT_TYPE";
/**
* RENT_METHOD STRING(20)<br>
*/
public static final String RENT_METHOD = "RENT_METHOD";
/**
* PROJECT_SOURCE STRING(20)<br>
*/
public static final String PROJECT_SOURCE = "PROJECT_SOURCE";
/**
* PROJECT_INDUSTRY STRING(20)<br>
*/
public static final String PROJECT_INDUSTRY = "PROJECT_INDUSTRY";
/**
* LEAS_FORM STRING(20)<br>
*/
public static final String LEAS_FORM = "LEAS_FORM";
/**
* LEASE_FORM STRING(20)<br>
*/
public static final String LEASE_FORM = "LEASE_FORM";
/**
* PROJECT_DEPT STRING(20)<br>
*/
public static final String PROJECT_DEPT = "PROJECT_DEPT";
/**
* PROJECT_REGISTRAR STRING(20)<br>
*/
public static final String PROJECT_REGISTRAR = "PROJECT_REGISTRAR";
/**
* PROJECT_MANAGE STRING(20)<br>
*/
public static final String PROJECT_MANAGE = "PROJECT_MANAGE";
/**
* PROJECT_ASSIST STRING(20)<br>
*/
public static final String PROJECT_ASSIST = "PROJECT_ASSIST";
/**
* END_DATE STRING(20)<br>
*/
public static final String END_DATE = "END_DATE";
/**
* START_DATE STRING(20)<br>
*/
public static final String START_DATE = "START_DATE";
/**
* ACTUAL_START_DATE STRING(20)<br>
*/
public static final String ACTUAL_START_DATE = "ACTUAL_START_DATE";
/**
* ACTUAL_END_DATE STRING(20)<br>
*/
public static final String ACTUAL_END_DATE = "ACTUAL_END_DATE";
/**
* ACCOUNTING_START_DATE STRING(20)<br>
*/
public static final String ACCOUNTING_START_DATE = "ACCOUNTING_START_DATE";
/**
* FIVE_CATALOG STRING(20)<br>
*/
public static final String FIVE_CATALOG = "FIVE_CATALOG";
/**
* FIVE_CATALOG_DATE STRING(20)<br>
*/
public static final String FIVE_CATALOG_DATE = "FIVE_CATALOG_DATE";
/**
* FIVE_CATALOG_MEMO STRING(20)<br>
*/
public static final String FIVE_CATALOG_MEMO = "FIVE_CATALOG_MEMO";
/**
* SIGN_PLACE STRING(20)<br>
*/
public static final String SIGN_PLACE = "SIGN_PLACE";
/**
* SIGN_DATE STRING(20)<br>
*/
public static final String SIGN_DATE = "SIGN_DATE";
/**
* SIGN_PEOPLE STRING(20)<br>
*/
public static final String SIGN_PEOPLE = "SIGN_PEOPLE";
/**
* OTHER_CONDITION STRING(20)<br>
*/
public static final String OTHER_CONDITION = "OTHER_CONDITION";
/**
* FLOWUNID STRING(20)<br>
*/
public static final String FLOWUNID = "FLOWUNID";
/**
* INPUTUSERID STRING(20)<br>
*/
public static final String INPUTUSERID = "INPUTUSERID";
/**
* INPUTORGID STRING(20)<br>
*/
public static final String INPUTORGID = "INPUTORGID";
/**
* INPUTTIME STRING(20)<br>
*/
public static final String INPUTTIME = "INPUTTIME";
/**
* UPDATEUSERID STRING(20)<br>
*/
public static final String UPDATEUSERID = "UPDATEUSERID";
/**
* UPDATEORGID STRING(20)<br>
*/
public static final String UPDATEORGID = "UPDATEORGID";
/**
* UPDATETIME STRING(20)<br>
*/
public static final String UPDATETIME = "UPDATETIME";
/**
* DATA_STATE STRING(20)<br>
*/
public static final String DATA_STATE = "DATA_STATE";
/**
* MODIFY_REASON STRING(20)<br>
*/
public static final String MODIFY_REASON = "MODIFY_REASON";
/**
* ISFILEARCHIVED STRING(20)<br>
*/
public static final String ISFILEARCHIVED = "ISFILEARCHIVED";
/**
* IS_PRINT STRING(20)<br>
*/
public static final String IS_PRINT = "IS_PRINT";
/**
* ASSET_TYPE STRING(20)<br>
*/
public static final String ASSET_TYPE = "ASSET_TYPE";
/**
* RENT_INVOICE_TYPE STRING(20)<br>
*/
public static final String RENT_INVOICE_TYPE = "RENT_INVOICE_TYPE";
/**
* INVOICE_MEMO STRING(20)<br>
*/
public static final String INVOICE_MEMO = "INVOICE_MEMO";
/**
* CONTRACT_INVOICE_STATUS STRING(20)<br>
*/
public static final String CONTRACT_INVOICE_STATUS = "CONTRACT_INVOICE_STATUS";
/**
* seal_type STRING(20)<br>
*/
public static final String seal_type = "seal_type";
/**
* mortgage_agent STRING(20)<br>
*/
public static final String mortgage_agent = "mortgage_agent";
/**
* VERSIONID STRING(20)<br>
*/
public static final String VERSIONID = "VERSIONID";
/**
* BUSINESSTYPE STRING(20)<br>
*/
public static final String BUSINESSTYPE = "BUSINESSTYPE";
/**
* AREA_CODE STRING(20)<br>
*/
public static final String AREA_CODE = "AREA_CODE";
/**
* CAR_TYPE STRING(20)<br>
*/
public static final String CAR_TYPE = "CAR_TYPE";
/**
* LENDING_TYPE STRING(20)<br>
*/
public static final String LENDING_TYPE = "LENDING_TYPE";
/**
* inputName STRING(20)<br>
*/
public static final String inputName = "inputName";
/**
* inputTel STRING(20)<br>
*/
public static final String inputTel = "inputTel";
/**
* HaveCommission STRING(20)<br>
*/
public static final String HaveCommission = "HaveCommission";
/**
* IS_NETCAR STRING(20)<br>
*/
public static final String IS_NETCAR = "IS_NETCAR";
/**
* IS_OPERATION STRING(20)<br>
*/
public static final String IS_OPERATION = "IS_OPERATION";
/**
* IS_AFFILIATED STRING(20)<br>
*/
public static final String IS_AFFILIATED = "IS_AFFILIATED";
/**
* IS_OPERATION_QUALIFICATION STRING(20)<br>
*/
public static final String IS_OPERATION_QUALIFICATION = "IS_OPERATION_QUALIFICATION";
/**
* TRANSPORTCERTID STRING(20)<br>
*/
public static final String TRANSPORTCERTID = "TRANSPORTCERTID";
/**
* AFFILIATEDNAME STRING(20)<br>
*/
public static final String AFFILIATEDNAME = "AFFILIATEDNAME";
/**
* NETCERTNAME STRING(20)<br>
*/
public static final String NETCERTNAME = "NETCERTNAME";
/**
* LEGALPERSONNAME STRING(20)<br>
*/
public static final String LEGALPERSONNAME = "LEGALPERSONNAME";
/**
* AFFILIATEDDATE STRING(20)<br>
*/
public static final String AFFILIATEDDATE = "AFFILIATEDDATE";
/**
* AFFILIATEDENDDATE STRING(20)<br>
*/
public static final String AFFILIATEDENDDATE = "AFFILIATEDENDDATE";
/**
* REGISTEREDMONEY STRING(20)<br>
*/
public static final String REGISTEREDMONEY = "REGISTEREDMONEY";
/**
* AFFILIATEDACTUALADDRESS STRING(20)<br>
*/
public static final String AFFILIATEDACTUALADDRESS = "AFFILIATEDACTUALADDRESS";
/**
* AFFILIATEDADDRESS STRING(20)<br>
*/
public static final String AFFILIATEDADDRESS = "AFFILIATEDADDRESS";
/**
* TRANSPORTDATE STRING(20)<br>
*/
public static final String TRANSPORTDATE = "TRANSPORTDATE";
/**
* NETCERTID STRING(20)<br>
*/
public static final String NETCERTID = "NETCERTID";
/**
* LEGALPERSONID STRING(20)<br>
*/
public static final String LEGALPERSONID = "LEGALPERSONID";
/**
* ASSETTRANSFERER STRING(20)<br>
*/
public static final String ASSETTRANSFERER = "ASSETTRANSFERER";
/**
* TRANSFERDATE STRING(20)<br>
*/
public static final String TRANSFERDATE = "TRANSFERDATE";
/**
* TURNOUTREMARKS STRING(20)<br>
*/
public static final String TURNOUTREMARKS = "TURNOUTREMARKS";
/**
* has_gps STRING(20)<br>
*/
public static final String has_gps = "has_gps";
/**
* PROJECT_DEPT_DETAIL STRING(20)<br>
*/
public static final String PROJECT_DEPT_DETAIL = "PROJECT_DEPT_DETAIL";
/**
* ITEMNAME STRING(20)<br>
*/
public static final String ITEMNAME = "ITEMNAME";
/**
* CUSTOMER_NAME STRING(20)<br>
*/
public static final String CUSTOMER_NAME = "CUSTOMER_NAME";
/**
* FRAME_NUMBER STRING(20)<br>
*/
public static final String FRAME_NUMBER = "FRAME_NUMBER";
/**
* PROJECT_NO STRING(20)<br>
*/
public static final String PROJECT_NO = "PROJECT_NO";
/**
* mobile STRING(20)<br>
*/
public static final String mobile = "mobile";
/**
* NAME STRING(20)<br>
*/
public static final String NAME = "NAME";
/**
* VNDR_NAME STRING(20)<br>
*/
public static final String VNDR_NAME = "VNDR_NAME";
/**
* APPLYPAY_DATE STRING(20)<br>
*/
public static final String APPLYPAY_DATE = "APPLYPAY_DATE";
/**
* START_DATE_NEW STRING(20)<br>
*/
public static final String START_DATE_NEW = "START_DATE_NEW";
/**
* contract_stat STRING(20)<br>
*/
public static final String contract_stat = "contract_stat";
}

View File

@ -147,7 +147,7 @@ insert into `class_method` (`classname`, `methodname`, `methodtype`, `methoddesc
-- 扣款卡变更流程中添加方法
delete from FLOW_MODEL where flowno='AccountChangeFlow';
insert into `FLOW_MODEL` (`flowno`, `phaseno`, `phasetype`, `phasename`, `phasedescribe`, `phaseattribute`, `prescript`, `initscript`, `choicedescribe`, `choicescript`, `actiondescribe`, `actionscript`, `postscript`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `attribute9`, `attribute10`, `aaenabled`, `aapointinitscript`, `aapointcomp`, `aapointcompurl`, `standardtime1`, `standardtime2`, `costlob`, `strips`, `checklist`, `decisionscript`, `riskscanrule`, `buttonset2`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `distributerule`, `id`, `type`, `name`, `xcoordinate`, `ycoordinate`, `width`, `height`, `version`, `swimlane`, `nodetype`, `flowphasecontext`, `OPINIONSREQUIRED`, `isreadonly`, `flowpageconfig`, `flowprocessclass`, `flowpagecheck`, `backstepnexttype`, `backsteps`, `backscript`, `deletescript`, `phasescript`, `loadproductcheck`, `nextsteps`, `flowtiptype`, `remindnoticttype`, `flowoverdate`, `overnoticetype`, `overnoticeUser`) values('AccountChangeFlow','0010','1010','资管业务',NULL,NULL,'!基础操作.扣款卡信息正式到变更(#ObjectNo)+!基础操作.合同基本信息从正式到临时(#ObjectNo)+!审批流程.微信提交信息变更发起流程修改状态(#ObjectNo)','{#UserID}',NULL,'selectroute',NULL,NULL,'#PhaseOpinion1','closePage,doSubmit,signOpinion',NULL,'all_except','ProjectApproval',NULL,NULL,'01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'234','128','105','50','1',NULL,'TASK',NULL,'Y','N','AccountChangeFlow0010','if(\"03\".equals(fixedParam.get(\"CustomerType\"))){\r\nTreeView.deleteNode(\"扣款法人信息变更\");\r\nTreeView.deleteNode(\"法人收付款信息\");\r\nTreeView.updateNodeName(\"扣款自然人信息变更\",\"扣款信息变更\");\r\n}else{\r\nTreeView.deleteNode(\"收付款信息\");\r\nTreeView.deleteNode(\"扣款自然人信息变更\");\r\nTreeView.updateNodeName(\"扣款法人信息变更\",\"扣款信息变更\");\r\n}\r\nTreeView.updateNodeSetReadOnly(\"扣款信息变更\",\"\");','TreeView.deleteCheckItemByCode(\"0004\")',NULL,NULL,NULL,'!审批流程.扣款卡信息流程发起后取消(#ObjectNo)',NULL,'N','[{stepno:\"结束(1000)\",stepcondition:\"提交给结束\"},{stepno:\"否决(8000)\",stepcondition:\"提交给否决\"}]',NULL,NULL,NULL,NULL,NULL);
insert into `FLOW_MODEL` (`flowno`, `phaseno`, `phasetype`, `phasename`, `phasedescribe`, `phaseattribute`, `prescript`, `initscript`, `choicedescribe`, `choicescript`, `actiondescribe`, `actionscript`, `postscript`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `attribute9`, `attribute10`, `aaenabled`, `aapointinitscript`, `aapointcomp`, `aapointcompurl`, `standardtime1`, `standardtime2`, `costlob`, `strips`, `checklist`, `decisionscript`, `riskscanrule`, `buttonset2`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `distributerule`, `id`, `type`, `name`, `xcoordinate`, `ycoordinate`, `width`, `height`, `version`, `swimlane`, `nodetype`, `flowphasecontext`, `OPINIONSREQUIRED`, `isreadonly`, `flowpageconfig`, `flowprocessclass`, `flowpagecheck`, `backstepnexttype`, `backsteps`, `backscript`, `deletescript`, `phasescript`, `loadproductcheck`, `nextsteps`, `flowtiptype`, `remindnoticttype`, `flowoverdate`, `overnoticetype`, `overnoticeUser`) values('AccountChangeFlow','1000','1040','结束',NULL,NULL,'!基础操作.扣款卡信息变更到正式(#ObjectNo)+!基础操作.新增业务消息提醒(#ObjectNo)+!审批流程.微信提交信息变更发起流程通过(#ObjectNo)','{\"system\"}',NULL,'commroute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'01',NULL,NULL,'[{usertype:\"指定角色\",userinfo:\"800R00000016,业务二部运营专员初审\"}]',NULL,NULL,NULL,NULL,'0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'189','287','50','50','1',NULL,'END',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `FLOW_MODEL` (`flowno`, `phaseno`, `phasetype`, `phasename`, `phasedescribe`, `phaseattribute`, `prescript`, `initscript`, `choicedescribe`, `choicescript`, `actiondescribe`, `actionscript`, `postscript`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `attribute9`, `attribute10`, `aaenabled`, `aapointinitscript`, `aapointcomp`, `aapointcompurl`, `standardtime1`, `standardtime2`, `costlob`, `strips`, `checklist`, `decisionscript`, `riskscanrule`, `buttonset2`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `distributerule`, `id`, `type`, `name`, `xcoordinate`, `ycoordinate`, `width`, `height`, `version`, `swimlane`, `nodetype`, `flowphasecontext`, `OPINIONSREQUIRED`, `isreadonly`, `flowpageconfig`, `flowprocessclass`, `flowpagecheck`, `backstepnexttype`, `backsteps`, `backscript`, `deletescript`, `phasescript`, `loadproductcheck`, `nextsteps`, `flowtiptype`, `remindnoticttype`, `flowoverdate`, `overnoticetype`, `overnoticeUser`) VALUES('AccountChangeFlow','1000','1040','结束',NULL,NULL,'!基础操作.新增业务消息提醒(#ObjectNo)+!审批流程.微信提交信息变更发起流程通过(#ObjectNo)','{\"system\"}',NULL,'commroute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'01',NULL,NULL,'[{usertype:\"指定角色\",userinfo:\"800R00000016,业务二部运营专员初审\"}]',NULL,NULL,NULL,NULL,'0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'153','267','50','50','1',NULL,'END',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
insert into `FLOW_MODEL` (`flowno`, `phaseno`, `phasetype`, `phasename`, `phasedescribe`, `phaseattribute`, `prescript`, `initscript`, `choicedescribe`, `choicescript`, `actiondescribe`, `actionscript`, `postscript`, `attribute1`, `attribute2`, `attribute3`, `attribute4`, `attribute5`, `attribute6`, `attribute7`, `attribute8`, `attribute9`, `attribute10`, `aaenabled`, `aapointinitscript`, `aapointcomp`, `aapointcompurl`, `standardtime1`, `standardtime2`, `costlob`, `strips`, `checklist`, `decisionscript`, `riskscanrule`, `buttonset2`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `distributerule`, `id`, `type`, `name`, `xcoordinate`, `ycoordinate`, `width`, `height`, `version`, `swimlane`, `nodetype`, `flowphasecontext`, `OPINIONSREQUIRED`, `isreadonly`, `flowpageconfig`, `flowprocessclass`, `flowpagecheck`, `backstepnexttype`, `backsteps`, `backscript`, `deletescript`, `phasescript`, `loadproductcheck`, `nextsteps`, `flowtiptype`, `remindnoticttype`, `flowoverdate`, `overnoticetype`, `overnoticeUser`) values('AccountChangeFlow','8000','1050','否决',NULL,NULL,'!审批流程.微信提交信息变更发起流程否决(#ObjectNo)','{\"system\"}',NULL,'commroute',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'313','289','50','50','1',NULL,'END',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
-- 提前结清
@ -279,8 +279,51 @@ Insert Into SCENARIO_RELATIVE (scenarioid,groupid,modelid) Values ('ʵ
Insert Into Code_Library (codeno,itemno,itemname,bankno,sortno,isinuse,itemdescribe,itemattribute,relativecode,attribute1,attribute2,attribute3,attribute4,attribute5,attribute6,attribute7,attribute8,inputuser,inputorg,inputtime,updateuser,updatetime,remark,helptext) Values ('MissionName','com.tenwa.lease.app.quartzmession.SelectActualPaymentDate','自动获取实际支付日期','','0550','1','自动获取实际支付日期','','','','','','','','','','','SYS_Designer',null,'2019/12/18 15:50:19','SYS_Designer','2019/12/18 15:50:19','','');
-- 合同新查询优化
Insert Into AWE_DO_CATALOG (dono,doname,dodescribe,dotype,doclass,isinuse,colcount,modeid,jboclass,jbofrom,jbowhere,jbogroup,jboorder,businessprocess,exportflag,inputuser,inputtime,updateuser,updatetime,remark,isvalidate,parent) Values ('ViBusinessAffinfo','项目总表--合同基本信息总表',null,'30',null,'1','2','default','jbo.com.tenwa.lease.comm.VI_BUSINESS_AFFINFO','O','O.businesstype=''1''','','','',null,'SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:28:51','','1','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1000','1000','1','O','id','id','String','','标识符','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:28:51','','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1001','1002','1','O','project_id','project_id','String','','项目编号id','','1','Text','1','1','','','',null,'0','1','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:28:51','0','','0','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','10010','10010','1','O','CUSTOMER_NAME','CUSTOMER_NAME','String','','客户名称','','1','Text','1','1','','','','200','1','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:29:35','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','10015','10015','1','O','PROJECT_NO','PROJECT_NO','String','','申请编号','','1','Text','1','1','','','','32','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Equals,Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1002','1001','1','O','contract_stat','contract_stat','String','','合同状态','','1','Text','1','1','','','','20','1','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 15:09:29','SYS_Designer','2019/12/17 15:35:55','','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1010','1010','1','O','contract_no','contract_no','String','','合同号','','1','Text','1','1','','','','50','1','1','0','1','1',1,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1020','1020','1','O','contract_number','contract_number','String','','业务合同编号','','1','Text','1','1','','','','50','0','0','0','1','0',1,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1040','1040','1','O','project_name','project_name','String','','业务名称','','1','Text','1','1','','','style={width:802;} onBlur=\"javascript:setProjectName()\"','200','1','1','0','1','0',2,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1190','1190','1','O','project_type','project_type','String','','项目类型','','1','Select','1','1','Code','related','','32','0','0','0','1','0',1,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1210','1210','1','O','project_source','project_source','String','','项目来源','','1','Select','1','1','Code','cust_source','','32','0','0','0','1','0',2,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1220','1220','1','O','project_industry','project_industry','String','','内部行业','','1','Select','1','1','Code','cust_kind','','32','0','0','0','1','0',1,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1240','1240','1','O','leas_form','leas_form','String','','租赁形式','','1','Select','1','1','Code','leas_form','','32','1','0','0','1','0',1,'0','0010','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1260','1260','1','O','project_dept','project_dept','String','','项目出单部门id','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1261','1261','1','O','project_dept_detail','project_dept_detail','String','','项目出单部门','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','0010','proj_dept','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','0','','','selectOrg()','Equals,Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1270','1270','1','O','project_registrar','project_registrar','String','','经办人id','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1271','1271','1','','NameManager.getUserName(project_registrar)','project_registrarname','String','','经办人','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','0010','proj_registrar','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','selectRegisterUser()','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1281','1281','1','','NameManager.getUserName(project_manage)','project_managename','String','','项目经理','','1','Text','1','1','','','','32','1','1','0','1','0',1,'0','0010','proj_manage','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','0','','','selectManageUser()','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1290','1290','1','O','project_assist','project_assist','String','','项目协办id','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1291','1291','1','','NameManager.getUserName(project_assist)','project_assistname','String','','项目协办','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','0010','proj_assist','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','0','','','selectAssistUser()','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1310','1310','1','O','InputUserID','InputUserID','String','','登记人','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1320','1320','1','O','UpdateUserID','UpdateUserID','String','','更新人','','1','Text','1','1','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1321','1321','1','O','InputTime','InputTime','String','','登记时间','','1','Text','1','2','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1322','1322','1','O','UpdateTime','UpdateTime','String','','更新时间','','1','Text','1','2','','','','32','0','0','0','1','0',1,'0','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1323','1323','1','O','flowunid','flowunid','String','','流程标识','','1','Text','1','1','','','','32','0','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1325','1325','1','O','project_manage','project_manage','String','','项目经理id','','1','Text','1','1','','','','32','0','0','0','1','0',1,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1326','1003','1','','com.tenwa.flow.util.FlowInfoUtil.getProjectNo(project_id)','proj_idno','String','','业务编号','','1','Text','1','1','','','',null,'0','1','0','1','0',1,'','0010','proj_id','SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:28:51','0','','0','','','','Equals,Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','1328','1004','1','O','project_date','project_date','String','','申请日期','','1','Text','1','1','','','','32','1','1','0','1','0',1,'','0010','','SYS_Designer','2019/12/17 11:18:14','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14020','14020','1','O','CONTRACT_STATUS','CONTRACT_STATUS','String','','合同状态','','1','Text','1','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14025','14025','1','O','PROJECT_NO','PROJECT_NO','String','','申请号','','1','Text','1','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14030','14030','1','O','CONTRACT_NUMBER','CONTRACT_NUMBER','String','','合同号','','1','Text','1','1','','','','20','0','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14035','14035','1','O','CUSTOMER_NAME','CUSTOMER_NAME','String','','承租人','','1','Text','1','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:29:48','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14040','14040','1','O','FRAME_NUMBER','FRAME_NUMBER','String','','车架号','','1','Text','1','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14045','14045','1','O','mobile','mobile','String','','手机号','','1','Text','1','1','','','','20','1','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14050','14050','1','O','name','name','String','','共同承租人','','1','Text','1','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14055','14055','1','O','VNDR_NAME','VNDR_NAME','String','','经销商/SP','','1','Text','1','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14060','14060','1','O','APPLYPAY_DATE','APPLYPAY_DATE','String','','放款申请时间','','1','Text','1','1','','','','20','1','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Like');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14065','14065','1','O','START_DATE','START_DATE','String','','起租日','','1','Date','3','1','','','','20','1','0','0','1','1',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','0','','1','','','','Area');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14070','14070','1','O','ITEMNAME','ITEMNAME','String','','所属渠道','','1','Text','1','1','','','','32','1','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','','','1','','','','');
Insert Into awe_do_library (dono,colindex,sortno,isinuse,coltablename,colactualname,colname,coltype,coldefaultvalue,colheader,colunit,colcolumntype,coleditstyle,colcheckformat,colalign,coleditsourcetype,coleditsource,colhtmlstyle,collimit,colvisible,colreadonly,colrequired,colsortable,isfilter,colspan,isautocomplete,groupid,colfilterrefid,inputuser,inputtime,updateuser,updatetime,isaudit,colfilterattrs,isupdate,parentcolindex,tips,colinnerbtevent,colfilteroptions) Values ('ViBusinessAffinfo','14075','14075','1','O','PRODUCT_ID','PRODUCT_ID','String','','PRODUCT_ID','','1','Text','1','1','','','','32','0','0','0','1','0',0,'','','','SYS_Designer','2019/12/17 11:18:15','SYS_Designer','2019/12/17 11:28:51','','','1','','','','');
-- 扣款复核页面
delete from awe_do_catalog where dono='ViLcReviewAuditRentPlanList';
insert into `awe_do_catalog` (`dono`, `doname`, `dodescribe`, `dotype`, `doclass`, `isinuse`, `colcount`, `modeid`, `jboclass`, `jbofrom`, `jbowhere`, `jbogroup`, `jboorder`, `businessprocess`, `exportflag`, `inputuser`, `inputtime`, `updateuser`, `updatetime`, `remark`, `isvalidate`, `parent`) values('ViLcReviewAuditRentPlanList','代收复审列表',NULL,'30030',NULL,'1','1','default','jbo.com.tenwa.lease.comm.VI_LC_AUDIT_RENT_PLAN','O','v.date_format(O.PLAN_DATE,\'%Y/%m/%d\') <= v.date_format(v.sysdate(),\'%Y/%m/%d\') AND O.COLLECT_STATUS IN (\'\',\'\',\'\') AND NOT EXISTS (SELECT 1 FROM jbo.app.tenwa.customer.DEDUCTIONS_WAY dw WHERE dw.Whether_to_enable=\'Y\' AND O.distributor_id=dw.distributor_id) AND NOT EXISTS (SELECT 1 FROM jbo.com.tenwa.lease.comm.LC_OCCUPY_RENT_LIST lorl WHERE LEFT(lorl.payment_number,20)=O.contract_number AND lorl.flow_name IN (\'\',\'\'))','','plan_date','',NULL,'SYS_Designer','2018/06/08 16:19:46','SYS_Designer','2019/08/09 15:31:10','','1','');

File diff suppressed because it is too large Load Diff