con_contract_document_query.lview 9.45 KB
Newer Older
Spencer Chang's avatar
Spencer Chang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: wangwei5743 
    $Date: 2014-12-19 上午10:00:35  
    $Revision: 1.0  
    $Purpose: 
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" customizationEnabled="true" trace="true">
    <a:view>
        <script type="text/javascript"><![CDATA[
            function con_contract_info_query(){
                $('con_contract_document_ds').query();
            }
        ]]></script>
        <a:dataSets>
            <a:dataSet id="finish_flag_ds">
                <a:datas>
                    <a:record name="是" value="Y"/>
                    <a:record name="否" value="N"/>
                </a:datas>
            </a:dataSet>
            <a:dataSet id="for_query_ds" autoCreate="true">
                <a:fields>
                    <a:field name="contract_number"/>
                    <a:field name="tenant_name"/>
                    <a:field name="organization_code"/>
                    <a:field name="id_card_no"/>
                    <a:field name="finish_flag"/>
                    <a:field name="finish_flag_desc" displayField="name" options="finish_flag_ds" returnField="finish_flag" valueField="value"/>
                    <a:field name="acr_user_name"/>
                    <a:field name="contract_file_date_from"/>
                    <a:field name="contract_file_date_to"/>
                </a:fields>
            </a:dataSet>
            <a:dataSet id="con_contract_document_ds" autoPageSize="true" autoQuery="true" model="cont.CON430.con_contract_document_query" queryDataSet="for_query_ds">
                <a:fields>
                    <a:field name="inception_of_lease" datatype="java.util.Date"/>
                    <a:field name="lease_end_date" datatype="java.util.Date"/>
                    <a:field name="contract_file_date" datatype="java.util.Date"/>
                </a:fields>
            </a:dataSet>
        </a:dataSets>
        <a:screenBody>
            <a:screenTopToolbar>
                <a:gridButton id="hls_standard_his_id" click="con_contract_info_query" text="查询"/>
            </a:screenTopToolbar>
            <a:form column="4" labelWidth="150" marginWidth="80" title="查询条件">
                <a:textField name="contract_number" bindTarget="for_query_ds" prompt="合同号"/>
                <a:textField name="tenant_name" bindTarget="for_query_ds" prompt="承租人名称"/>
                <a:textField name="organization_code" bindTarget="for_query_ds" prompt="承租人组织机构代码"/>
                <a:textField name="id_card_no" bindTarget="for_query_ds" prompt="承租人身份证"/>
                <a:datePicker name="contract_file_date_from" bindTarget="for_query_ds" prompt="归档日期从"/>
                <a:datePicker name="contract_file_date_to" bindTarget="for_query_ds" prompt="归档日期到"/>
                <a:textField name="acr_user_name" bindTarget="for_query_ds" prompt="资产管理员"/>
                <a:comboBox name="finish_flag_desc" bindTarget="for_query_ds" prompt="是否完成归档"/>
            </a:form>
            <a:grid bindTarget="con_contract_document_ds" marginHeight="180" marginWidth="80" navBar="true">
                <a:toolBar>
                    <a:button type="excel"/>
                </a:toolBar>
                <a:columns>
                    <a:column name="tenant_code" prompt="客户号" width="80"/>
                    <a:column name="contract_number" prompt="合同号" width="120"/>
                    <a:column name="tenant_name" prompt="主承租人名称" width="200"/>
                    <a:column name="spv_company" prompt="案件申请分公司名称" width="200"/>
                    <a:column name="tenant_organization_code" prompt="组织机构代码" width="120"/>
                    <a:column name="tenant_id_card_no" prompt="个人身份证号码" width="150"/>
                    <a:column name="teant_contact_person" prompt="联系人" width="120"/>
                    <a:column name="teant_contact_phone" prompt="联系电话" width="120"/>
                    <a:column name="teant_contact_address" prompt="联系地址" width="250"/>
                    <a:column name="tenant_sec_name" prompt="联合承租人" width="200"/>
                    <a:column name="tenant_sec_org_code" prompt="组织机构代码" width="120"/>
                    <a:column name="tenant_sec_id_card_no" prompt="个人身份证号码" width="150"/>
                    <a:column name="teant_sec_contact_person" prompt="联系人" width="120"/>
                    <a:column name="teant_sec_contact_phone" prompt="联系电话" width="120"/>
                    <a:column name="teant_sec_contact_address" prompt="联系地址" width="250"/>
                    <a:column name="guar_name_1" prompt="担保人1" width="200"/>
                    <a:column name="guar_organization_code_1" prompt="组织机构代码" width="120"/>
                    <a:column name="guar_id_card_no_1" prompt="个人身份证号码" width="150"/>
                    <a:column name="guar_contact_name_1" prompt="联系人" width="120"/>
                    <a:column name="guar_contact_phone_1" prompt="联系电话" width="120"/>
                    <a:column name="guar_contact_address_1" prompt="联系地址" width="250"/>
                    <a:column name="guar_name_2" prompt="担保人2" width="200"/>
                    <a:column name="guar_organization_code_2" prompt="组织机构代码" width="120"/>
                    <a:column name="guar_id_card_no_2" prompt="个人身份证号码" width="150"/>
                    <a:column name="guar_contact_name_2" prompt="联系人" width="120"/>
                    <a:column name="guar_contact_phone_2" prompt="联系电话" width="120"/>
                    <a:column name="guar_contact_address_2" prompt="联系地址" width="250"/>
                    <a:column name="guar_name_3" prompt="担保人3" width="200"/>
                    <a:column name="guar_organization_code_3" prompt="组织机构代码" width="120"/>
                    <a:column name="guar_id_card_no_3" prompt="个人身份证号码" width="150"/>
                    <a:column name="guar_contact_name_3" prompt="联系人" width="120"/>
                    <a:column name="guar_contact_phone_3" prompt="联系电话" width="120"/>
                    <a:column name="guar_contact_address_3" prompt="联系地址" width="250"/>
                    <a:column name="unit_id_des" prompt="4S店" width="150"/>
                    <a:column name="acr_user_name" prompt="资产管理员" width="150"/>
                    <a:column name="acr_user_mobil" prompt="资产管理员联系方式" width="150"/>
                    <a:column name="owner_user_id_des" prompt="金融专员" width="120"/>
                    <a:column name="owner_user_id_mobil" prompt="金融专员联系方式" width="150"/>
                    <a:column name="sale_consultant" prompt="销售人员" width="120"/>
                    <a:column name="sale_consultant_tel" prompt="销售人员联系方式" width="150"/>
                    <a:column name="division_des" prompt="新车/二手车" width="120"/>
                    <a:column name="business_type_des" prompt="业务类型" width="120"/>
                    <a:column name="price_list" prompt="产品类型" width="150"/>
                    <a:column name="brand_id_des" prompt="品牌" width="100"/>
                    <a:column name="series_id_des" prompt="车系" width="120"/>
                    <a:column name="model_id_des" prompt="车型" width="200"/>
                    <a:column name="item_frame_number" prompt="车架号" width="150"/>
                    <a:column name="item_engine_number" prompt="发动机号" width="180"/>
                    <a:column name="plate_resource_1" prompt="是否租牌" width="200"/>
                    <a:column name="plate_resource_2" prompt="上海永达牌" width="200"/>
                    <a:column name="plate_resource_3" prompt="外地永达牌" width="200"/>
                    <a:column name="plate_resource_4" prompt="自有牌" width="200"/>
                    <a:column name="license_number" prompt="车牌号码" width="150"/>
                    <a:column name="other_fee" align="right" prompt="车价" renderer="Leaf.formatMoney" width="150"/>
                    <a:column name="other_fee3" align="right" prompt="购置税" renderer="Leaf.formatMoney" width="150"/>
                    <a:column name="insurance_fee" align="right" prompt="保险费" renderer="Leaf.formatMoney" width="150"/>
                    <a:column name="hd_user_col_n05" align="right" prompt="牌照额度价格" renderer="Leaf.formatMoney" width="150"/>
                    <a:column name="pmt" align="right" prompt="每期租金" renderer="Leaf.formatMoney" width="150"/>
                    <a:column name="lease_times" prompt="期数" width="100"/>
                    <a:column name="due_date" prompt="还款日" width="150"/>
                    <a:column name="inception_of_lease" prompt="起租日" renderer="Leaf.formatDate" width="150"/>
                    <a:column name="lease_end_date" prompt="截止日" renderer="Leaf.formatDate" width="150"/>
                    <a:column name="finish_flag_desc" prompt="归档完成情况" width="120"/>
                    <a:column name="contract_file_date" prompt="归档日期" renderer="Leaf.formatDate" width="150"/>
                </a:columns>
                <a:editors><![CDATA[
                   
                ]]></a:editors>
            </a:grid>
        </a:screenBody>
    </a:view>
</a:screen>