添加罚息减免流程判断条件

This commit is contained in:
tangfutang 2020-03-20 20:57:10 +08:00
parent 7b3bc43b5d
commit 6d3ad4ac15
5 changed files with 246 additions and 58 deletions

View File

@ -156,5 +156,13 @@ insert into `class_method` (`classname`, `methodname`, `methodtype`, `methoddesc
delete from FLOW_MODEL where FlowNo='FundPaymentCarFlow' AND PhaseNo='1000';
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('FundPaymentCarFlow','1000','1040','通过',NULL,NULL,'!基础操作.投放层资金付款临时到正式表(#ObjectNo)+!基础操作.合同基本信息从临时到正式(#ObjectNo)+!通用流程操作.保存项目进度状态(#ObjectNo,21)+!基础操作.接口平台业务通过审批意见推送入表(#ObjectNo)+!审批流程.发票信息表从临时到正式表(#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,'287','472','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 SCENARIO_MODEL (scenarioid,modelid,sortno,modelname,modeldescribe,modeltype,subtypeno,runcondition,STATUS,nopassdeal,passdeal,passmessage,nopassmessage,executescript,remark,inputuser,inputorg,inputtime,updateuser,updatetime,groupid,modelkind,bizviewer) VALUES ('付款申请(汽车)','0040','0040','发票信息是否填写','','20','','','1','10',NULL,'发票信息已填写','请先填写发票信息','SELECT CASE WHEN id IS NOT NULL THEN ''true'' ELSE ''false'' END FROM lb_Invoice_info_temp WHERE flow_unid=''#{ObjectNo}''','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO SCENARIO_RELATIVE (scenarioid,groupid,modelid) VALUES ('付款申请(汽车)','0020','0040');
-- 添加罚息减免判断条件方法
insert into `class_method` (`classname`, `methodname`, `methodtype`, `methoddescribe`, `returntype`, `methodargs`, `methodcode`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`) values('审批流程','罚息减免流程判断大于100元','Bizlet','罚息减免流程判断大于100元','String','String ObjectNo','com.tenwa.lease.flow.project.businessapply.JudgmentPenaltyAdjustMoneyGreater','','','','','','');
insert into `class_method` (`classname`, `methodname`, `methodtype`, `methoddescribe`, `returntype`, `methodargs`, `methodcode`, `inputuser`, `inputorg`, `inputtime`, `updateuser`, `updatetime`, `remark`) values('审批流程','罚息减免流程判断小于等于100元','Bizlet','罚息减免流程判断小于等于100元','String','String ObjectNo','com.tenwa.lease.flow.project.businessapply.JudgmentPenaltyAdjustMoneyLess','','','','','','');

View File

@ -2,8 +2,10 @@ package com.tenwa.apzl.comm;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.amarsoft.are.jbo.BizObject;
import com.amarsoft.are.jbo.JBOTransaction;
@ -40,9 +42,10 @@ public class BillstopayImport extends BaseImportExcelCallBack{
*/
List<Map<String, String>> list = new ArrayList<Map<String,String>>();
Map<String, String> map = new HashMap<String, String>();
List<String> arrayList = new ArrayList<String>();
for(BizObject bo:importObjects){
WX_order_number=bo.getAttribute("WX_order_number").getString();
arrayList.add(WX_order_number);
// 通过本次excel中的数据查询导入的表, 判断是否重复
sql1="SELECT WX_order_number FROM wx_pay_the_bills WHERE WX_order_number='"+WX_order_number+"'";
List<Map<String, String>> dataList = DataOperatorUtil.getDataBySql(Sqlca, sql1, null);
@ -56,5 +59,19 @@ public class BillstopayImport extends BaseImportExcelCallBack{
error = error.substring(1);
throw new BusinessException(error+"已存在 ");
}
long count = arrayList.stream().distinct().count();
boolean isRepeat = count < arrayList.size();
if(isRepeat){
Set<String> set = new HashSet<>();
Set<String> exist = new HashSet<>();
for (String s : arrayList) {
if (set.contains(s)) {
exist.add(s);
} else {
set.add(s);
}
}
throw new BusinessException("excl中的微信订单号:"+String.join(", ", exist)+"重复。");
}
}
}

View File

@ -0,0 +1,33 @@
package com.tenwa.lease.flow.project.businessapply;
import java.util.List;
import java.util.Map;
import com.amarsoft.awe.util.Transaction;
import com.tenwa.comm.util.jboutil.DataOperatorUtil;
import com.tenwa.flow.baseBussion.BaseBussiness;
public class JudgmentPenaltyAdjustMoneyGreater extends BaseBussiness {
@Override
public Object run(Transaction Sqlca) throws Exception {
this.initBussinessParam(Sqlca);
String flowUnid=this.getAttribute("ObjectNo").toString();
String sql = "SELECT SUM(PENALTY_ADJUST) penaltyAdjustMoney FROM LC_RENT_INCOME_TEMP WHERE FLOWUNID='"+flowUnid+"'";
List<Map<String, String>> penaltyAdjustMoney = DataOperatorUtil.getDataBySql(Sqlca, sql , null );
String sMessage="";
Double money = 0.0;
if(penaltyAdjustMoney.size() > 0){
money=Double.parseDouble(penaltyAdjustMoney.get(0).get("penaltyAdjustMoney"));
}
if(money > 100){//´óÓÚ100
sMessage="true";
}else {
sMessage="false";
}
return sMessage;
}
}

View File

@ -0,0 +1,32 @@
package com.tenwa.lease.flow.project.businessapply;
import java.util.List;
import java.util.Map;
import com.amarsoft.awe.util.Transaction;
import com.tenwa.comm.util.jboutil.DataOperatorUtil;
import com.tenwa.flow.baseBussion.BaseBussiness;
public class JudgmentPenaltyAdjustMoneyLess extends BaseBussiness {
@Override
public Object run(Transaction Sqlca) throws Exception {
this.initBussinessParam(Sqlca);
String flowUnid=this.getAttribute("ObjectNo").toString();
String sql = "SELECT SUM(PENALTY_ADJUST) penaltyAdjustMoney FROM LC_RENT_INCOME_TEMP WHERE FLOWUNID='"+flowUnid+"'";
List<Map<String, String>> penaltyAdjustMoney = DataOperatorUtil.getDataBySql(Sqlca, sql , null );
String sMessage="";
Double money = 0.0;
if(penaltyAdjustMoney.size() > 0){
money=Double.parseDouble(penaltyAdjustMoney.get(0).get("penaltyAdjustMoney"));
}
if(money <= 100){//СÓÚ100
sMessage="true";
}else {
sMessage="false";
}
return sMessage;
}
}

View File

@ -36,6 +36,7 @@
<reportDataSource>2c9023815726a036015726a496b00001</reportDataSource>
<queryType>COMPLEXSQL</queryType>
<sql>SELECT
lpi.subjectname,
LPI.PROJECT_NO,
LCI.CONTRACT_NUMBER,
DI.DISTRIBUTOR_NAME,
@ -90,7 +91,8 @@
LEC.MODEL AS MODEL2,
'' AS '是否有保险',
'' AS '保险公司名称',
'' AS '保险到期日'
'' AS '保险到期日' ,
LEC.LICENSE_PLATE_NUMBER AS LICENSE_PLATE_NUMBER,lii.Invoice_number AS Invoice_number,lii.Invoice_money AS Invoice_money,lii.Invoice_date AS Invoice_date
FROM
(SELECT ID,DISTRIBUTOR_ID,CONTRACT_NUMBER FROM LB_CONTRACT_INFO WHERE BUSINESSTYPE='1' AND CONTRACT_STATUS='31')LCI
LEFT JOIN
@ -132,9 +134,29 @@ LEFT JOIN
LEFT JOIN
VI_OVERDUE_CONTRACT2 VVC ON VVC.CONTRACT_ID=LFI.CONTRACT_ID
LEFT JOIN
LB_CAR_LICENSE_PLATE_INFO LCLPI ON LCLPI.CONTRACT_ID=LCI.ID </sql>
LB_CAR_LICENSE_PLATE_INFO LCLPI ON LCLPI.CONTRACT_ID=LCI.ID
LEFT JOIN lb_Invoice_info lii ON lii.contract_id=LUL.CONTRACT_ID</sql>
<sqlParamValue></sqlParamValue>
<columns>
<column>
<id>2c9c81b670f702ed0170f7fd7b910004</id>
<name>subjectname</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>主体</label>
<enLabel>subjectname</enLabel>
<width>100</width>
<position>0</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
<isCountSubTotal>false</isCountSubTotal>
<isGroupby>false</isGroupby>
<isMerge>false</isMerge>
<action></action>
<actionParamters></actionParamters>
<actionCondition></actionCondition>
</column>
<column>
<id>2c9c81b969188a33016f12e544190119</id>
<name>PROJECT_NO</name>
@ -143,7 +165,7 @@ LEFT JOIN
<label>申请编号</label>
<enLabel>PROJECT_NO</enLabel>
<width>100</width>
<position>55</position>
<position>1</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -162,7 +184,7 @@ LEFT JOIN
<label>合同编号</label>
<enLabel>CONTRACT_NUMBER</enLabel>
<width>100</width>
<position>56</position>
<position>2</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -181,7 +203,7 @@ LEFT JOIN
<label>经销商名称</label>
<enLabel>DISTRIBUTOR_NAME</enLabel>
<width>100</width>
<position>57</position>
<position>3</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -200,7 +222,7 @@ LEFT JOIN
<label>经销商省</label>
<enLabel>JXS_PROVINCE</enLabel>
<width>100</width>
<position>58</position>
<position>4</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -219,7 +241,7 @@ LEFT JOIN
<label>客户名称</label>
<enLabel>CUSTOMERNAME</enLabel>
<width>100</width>
<position>59</position>
<position>5</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -238,7 +260,7 @@ LEFT JOIN
<label>性别</label>
<enLabel>SEX</enLabel>
<width>100</width>
<position>60</position>
<position>6</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -257,7 +279,7 @@ LEFT JOIN
<label>证件类型</label>
<enLabel>CERTTYPE</enLabel>
<width>100</width>
<position>61</position>
<position>7</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -276,7 +298,7 @@ LEFT JOIN
<label>证件号码</label>
<enLabel>CERTID</enLabel>
<width>100</width>
<position>62</position>
<position>8</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -295,7 +317,7 @@ LEFT JOIN
<label>年龄</label>
<enLabel>AGE</enLabel>
<width>100</width>
<position>63</position>
<position>9</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -314,7 +336,7 @@ LEFT JOIN
<label>婚姻状况</label>
<enLabel>MARITAL_STATUS</enLabel>
<width>100</width>
<position>64</position>
<position>10</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -333,7 +355,7 @@ LEFT JOIN
<label>年收入</label>
<enLabel>YEAR_MONEY</enLabel>
<width>100</width>
<position>65</position>
<position>11</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -352,7 +374,7 @@ LEFT JOIN
<label>居住省份</label>
<enLabel>JZ_PROVINCE</enLabel>
<width>100</width>
<position>66</position>
<position>12</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -371,7 +393,7 @@ LEFT JOIN
<label>居住城市</label>
<enLabel>JZ_CITY</enLabel>
<width>100</width>
<position>67</position>
<position>13</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -390,7 +412,7 @@ LEFT JOIN
<label>户籍省份</label>
<enLabel>HJ_PROVINCE</enLabel>
<width>100</width>
<position>68</position>
<position>14</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -409,7 +431,7 @@ LEFT JOIN
<label>户籍城市</label>
<enLabel>HJ_CITY</enLabel>
<width>100</width>
<position>69</position>
<position>15</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -428,7 +450,7 @@ LEFT JOIN
<label>贷款金额</label>
<enLabel>FK_MONEY</enLabel>
<width>100</width>
<position>70</position>
<position>16</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -447,7 +469,7 @@ LEFT JOIN
<label>放款日期</label>
<enLabel>FK_DATE</enLabel>
<width>100</width>
<position>71</position>
<position>17</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -466,7 +488,7 @@ LEFT JOIN
<label>产品名称</label>
<enLabel>PRODUCT_NAME</enLabel>
<width>100</width>
<position>72</position>
<position>18</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -485,7 +507,7 @@ LEFT JOIN
<label>贷款利率</label>
<enLabel>YEAR_RATE</enLabel>
<width>100</width>
<position>73</position>
<position>19</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -504,7 +526,7 @@ LEFT JOIN
<label>贷款期限</label>
<enLabel>LEASE_TERM</enLabel>
<width>100</width>
<position>74</position>
<position>20</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -523,7 +545,7 @@ LEFT JOIN
<label>首付比例</label>
<enLabel>FIRST_PAYMENT_RATIO</enLabel>
<width>100</width>
<position>75</position>
<position>21</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -542,7 +564,7 @@ LEFT JOIN
<label>保证金比例</label>
<enLabel>CAUTION_MONEY_RATIO</enLabel>
<width>100</width>
<position>76</position>
<position>22</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -561,7 +583,7 @@ LEFT JOIN
<label>还款开户行</label>
<enLabel>REFUND_BANK</enLabel>
<width>100</width>
<position>77</position>
<position>23</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -580,7 +602,7 @@ LEFT JOIN
<label>还款账号</label>
<enLabel>REFUND_ACC_NUMBER</enLabel>
<width>100</width>
<position>78</position>
<position>24</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -599,7 +621,7 @@ LEFT JOIN
<label>还款频率</label>
<enLabel>REFUND_FREQUENCY</enLabel>
<width>100</width>
<position>79</position>
<position>25</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -618,7 +640,7 @@ LEFT JOIN
<label>还款方式</label>
<enLabel>REFUND_WAY</enLabel>
<width>100</width>
<position>80</position>
<position>26</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -637,7 +659,7 @@ LEFT JOIN
<label>品牌</label>
<enLabel>BRAND</enLabel>
<width>100</width>
<position>81</position>
<position>27</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -656,7 +678,7 @@ LEFT JOIN
<label>新车二手车</label>
<enLabel>CAR_TYPE</enLabel>
<width>100</width>
<position>82</position>
<position>28</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -675,7 +697,7 @@ LEFT JOIN
<label>车型</label>
<enLabel>MODEL</enLabel>
<width>100</width>
<position>83</position>
<position>29</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -694,7 +716,7 @@ LEFT JOIN
<label>二手车使用年限(月)</label>
<enLabel>USED_CAR_DEADLINE</enLabel>
<width>100</width>
<position>84</position>
<position>30</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -713,7 +735,7 @@ LEFT JOIN
<label>到期日期</label>
<enLabel>EXPIRE_DATE</enLabel>
<width>100</width>
<position>85</position>
<position>31</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -732,7 +754,7 @@ LEFT JOIN
<label>还款日</label>
<enLabel>REFUND_DATE</enLabel>
<width>100</width>
<position>86</position>
<position>32</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -751,7 +773,7 @@ LEFT JOIN
<label>配偶姓名</label>
<enLabel>SPOUSE_NAME</enLabel>
<width>100</width>
<position>87</position>
<position>33</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -770,7 +792,7 @@ LEFT JOIN
<label>是否担保</label>
<enLabel>IS_NO_ASSURE</enLabel>
<width>100</width>
<position>88</position>
<position>34</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -789,7 +811,7 @@ LEFT JOIN
<label>担保人姓名</label>
<enLabel>ASSURE_NAME</enLabel>
<width>100</width>
<position>89</position>
<position>35</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -808,7 +830,7 @@ LEFT JOIN
<label>车价/评估价</label>
<enLabel>USED_ASSESS_MONEY</enLabel>
<width>100</width>
<position>90</position>
<position>36</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -827,7 +849,7 @@ LEFT JOIN
<label>未偿本金余额</label>
<enLabel>WC_CORPUS</enLabel>
<width>100</width>
<position>91</position>
<position>37</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -846,7 +868,7 @@ LEFT JOIN
<label>当前逾期天数</label>
<enLabel>OVERDUE_DAYS</enLabel>
<width>100</width>
<position>92</position>
<position>38</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -865,7 +887,7 @@ LEFT JOIN
<label>当前逾期本金</label>
<enLabel>YQ_CORPUS</enLabel>
<width>100</width>
<position>93</position>
<position>39</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -884,7 +906,7 @@ LEFT JOIN
<label>当前逾期利息</label>
<enLabel>YQ_INTEREST</enLabel>
<width>100</width>
<position>94</position>
<position>40</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -903,7 +925,7 @@ LEFT JOIN
<label>当前逾期手续费</label>
<enLabel>YQ_HANDLING_CHARGE</enLabel>
<width>100</width>
<position>95</position>
<position>41</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -922,7 +944,7 @@ LEFT JOIN
<label>当前逾期罚息</label>
<enLabel>YQ_PENALTY</enLabel>
<width>100</width>
<position>96</position>
<position>42</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -941,7 +963,7 @@ LEFT JOIN
<label>历史拖欠次数</label>
<enLabel>OVERDUE_CON</enLabel>
<width>100</width>
<position>97</position>
<position>43</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -960,7 +982,7 @@ LEFT JOIN
<label>历史最大逾期天数</label>
<enLabel>MAX_OVERDUE_DAYS</enLabel>
<width>100</width>
<position>98</position>
<position>44</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -979,7 +1001,7 @@ LEFT JOIN
<label>申请日期</label>
<enLabel>APPLY_MONEY</enLabel>
<width>100</width>
<position>99</position>
<position>45</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -998,7 +1020,7 @@ LEFT JOIN
<label>是否抵押</label>
<enLabel>IS_NO_PLEDGE</enLabel>
<width>100</width>
<position>100</position>
<position>46</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1017,7 +1039,7 @@ LEFT JOIN
<label>每期租金</label>
<enLabel>RENT</enLabel>
<width>100</width>
<position>101</position>
<position>47</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1036,7 +1058,7 @@ LEFT JOIN
<label>未尝租金余额</label>
<enLabel>WC_RENT</enLabel>
<width>100</width>
<position>102</position>
<position>48</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1055,7 +1077,7 @@ LEFT JOIN
<label>未尝利息余额</label>
<enLabel>WC_INTEREST</enLabel>
<width>100</width>
<position>103</position>
<position>49</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1074,7 +1096,7 @@ LEFT JOIN
<label>车架号</label>
<enLabel>FRAME_NUMBER</enLabel>
<width>100</width>
<position>104</position>
<position>50</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1093,7 +1115,7 @@ LEFT JOIN
<label>发动机号</label>
<enLabel>ENGINE_NUMBER</enLabel>
<width>100</width>
<position>105</position>
<position>51</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1112,7 +1134,7 @@ LEFT JOIN
<label>车辆型号</label>
<enLabel>MODEL2</enLabel>
<width>100</width>
<position>106</position>
<position>52</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1131,7 +1153,7 @@ LEFT JOIN
<label>是否有保险</label>
<enLabel>是否有保险</enLabel>
<width>100</width>
<position>107</position>
<position>53</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1150,7 +1172,7 @@ LEFT JOIN
<label>保险公司名称</label>
<enLabel>保险公司名称</enLabel>
<width>100</width>
<position>108</position>
<position>54</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
@ -1169,7 +1191,83 @@ LEFT JOIN
<label>保险到期日</label>
<enLabel>保险到期日</enLabel>
<width>100</width>
<position>109</position>
<position>55</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
<isCountSubTotal>false</isCountSubTotal>
<isGroupby>false</isGroupby>
<isMerge>false</isMerge>
<action></action>
<actionParamters></actionParamters>
<actionCondition></actionCondition>
</column>
<column>
<id>2c9c81b670f702ed0170f7fd7b910003</id>
<name>LICENSE_PLATE_NUMBER</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>车牌号</label>
<enLabel>LICENSE_PLATE_NUMBER</enLabel>
<width>100</width>
<position>56</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
<isCountSubTotal>false</isCountSubTotal>
<isGroupby>false</isGroupby>
<isMerge>false</isMerge>
<action></action>
<actionParamters></actionParamters>
<actionCondition></actionCondition>
</column>
<column>
<id>2c9c81b670f702ed0170f7fd7b920005</id>
<name>Invoice_number</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>发票票号</label>
<enLabel>Invoice_number</enLabel>
<width>100</width>
<position>57</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
<isCountSubTotal>false</isCountSubTotal>
<isGroupby>false</isGroupby>
<isMerge>false</isMerge>
<action></action>
<actionParamters></actionParamters>
<actionCondition></actionCondition>
</column>
<column>
<id>2c9c81b670f702ed0170f7fd7b910002</id>
<name>Invoice_money</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>发票金额</label>
<enLabel>Invoice_money</enLabel>
<width>100</width>
<position>58</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>
<isCountSubTotal>false</isCountSubTotal>
<isGroupby>false</isGroupby>
<isMerge>false</isMerge>
<action></action>
<actionParamters></actionParamters>
<actionCondition></actionCondition>
</column>
<column>
<id>2c9c81b670f702ed0170f7fd7b530001</id>
<name>Invoice_date</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>开票日期</label>
<enLabel>Invoice_date</enLabel>
<width>100</width>
<position>59</position>
<isVisible>true</isVisible>
<color></color>
<isCountTotal>false</isCountTotal>