apzl_leasing/报表/汽车类报表一/客户融资明细表_财务.xml
2020-12-26 16:30:58 +08:00

745 lines
34 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TenwaReport>
<datasources>
<datasource>
<id>2c9023815726a036015726a496b00001</id>
<dataSourceName>eleasing_mysql</dataSourceName>
<dataSourceType>SPRING</dataSourceType>
<jndi>dataSourceJDBC</jndi>
<url></url>
<username></username>
<driverName></driverName>
<password></password>
<dialect>com.tenwa.report.query.dialect.MysqlDialect</dialect>
<dialectName>Mysql</dialectName>
</datasource>
</datasources>
<reports>
<report>
<id>2c9c81b5687ebb7e01696b5f048c01af</id>
<name>客户融资明细表_财务</name>
<enname>CUSTOMER_FINANCING_DETAIL</enname>
<isActived>true</isActived>
<position>22</position>
<reportType>REPORT</reportType>
<parentReport>2c9c81b7685efbbc016931c675a50006</parentReport>
<children/>
<layouts>
<layout>2c9c81b9719762ea017338406d1a0276</layout>
</layouts>
</report>
</reports>
<tables>
<table>
<id>2c9c81b5687ebb7e01696b612e2801b1</id>
<name>客户融资明细表_财务</name>
<enname>CUSTOMER_FINANCING_DETAIL</enname>
<reportDataSource>2c9023815726a036015726a496b00001</reportDataSource>
<queryType>COMPLEXSQL</queryType>
<sql>SELECT
lci.subjectname,
IFNULL( LCCT.PURCHASE_TAX, 0 ) AS PURCHASE_TAX,
IFNULL( LCCT.TABLEWARE_FEE, 0 ) AS TABLEWARE_FEE,
IFNULL( LCCT.INSURANCE_PREMIUM, 0 ) AS INSURANCE_PREMIUM,
IFNULL( LCCT.INCIDENTAL, 0 ) AS INCIDENTAL,
LCI.CONTRACT_NUMBER AS CONTRACT_NUMBER ,
CIF.CUSTOMERNAME AS CUSTOMERNAME,
CIF.CERTID AS CERTID,
CIF.CUSTOMER_NUM AS CUSTOMER_NUM,
LCCT.YEAR_RATE AS YEAR_RATE,
DATE_FORMAT(LCCT.START_DATE,'%Y%m') AS up,
IFNULL(LFIF.FACT_MONEY_F,0) AS PAY_MONEY,
CASE WHEN PSL.operationType = 'DYCD' THEN IFNULL(LFI.FACT_MONEY,0) ELSE '0.00' END AS DYCD_MONEY,
IFNULL(LCCT.GPS_FEE,0) AS GPS_MONEY,
CASE WHEN LCCT.GPS_FEE_FINA='finatype02' THEN '是' ELSE '否' END AS GPS_FEE_FINA,
IFNULL(LCCT.CAUTION_MONEY,0) AS CAUTION_MONEY,
CASE WHEN LFI2.CONTRACT_ID IS NOT NULL THEN '是' ELSE '否' END AS CAUTION_MONEY_FINA,
IFNULL(LCCT.CLEAN_LEASE_MONEY,0) AS CLEAN_LEASE_MONEY,
(IFNULL(LCCT.CLEAN_LEASE_MONEY,0)+IFNULL(LCCT.FIRST_PAYMENT,0)+IFNULL(LRP.INTEREST,0)) AS SUM_MONEY,
IFNULL(LCCT.EQUIP_AMT,0) AS EQUIP_AMT,
IFNULL(LCCT.FIRST_PAYMENT,0) AS FIRST_PAYMENT,
LCCT.START_DATE AS START_DATE,
IFNULL(LRP.RENT,0) AS RENT,
IFNULL(LRP.CORPUS,0) AS CORPUS,
IFNULL(LRP.INTEREST,0) AS INTEREST,
DI.DISTRIBUTOR_NAME AS DISTRIBUTOR_NAME,
CASE WHEN LCI.CONTRACT_STATUS='100' THEN lfra.PAYDAY_ADJUST
ELSE (select PLAN_DATE from lc_rent_plan where contract_id=LCI.id order by PLAN_DATE desc limit 1 ) END AS END_DATE,ct.typename,
case
DI.F_I_TYPE
when 'f_i_type01'
then '集团内'
when 'f_i_type02'
then '集团外'
when 'f_i_type03'
then '自营'
end as f_i_type,case LCI.car_type when 'new_car' then '新车' when 'used_car' then '二手车' else '' end carTtpe
FROM
LC_CALC_CONDITION LCCT
LEFT JOIN LB_CONTRACT_INFO LCI ON LCI.ID=LCCT.CONTRACT_ID
LEFT JOIN
(SELECT FLOW_KEY,MAX(FLOW_UNID) AS FLOWUNID,inputTime FROM FLOW_BUSSINESS_OBJECT WHERE FLOW_NAME LIKE '%付款申请%' GROUP BY FLOW_KEY) FB
ON FB.FLOW_KEY = LCI.CONTRACT_NUMBER
LEFT JOIN (SELECT CONTRACT_ID,SUM(IFNULL(LRP.RENT,0)) AS RENT,SUM(IFNULL(LRP.CORPUS,0)) AS CORPUS,SUM(IFNULL(LRP.INTEREST,0)) AS INTEREST FROM LC_RENT_PLAN LRP GROUP BY CONTRACT_ID)LRP ON LRP.CONTRACT_ID=LCI.ID
LEFT JOIN (SELECT LFI.CONTRACT_ID,LFI.FACT_MONEY AS FACT_MONEY_F,SUM(IFNULL(LFI.FACT_MONEY,0)) AS FACT_MONEY FROM LC_FUND_INCOME LFI WHERE PAY_TYPE='pay_type_out' GROUP BY CONTRACT_ID)LFI ON LFI.CONTRACT_ID=LCI.ID
LEFT JOIN (SELECT CONTRACT_ID FROM LC_FUND_INCOME WHERE PAY_TYPE='pay_type_out' AND SETTLE_METHOD='settlemethod11' AND FEE_TYPE='feetype10' AND FUND_FEETYPE='feetype2' GROUP BY CONTRACT_ID)LFI2 ON LFI2.CONTRACT_ID=LCI.ID
LEFT JOIN (SELECT LFI.CONTRACT_ID,LFI.FACT_MONEY AS FACT_MONEY_F,lfi.fact_date AS fact_date_f FROM LC_FUND_INCOME LFI WHERE PAY_TYPE='pay_type_out' AND SETTLE_METHOD='settlemethod6' AND FEE_TYPE='feetype10' GROUP BY CONTRACT_ID) LFIF ON LFIF.CONTRACT_ID=LCI.ID
LEFT JOIN DISTRIBUTOR_INFO DI ON DI.DISTRIBUTOR_NO=LCI.DISTRIBUTOR_ID
LEFT JOIN LB_UNION_LESSEE LUL ON LUL.CONTRACT_ID=LCI.ID
LEFT JOIN CUSTOMER_INFO CIF ON CIF.CUSTOMERID=LUL.CUSTOMER_ID
LEFT JOIN LB_PROJECT_INFO LPI ON LPI.ID = LUL.PROJECT_ID
LEFT JOIN PRD_SPECIFIC_LIBRARY PSL ON PSL.PRODUCTID = LPI.PRODUCT_ID LEFT JOIN BUSINESS_TYPE ct ON ct.typeno=lci.PRODUCT_ID
left join LC_FUND_RENT_ADJUST lfra on lfra.contract_id=LCI.id
WHERE LUL.IS_MAIN='Y' AND (LCI.CONTRACT_STATUS BETWEEN 31 AND 100 OR LCI.CONTRACT_STATUS='103' OR LCI.CONTRACT_STATUS='105') AND lci.businesstype='1' </sql>
<sqlParamValue></sqlParamValue>
<columns>
<column>
<id>2c9c81b9719762ea017338406d1b028e</id>
<name>subjectname</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>主体名称</label>
<enLabel>subjectname</enLabel>
<width>210</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>2c9c81b9719762ea017338406d1b028f</id>
<name>DISTRIBUTOR_NAME</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>经销商SP</label>
<enLabel>DISTRIBUTOR_NAME</enLabel>
<width>200</width>
<position>1</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>2c9c81b9719762ea017338406d1b0290</id>
<name>CONTRACT_NUMBER</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>业务合同号</label>
<enLabel>CONTRACT_NUMBER</enLabel>
<width>100</width>
<position>2</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>2c9c81b9719762ea017338406d1b028a</id>
<name>typename</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>产品名称</label>
<enLabel>typename</enLabel>
<width>150</width>
<position>3</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>2c9c81b9719762ea017338406d1b0285</id>
<name>CUSTOMERNAME</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>客户名称</label>
<enLabel>CUSTOMERNAME</enLabel>
<width>100</width>
<position>4</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>2c9c81b9719762ea017338406d1b0287</id>
<name>CERTID</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>身份证号</label>
<enLabel>CERTID</enLabel>
<width>100</width>
<position>5</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>2c9c81b9719762ea017338406d1b0277</id>
<name>CUSTOMER_NUM</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>客户编号</label>
<enLabel>CUSTOMER_NUM</enLabel>
<width>100</width>
<position>6</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>2c9c81b9719762ea017338406d1b027f</id>
<name>START_DATE</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>起租日</label>
<enLabel>START_DATE</enLabel>
<width>100</width>
<position>7</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>2c9c81b9719762ea017338406d1b0282</id>
<name>YEAR_RATE</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>利率</label>
<enLabel>YEAR_RATE</enLabel>
<width>100</width>
<position>8</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>2c9c81b9719762ea017338406d1b027a</id>
<name>PAY_MONEY</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>付款金额</label>
<enLabel>PAY_MONEY</enLabel>
<width>100</width>
<position>9</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>2c9c81b9719762ea017338406d1b028b</id>
<name>DYCD_MONEY</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>冲减车贷租金金额</label>
<enLabel>DYCD_MONEY</enLabel>
<width>100</width>
<position>10</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>2c9c81b9719762ea017338406d1b0280</id>
<name>PURCHASE_TAX</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>购置税</label>
<enLabel>PURCHASE_TAX</enLabel>
<width>100</width>
<position>11</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>2c9c81b9719762ea017338406d1b028c</id>
<name>TABLEWARE_FEE</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>加装费</label>
<enLabel>TABLEWARE_FEE</enLabel>
<width>100</width>
<position>12</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>2c9c81b9719762ea017338406d1b0291</id>
<name>INSURANCE_PREMIUM</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>保险费</label>
<enLabel>INSURANCE_PREMIUM</enLabel>
<width>100</width>
<position>13</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>2c9c81b9719762ea017338406d1b0278</id>
<name>INCIDENTAL</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>杂费</label>
<enLabel>INCIDENTAL</enLabel>
<width>100</width>
<position>14</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>2c9c81b9719762ea017338406d1b027b</id>
<name>GPS_MONEY</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>GPS金额</label>
<enLabel>GPS_MONEY</enLabel>
<width>100</width>
<position>15</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>2c9c81b9719762ea017338406d1b0284</id>
<name>GPS_FEE_FINA</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>GPS是否加融</label>
<enLabel>GPS_FEE_FINA</enLabel>
<width>100</width>
<position>16</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>2c9c81b9719762ea017338406d1b0292</id>
<name>CAUTION_MONEY</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>保证金金额</label>
<enLabel>CAUTION_MONEY</enLabel>
<width>100</width>
<position>17</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>2c9c81b9719762ea017338406d1b0286</id>
<name>CAUTION_MONEY_FINA</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>保证金是否差额放</label>
<enLabel>CAUTION_MONEY_FINA</enLabel>
<width>100</width>
<position>18</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>2c9c81b9719762ea017338406d1b028d</id>
<name>CLEAN_LEASE_MONEY</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>融资金额</label>
<enLabel>CLEAN_LEASE_MONEY</enLabel>
<width>100</width>
<position>19</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>2c9c81b9719762ea017338406d1b0288</id>
<name>SUM_MONEY</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>投资总额</label>
<enLabel>SUM_MONEY</enLabel>
<width>100</width>
<position>20</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>2c9c81b9719762ea017338406d1b0283</id>
<name>EQUIP_AMT</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>车价</label>
<enLabel>EQUIP_AMT</enLabel>
<width>100</width>
<position>21</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>2c9c81b9719762ea017338406d1b0279</id>
<name>FIRST_PAYMENT</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>首付款</label>
<enLabel>FIRST_PAYMENT</enLabel>
<width>100</width>
<position>22</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>2c9c81b9719762ea017338406d1b027e</id>
<name>up</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>放款月份</label>
<enLabel>up</enLabel>
<width>100</width>
<position>23</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>2c9c81b9719762ea017338406d1b027d</id>
<name>RENT</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>租金总额</label>
<enLabel>RENT</enLabel>
<width>100</width>
<position>24</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>2c9c81b9719762ea017338406d1b0289</id>
<name>CORPUS</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>本金总额</label>
<enLabel>CORPUS</enLabel>
<width>100</width>
<position>25</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>2c9c81b9719762ea017338406d1b0281</id>
<name>INTEREST</name>
<columnDataType>NUMBER</columnDataType>
<formater></formater>
<label>利息总额</label>
<enLabel>INTEREST</enLabel>
<width>100</width>
<position>26</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>2c9c81b9719762ea017338406d1b027c</id>
<name>END_DATE</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>合同结束日期</label>
<enLabel>END_DATE</enLabel>
<width>100</width>
<position>27</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>2c9c81b9752030960175bbe636ad005c</id>
<name>f_i_type</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>集团类别</label>
<enLabel>f_i_type</enLabel>
<width>100</width>
<position>28</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>ff808081761d423e01768847f571000d</id>
<name>carTtpe</name>
<columnDataType>STRING</columnDataType>
<formater></formater>
<label>租赁物类型</label>
<enLabel>carTtpe</enLabel>
<width>100</width>
<position>29</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>
</columns>
<controls/>
<searchs/>
<searchExpress></searchExpress>
<filters>
<filter>
<id>2c9c81b9719762ea017338406d1b0294</id>
<name>CONTRACT_NUMBER</name>
<enname>CONTRACT_NUMBER</enname>
<label>业务合同号</label>
<filterType>FILTER</filterType>
<dbType>STRING</dbType>
<htmlType>TEXT</htmlType>
<position>0</position>
</filter>
<filter>
<id>2c9c81b9719762ea017338406d1b0297</id>
<name>CUSTOMER_NUM</name>
<enname>CUSTOMER_NUM</enname>
<label>客户编号</label>
<filterType>FILTER</filterType>
<dbType>STRING</dbType>
<htmlType>TEXT</htmlType>
<position>1</position>
</filter>
<filter>
<id>2c9c81b9719762ea017338406d1b0293</id>
<name>subjectname</name>
<enname>subjectname</enname>
<label>主体名称</label>
<filterType>FILTER</filterType>
<dbType>STRING</dbType>
<htmlType>TEXT</htmlType>
<position>2</position>
</filter>
<filter>
<id>2c9c81b9719762ea017338406d1b0295</id>
<name>START_DATE</name>
<enname>START_DATE</enname>
<label>起租日</label>
<filterType>FILTER</filterType>
<dbType>DATE</dbType>
<htmlType>DATERANGE</htmlType>
<position>3</position>
</filter>
<filter>
<id>2c9c81b9719762ea017338406d1b0296</id>
<name>DISTRIBUTOR_NAME</name>
<enname>DISTRIBUTOR_NAME</enname>
<label>经销商名称</label>
<filterType>FILTER</filterType>
<dbType>STRING</dbType>
<htmlType>TEXT</htmlType>
<position>4</position>
</filter>
</filters>
<filterExpress></filterExpress>
<pageSize>20</pageSize>
<showRowNumber>true</showRowNumber>
<showTotalTitle>false</showTotalTitle>
<isScale>false</isScale>
<isCache>false</isCache>
<isExcel>false</isExcel>
</table>
</tables>
<charts/>
<pages/>
<layouts>
<layout>
<id>2c9c81b9719762ea017338406d1a0276</id>
<divHeight>0</divHeight>
<divWidth>0</divWidth>
<position>0</position>
<contentId>TABLE#2c9c81b5687ebb7e01696b612e2801b1</contentId>
<report>2c9c81b5687ebb7e01696b5f048c01af</report>
<contentType>TABLE</contentType>
</layout>
</layouts>
</TenwaReport>