698 lines
29 KiB
XML
698 lines
29 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>2c9c81b5661ee0f901667afa36c50176</id>
|
|
<name>项目统计表_传统类</name>
|
|
<enname>project_statistics</enname>
|
|
<code>REPORT_CODE_1539661510341</code>
|
|
<isActived>true</isActived>
|
|
<position>21</position>
|
|
<reportType>REPORT</reportType>
|
|
<parentReport>2c9c81b7685efbbc01693228cee6000e</parentReport>
|
|
<children/>
|
|
<layouts>
|
|
<layout>2c9c81b5661ee0f901667afb3c330190</layout>
|
|
</layouts>
|
|
</report>
|
|
</reports>
|
|
<tables>
|
|
<table>
|
|
<id>2c9c81b5661ee0f901667afb1c2c0177</id>
|
|
<name>项目统计表_传统类</name>
|
|
<enname>project_statistics</enname>
|
|
<reportDataSource>2c9023815726a036015726a496b00001</reportDataSource>
|
|
<queryType>COMPLEXSQL</queryType>
|
|
<sql>select
|
|
lpi.project_no,
|
|
lpi.project_name,
|
|
lul.customer_name,
|
|
getUserName (lpi.project_manage) as project_manage,
|
|
getOrgLevelName (lpi.project_dept) as project_dept_name,
|
|
lpi.project_dept,
|
|
getItemName (
|
|
'cust_kind',
|
|
lpi.project_industry
|
|
) project_industry,
|
|
lpi.project_industry as pindustry,
|
|
lcs.status_name,
|
|
getItemName ('leas_form', lpi.leas_form) leas_form,
|
|
avgirr,
|
|
money,
|
|
lccmoney,
|
|
lcacmoney,
|
|
lcacmoney as rentmoney,
|
|
lcacrent,
|
|
factrent,
|
|
rentover,
|
|
lpi.project_date,
|
|
ft.endtime,
|
|
date_format(ft1.begintime, "%Y/%m/%d") as begintime,
|
|
lcr.credit_date,
|
|
leaseamtdate,
|
|
startdate
|
|
from
|
|
lb_project_info lpi
|
|
left join lb_union_lessee lul
|
|
on lpi.id = lul.project_id
|
|
and lul.is_main = 'Y'
|
|
and (
|
|
lul.contract_id is null
|
|
or lul.contract_id = ''
|
|
)
|
|
left join lb_contract_status lcs
|
|
on lpi.project_status = lcs.status_code
|
|
left join lc_proj_condition lpc
|
|
on lpc.project_id = lpi.id
|
|
left join
|
|
(select
|
|
lpc.project_id,
|
|
sum(lpc.irr) as avgirr,
|
|
lpc.summoney as money
|
|
from
|
|
(select
|
|
lpc.project_id,
|
|
(
|
|
lpc.clean_lease_money / lccsum.sumleasemoney * lpc.irr
|
|
) as irr,
|
|
lccsum.sumleasemoney as summoney
|
|
from
|
|
lc_proj_condition lpc
|
|
left join
|
|
(select
|
|
lpc.project_id,
|
|
sum(lpc.clean_lease_money) as sumleasemoney
|
|
from
|
|
LC_PROJ_CONDITION lpc
|
|
group by lpc.project_id) lccsum
|
|
on lccsum.project_id = lpc.project_id
|
|
group by lpc.project_id) lpc
|
|
group by lpc.project_id) lpclist
|
|
on lpclist.project_id = lpi.id
|
|
left join
|
|
(select
|
|
lcc.project_id,
|
|
sum(lcc.clean_lease_money) as lccmoney
|
|
from
|
|
lc_contract_condition lcc
|
|
group by lcc.project_id) contractcondition
|
|
on contractcondition.project_id = lpi.id
|
|
left join
|
|
(select
|
|
lcac.project_id,
|
|
sum(lcac.clean_lease_money) as lcacmoney,
|
|
sum(lrp.rent) as lcacrent,
|
|
sum(vlrp.fact_rent) as factrent,
|
|
sum(vlrp.rent_over) as rentover,
|
|
max(lcac.lease_amt_date) leaseamtdate,
|
|
max(lcac.start_date) startdate
|
|
from
|
|
lc_calc_condition lcac
|
|
left join lc_rent_plan lrp
|
|
on lrp.payment_number = lcac.payment_number
|
|
left join vi_lc_rent_plan vlrp
|
|
on vlrp.payment_number = lcac.payment_number
|
|
group by lcac.project_id) calccondition
|
|
on calccondition.project_id = lpi.id
|
|
left join flow_bussiness_object fbo
|
|
on fbo.proj_id = lpi.id
|
|
and fbo.flow_name = '项目立项流程'
|
|
left join flow_task ft
|
|
on ft.objectno = fbo.flow_unid
|
|
and ft.phaseno = '1000'
|
|
left join flow_bussiness_object fbo1
|
|
on fbo1.proj_id = lpi.id
|
|
and fbo1.flow_name = '项目信审流程'
|
|
left join flow_task ft1
|
|
on ft1.objectno = fbo1.flow_unid
|
|
and ft1.phaseno = '0010'
|
|
left join LB_CREDIT_RESULT lcr
|
|
on lcr.project_id = lpi.id
|
|
WHERE lpi.BUSINESSTYPE='2' ORDER BY lpi.inputName DESC</sql>
|
|
<sqlParamValue></sqlParamValue>
|
|
<columns>
|
|
<column>
|
|
<id>2c9c81b5661ee0f901667afb1c2d0185</id>
|
|
<name>pindustry</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>pindustry</label>
|
|
<enLabel>pindustry</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>2c9c81b5661ee0f901667afb1c2d0180</id>
|
|
<name>project_no</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>业务编号</label>
|
|
<enLabel>project_no</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>2c9c81b5661ee0f901667afb1c2d0187</id>
|
|
<name>project_name</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>业务名称</label>
|
|
<enLabel>project_name</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>2c9c81b5661ee0f901667afb1c2d017a</id>
|
|
<name>customer_name</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>客户名称</label>
|
|
<enLabel>customer_name</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>2c9c81b5661ee0f901667afb1c2d0188</id>
|
|
<name>project_manage</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>经销商SP</label>
|
|
<enLabel>project_manage</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>2c9c81b5661ee0f901667afb1c2d0186</id>
|
|
<name>project_dept_name</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>出单部门</label>
|
|
<enLabel>project_dept_name</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>
|
|
<column>
|
|
<id>2c9c81b5661ee0f901667afb1c2d0178</id>
|
|
<name>project_dept</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>出单部门</label>
|
|
<enLabel>project_dept</enLabel>
|
|
<width>100</width>
|
|
<position>30</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>2c9c81b5661ee0f901667afb1c2d018d</id>
|
|
<name>project_industry</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>内部行业</label>
|
|
<enLabel>project_industry</enLabel>
|
|
<width>100</width>
|
|
<position>31</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>2c9c81b5661ee0f901667afb1c2d0183</id>
|
|
<name>status_name</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>业务状态</label>
|
|
<enLabel>status_name</enLabel>
|
|
<width>100</width>
|
|
<position>32</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>2c9c81b5661ee0f901667afb1c2d017d</id>
|
|
<name>leas_form</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>业务形式</label>
|
|
<enLabel>leas_form</enLabel>
|
|
<width>100</width>
|
|
<position>33</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>2c9c81b5661ee0f901667afb1c2d018c</id>
|
|
<name>avgirr</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>内部收益率(%)</label>
|
|
<enLabel>avgirr</enLabel>
|
|
<width>100</width>
|
|
<position>34</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>2c9c81b5661ee0f901667afb1c2d017b</id>
|
|
<name>money</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>业务审批金额</label>
|
|
<enLabel>money</enLabel>
|
|
<width>100</width>
|
|
<position>35</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>2c9c81b5661ee0f901667afb1c2d018b</id>
|
|
<name>lccmoney</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>合同签约金额</label>
|
|
<enLabel>lccmoney</enLabel>
|
|
<width>100</width>
|
|
<position>36</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>2c9c81b5661ee0f901667afb1c2d0189</id>
|
|
<name>lcacmoney</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>合同起租金额</label>
|
|
<enLabel>lcacmoney</enLabel>
|
|
<width>100</width>
|
|
<position>37</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>2c9c81b5661ee0f901667afb1c2d0179</id>
|
|
<name>rentmoney</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>合同投放金额</label>
|
|
<enLabel>rentmoney</enLabel>
|
|
<width>100</width>
|
|
<position>38</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>2c9c81b5661ee0f901667afb1c2d0184</id>
|
|
<name>lcacrent</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>合同租金总额</label>
|
|
<enLabel>lcacrent</enLabel>
|
|
<width>100</width>
|
|
<position>39</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>2c9c81b5661ee0f901667afb1c2d0181</id>
|
|
<name>factrent</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>合同租金回笼金额</label>
|
|
<enLabel>factrent</enLabel>
|
|
<width>100</width>
|
|
<position>40</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>2c9c81b5661ee0f901667afb1c2d018e</id>
|
|
<name>rentover</name>
|
|
<columnDataType>NUMBER</columnDataType>
|
|
<formater></formater>
|
|
<label>合同租金余额</label>
|
|
<enLabel>rentover</enLabel>
|
|
<width>100</width>
|
|
<position>41</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>2c9c81b5661ee0f901667afb1c2d017e</id>
|
|
<name>project_date</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>业务日期</label>
|
|
<enLabel>project_date</enLabel>
|
|
<width>100</width>
|
|
<position>42</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>2c9c81b5661ee0f901667afb1c2d0182</id>
|
|
<name>endtime</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>立项通过时间</label>
|
|
<enLabel>endtime</enLabel>
|
|
<width>100</width>
|
|
<position>43</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>2c9c81b5661ee0f901667afb1c2d017c</id>
|
|
<name>begintime</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>信审时间</label>
|
|
<enLabel>begintime</enLabel>
|
|
<width>100</width>
|
|
<position>44</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>2c9c81b5661ee0f901667afb1c2d018a</id>
|
|
<name>credit_date</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>信审通过时间</label>
|
|
<enLabel>credit_date</enLabel>
|
|
<width>100</width>
|
|
<position>45</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>2c9c81b5661ee0f901667afb1c2d017f</id>
|
|
<name>leaseamtdate</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>投放日期</label>
|
|
<enLabel>leaseamtdate</enLabel>
|
|
<width>100</width>
|
|
<position>46</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>2c9c81b5661ee0f901667afb1c2d018f</id>
|
|
<name>startdate</name>
|
|
<columnDataType>STRING</columnDataType>
|
|
<formater></formater>
|
|
<label>起租日期</label>
|
|
<enLabel>startdate</enLabel>
|
|
<width>100</width>
|
|
<position>47</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>2c9c81b5661ee0f90166808b72ad0213</id>
|
|
<name>project_name</name>
|
|
<enname>project_name</enname>
|
|
<label>业务名称</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>0</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5661ee0f90166808b72ad0214</id>
|
|
<name>customer_name</name>
|
|
<enname>customer_name</enname>
|
|
<label>客户名称</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>1</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5661ee0f90166808b72ad0215</id>
|
|
<name>status_name</name>
|
|
<enname>status_name</enname>
|
|
<label>业务状态</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TEXT</htmlType>
|
|
<position>2</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5661ee0f90166808b72ad0216</id>
|
|
<name>project_date</name>
|
|
<enname>project_date</enname>
|
|
<label>业务日期</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>DATE</dbType>
|
|
<htmlType>DATERANGE</htmlType>
|
|
<position>3</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5661ee0f90166808b72ad0217</id>
|
|
<name>project_dept</name>
|
|
<enname>project_dept</enname>
|
|
<label>出单部门</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>TREEGRAPH</htmlType>
|
|
<filterDataRequestType>SQL</filterDataRequestType>
|
|
<comboBoxDataSource>SELECT orgid,orgname,relativeorgid FROM org_info WHERE orgid LIKE '800090002%'</comboBoxDataSource>
|
|
<defaultValue>80009</defaultValue>
|
|
<position>4</position>
|
|
</filter>
|
|
<filter>
|
|
<id>2c9c81b5661ee0f90166808b72ae0218</id>
|
|
<name>pindustry</name>
|
|
<enname>pindustry</enname>
|
|
<label>内部行业</label>
|
|
<filterType>FILTER</filterType>
|
|
<dbType>STRING</dbType>
|
|
<htmlType>COMBOBOX</htmlType>
|
|
<filterDataRequestType>DICT</filterDataRequestType>
|
|
<comboBoxDataSource>cust_kind</comboBoxDataSource>
|
|
<position>5</position>
|
|
</filter>
|
|
</filters>
|
|
<filterExpress></filterExpress>
|
|
<pageSize>20</pageSize>
|
|
<showRowNumber>false</showRowNumber>
|
|
<showTotalTitle>false</showTotalTitle>
|
|
<isScale>false</isScale>
|
|
<isCache>false</isCache>
|
|
<isExcel>false</isExcel>
|
|
</table>
|
|
</tables>
|
|
<charts/>
|
|
<pages/>
|
|
<layouts>
|
|
<layout>
|
|
<id>2c9c81b5661ee0f901667afb3c330190</id>
|
|
<divHeight>0</divHeight>
|
|
<divWidth>0</divWidth>
|
|
<position>0</position>
|
|
<contentId>TABLE#2c9c81b5661ee0f901667afb1c2c0177</contentId>
|
|
<report>2c9c81b5661ee0f901667afa36c50176</report>
|
|
<contentType>TABLE</contentType>
|
|
</layout>
|
|
</layouts>
|
|
</TenwaReport>
|