ast_car_insurance.lview 3.99 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: qm  
    $Date: 2014-4-21 上午10:14:25  
    $Revision: 1.0  
    $Purpose: 
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application">
    <a:init-procedure/>
    <a:view>
        <script type="text/javascript"><![CDATA[
        	
		]]></script>
        <a:grid id="ast_car_insurance_grid_id" bindTarget="ast_car_insurance_result_ds" height="200" marginWidth="42" navBar="true">
            <a:columns>
                <a:column name="insurer_dis" prompt="保险公司" width="100"/>
                <a:column name="insurance_number" prompt="保单号" width="100"/>
                <a:column name="insure_date" prompt="投保日" renderer="Leaf.formatDate" width="100"/>
                <a:column name="insurance_date_from" prompt="保险起始日" renderer="Leaf.formatDate" width="100"/>
                <a:column name="insurance_date_to" prompt="保险终止日" renderer="Leaf.formatDate" width="100"/>
                <a:column name="insurance_year" prompt="保险年度" width="100"/>
                <a:column name="compulsory_insurance_amount" align="right" prompt="交强险金额" renderer="compulsory_renderer" width="100"/>
                <a:column name="commercial_insurance_amount" align="right" prompt="商业险金额" renderer="commercial_renderer" width="100"/>
                <a:column name="damage_insurance_flag" prompt="车损险" width="100"/>
                <a:column name="third_party_insurance_flag" prompt="第三者责任险" width="100"/>
                <a:column name="pilfer_insurance_flag" prompt="盗抢险" width="100"/>
                <a:column name="basic_non_deductible_flag" prompt="基本险不计免赔" width="100"/>
                <a:column name="glass_insurance_flag" prompt="玻璃险" width="100"/>
                <a:column name="seat_insurance_flag" prompt="座位险" width="100"/>
                <a:column name="combustion_insurance_flag" prompt="自燃险" width="100"/>
                <a:column name="add_non_deductible_flag" prompt="附加险不计免赔" width="100"/>
                <a:column name="compulsory_rebate_rate" prompt="交强险发返利率(%)" width="100"/>
                <a:column name="combustion_rebate_rate" prompt="商业险返利率(%)" width="100"/>
                <a:column name="compulsory_rebate" align="right" prompt="强险发返利额" renderer="Leaf.formatMoney" width="100"/>
                <a:column name="combustion_rebate" align="right" prompt="商业险返利额" renderer="Leaf.formatMoney" width="100"/>
                <a:column name="insure_place" prompt="投保地点" width="100"/>
                <a:column name="insure_name" prompt="投保人" width="100"/>
                <a:column name="first_beneficiary" prompt="第一受益人" width="100"/>
                <a:column name="insurance_party" prompt="保险办理方" width="100"/>
            </a:columns>
            <a:editors>
                <a:lov id="ast_car_insurance_lov"/>
                <a:datePicker id="ast_car_insurance_dp"/>
                <a:numberField id="ast_car_insurance_nf"/>
                <a:textField id="ast_car_insurance_tf"/>
                <a:checkBox id="ast_car_insurance_cb"/>
            </a:editors>
        </a:grid>
        <a:hBox/>
        <a:grid bindTarget="ast_car_insurance_records_ds" height="200" marginWidth="42" navBar="true">
            <a:columns>
                <a:column name="record_date" prompt="出险时间" renderer="Leaf.formatDate" width="120"/>
                <a:column name="insurance_type" prompt="险种" width="200"/>
                <a:column name="record_description" prompt="保险内容" width="350"/>
                <a:column name="settle_claim_amount" align="right" prompt="理赔金额" renderer="Leaf.formatMoney" width="120"/>
            </a:columns>
            <a:editors>
                <a:textField id="edit_tf"/>
                <a:datePicker id="edit_dp"/>
                <a:numberField id="edit_nf"/>
            </a:editors>
        </a:grid>
    </a:view>
</a:screen>