prj_cdd_item_templet.lview 12 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: LR
    $Date: 2013-8-21 上午11:22:03
    $Revision: 1.0
    $Purpose:
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" customizationEnabled="true">
    <a:init-procedure><![CDATA[
    ]]></a:init-procedure>
    <a:view>
        <a:link id="hls220_tplt_group_define_link" url="${/request/@context_path}/modules/hls/HLS220/prj_cdd_item_tplt_group_define.lview"/>
        <script type="text/javascript"><![CDATA[
            function sys201_update_condition_table_back() {
                $('hls220_prj_cdd_item_templet_window').close();
            }

            function sys201_update_condition_table_save() {
                $('sys201_update_condition_table_ds').submit();
            }

            function sys201_condition_table_field_ds_update(ds, record, name, value, oldvalue) {
                if (name == 'line_field') {
                    if (value == 'N') {
                        record.set('show_description', 'N');
                    }
                }
            }

            function sys201_condition_table_field_grid_editorFunction(record, name) {
                if (record.get('line_field') == 'Y') {
                    return 'sys201_condition_table_field_grid_ck';
                }
                return '';
            }

            function hls220_tplt_group_define(){
                var templet_head_id='${/parameter/@templet_head_id}';
                if(templet_head_id){
                    new Leaf.Window({
                        id:'hls220_tplt_group_define_win',
                        url:$('hls220_tplt_group_define_link').getUrl(),
                        params:{
                            winid:'hls220_tplt_group_define_win',
                            templet_head_id:templet_head_id
                        },
                        fullScreen:true
                    });
                }
            }

            function con202_clause_templet_functionTreeGrid_editor(record, name) {
               // if (record.isNew) {
                    return 'con202_clause_templet_grid_cb';
               // }

            }
        ]]></script>
        <style><![CDATA[
        	td[dataindex=enabled_flag],td[dataindex=chance_tab_group],td[dataindex=project_tab_group],td[dataindex=contract_tab_group]{
        	    border-right-color:#A9A9A9
        	}
        	td[dataindex=sign_tab_group],td[dataindex=incept_tab_group],td[dataindex=lender_tab_group]{
        	    border-right-color:#A9A9A9
        	}
        ]]></style>
        <a:dataSets>
Luochenglong's avatar
Luochenglong committed
68 69
            <a:dataSet id="yes_no_ds" lookupCode="YES_NO"/>
            <a:dataSet id="archive_type_code" lookupCode="ARCHIVE_TYPE"/>
Spencer Chang's avatar
Spencer Chang committed
70 71 72 73 74 75 76 77 78 79 80 81 82 83
            <a:dataSet id="con202_clause_templet_tmplet_class_ds" lookupCode="CON202_TEMPLET_CLASS"/>
            <a:dataSet id="hls220_templet_head_ds">
                <a:fields>
                    <a:field name="templet_code" readOnly="true"/>
                    <a:field name="templet_name" readOnly="true"/>
                    <a:field name="templet_head_id" defaultValue="${/parameter/@templet_head_id}"/>
                </a:fields>
            </a:dataSet>
            <a:dataSet id="hls220_templet_line_ds" autoPageSize="true" autoQuery="true" model="hls.HLS220.prj_cdd_item_templet" queryDataSet="hls220_templet_head_ds" selectable="true">
                <a:fields>
                    <a:field name="cdd_class"/>
                    <a:field name="required_flag" checkedValue="Y" defaultValue="Y" uncheckedValue="N"/>
                    <a:field name="cdd_item" prompt="HLS220.CDD_ITEM" required="true"/>
                    <a:field name="order_seq"/>
Luochenglong's avatar
Luochenglong committed
84 85 86 87
                    <a:field name="is_archive"/>
                    <a:field name="archive_type"/>
                    <a:field name="is_archive_desc" displayField="code_value_name" options="yes_no_ds"  returnField="is_archive" valueField="code_value"/>
                    <a:field name="archive_type_desc" displayField="code_value_name" options="archive_type_code"  returnField="archive_type" valueField="code_value"/>
Spencer Chang's avatar
Spencer Chang committed
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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
                    <a:field name="templet_head_id" defaultValue="${/parameter/@templet_head_id}"/>
                    <a:field name="description" prompt="HLS220.DESCRIPTION" required="true"/>
                    <a:field name="enabled_flag" checkedValue="Y" defaultValue="Y" prompt="HLS.ENABLED_FLAG" uncheckedValue="N"/>
                    <a:field name="chance_required_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.CHANCE_REQUIRED_FLAG" uncheckedValue="N"/>
                    <a:field name="chance_display_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.CHANCE_DISPLAY_FLAG" uncheckedValue="N"/>
                    <a:field name="project_required_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.PROJECT_REQUIRED_FLAG" uncheckedValue="N"/>
                    <a:field name="project_display_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.PROJECT_DISPLAY_FLAG" uncheckedValue="N"/>
                    <a:field name="contract_required_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.CONTRACT_REQUIRED_FLAG" uncheckedValue="N"/>
                    <a:field name="contract_display_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.CONTRACT_DISPLAY_FLAG" uncheckedValue="N"/>
                    <a:field name="sign_required_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.SIGN_REQUIRED_FLAG" uncheckedValue="N"/>
                    <a:field name="sign_display_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.SIGN_DISPLAY_FLAG" uncheckedValue="N"/>
                    <a:field name="incept_required_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.INCEPT_REQUIRED_FLAG" uncheckedValue="N"/>
                    <a:field name="incept_display_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.INCEPT_DISPLAY_FLAG" uncheckedValue="N"/>
                    <a:field name="lender_required_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.LENDER_REQUIRED_FLAG" uncheckedValue="N"/>
                    <a:field name="lender_display_flag" checkedValue="Y" defaultValue="N" prompt="HLS220.LENDER_DISPLAY_FLAG" uncheckedValue="N"/>
                    <a:field name="chance_tab_group" prompt="HLS220.TAB_GROUP"/>
                    <a:field name="project_tab_group" prompt="HLS220.TAB_GROUP"/>
                    <a:field name="sign_tab_group" prompt="HLS220.TAB_GROUP"/>
                    <a:field name="contract_tab_group" prompt="HLS220.TAB_GROUP"/>
                    <a:field name="incept_tab_group" prompt="HLS220.TAB_GROUP"/>
                    <a:field name="lender_tab_group" prompt="HLS220.TAB_GROUP"/>
                    <a:field name="templet_class"/>
                    <a:field name="templet_class_name" displayField="code_value_name" options="con202_clause_templet_tmplet_class_ds" returnField="templet_class" valueField="code_value"/>
                </a:fields>
            </a:dataSet>
        </a:dataSets>
        <a:screenBody>
            <a:screenTopToolbar>
                <a:gridButton click="sys201_update_condition_table_back" text="HLS.CLOSE" width="80"/>
                <a:gridButton bind="hls220_templet_line_grid" type="add" width="80"/>
                <a:gridButton bind="hls220_templet_line_grid" type="delete" width="80"/>
                <a:gridButton bind="hls220_templet_line_grid" type="save" width="80"/>
                <a:gridButton click="hls220_tplt_group_define" text="分组定义" width="80"/>
            </a:screenTopToolbar>
            <a:hBox labelSeparator=" " labelWidth="100">
                <a:textField name="templet_code" bindTarget="hls220_templet_head_ds" prompt="HLS.TEMPLET_CODE"/>
                <a:textField name="templet_name" bindTarget="hls220_templet_head_ds" prompt="HLS.TEMPLET_NAME"/>
            </a:hBox>
            <a:grid id="hls220_templet_line_grid" bindTarget="hls220_templet_line_ds" marginHeight="160" marginWidth="35" navBar="true">
                <a:columns>
                    <a:column name="cdd_class" editor="hls220_templet_line_grid_tf" prompt="文档分类" width="100"/>
                    <a:column name="cdd_item" editor="hls220_templet_line_grid_code_tf" width="120"/>
                    <a:column name="description" editor="hls220_templet_line_grid_tf" width="150"/>
                    <!-- <a:column name="templet_class_name" editorFunction="con202_clause_templet_functionTreeGrid_editor" prompt="模板分类" width="120"/>-->
                    <a:column name="app_code" editor="hls220_templet_line_grid_tf" prompt="APP编码" width="350"/>
                    <a:column name="order_seq" editor="hls220_templet_line_grid_nf" prompt="HLS.ORDER_SEQ" width="60"/>
                    <!-- <a:column name="required_flag" editor="hls220_templet_line_grid_ck" prompt="关键字段" width="60"/> -->
                    <!-- <a:column name="chance_required_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="chance_display_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="chance_tab_group" editor="hls220_templet_line_grid_tf" width="40"/> -->
                    <!-- <a:column name="project_required_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="project_display_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="project_tab_group" editor="hls220_templet_line_grid_tf" width="40"/> -->
                    <!-- <a:column name="contract_required_flag" editor="hls220_templet_line_grid_ck" width="60"/>
                    <a:column name="contract_display_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="sign_required_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="sign_display_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="sign_tab_group" editor="hls220_templet_line_grid_tf" width="40"/> -->
                    <!-- <a:column name="incept_required_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="incept_display_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="incept_tab_group" editor="hls220_templet_line_grid_tf" width="40"/> -->
                    <a:column name="lender_required_flag" editor="hls220_templet_line_grid_ck" width="60"/>
                    <a:column name="enabled_flag" editor="hls220_templet_line_grid_ck" width="40"/>
Luochenglong's avatar
Luochenglong committed
151 152
                    <a:column name="is_archive_desc" editor="con202_clause_templet_grid_cb" prompt="电子档案传输对象" width="120"/>
                    <a:column name="archive_type_desc" editor="con202_clause_templet_grid_cb" prompt="附件类型" width="120"/>
Spencer Chang's avatar
Spencer Chang committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
                    <!-- <a:column name="lender_display_flag" editor="hls220_templet_line_grid_ck" width="60"/> -->
                    <!-- <a:column name="lender_tab_group" editor="hls220_templet_line_grid_tf" width="40"/> -->
                </a:columns>
                <a:editors>
                    <a:checkBox id="hls220_templet_line_grid_ck"/>
                    <a:numberField id="hls220_templet_line_grid_nf" allowDecimals="false" allowNegative="false"/>
                    <a:textField id="hls220_templet_line_grid_tf"/>
                    <a:textField id="hls220_templet_line_grid_code_tf" typeCase="upper"/>
                    <a:comboBox id="con202_clause_templet_grid_cb"/>
                </a:editors>
            </a:grid>
            <script type="text/javascript"><![CDATA[
                Leaf.onReady(function() {
                    var record = $('hls220_templet_head_ds').getAt(0);
                    var head_record = $('hls220_templet_result_ds').findById('${/parameter/@record_id}');
                    record.set('templet_code', head_record.get('templet_code'));
                    record.set('templet_name', head_record.get('templet_name'));
                });
            ]]></script>
        </a:screenBody>
    </a:view>
</a:screen>