hls_csh_transaction_interface.lview 6.9 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 134 135 136 137 138 139 140 141 142 143 144 145
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author:   
    $Date: 2014-8-4 下午01:58:31  
    $Revision: 1.0  
    $Purpose: 商业伙伴查询
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" customizationEnabled="true" dynamiccreateenabled="true" trace="true">
    <a:init-procedure>
        <a:model-query model="acr.ACR516.acr_vat_import_batch_id" rootPath="batch_id"/>
    </a:init-procedure>
    <a:view>
        <a:link id="con_contract_get_layout_code_link_id" model="cont.CON500.con_contract_get_layout_code" modelaction="update"/>
        <a:link id="pageLink_bpQueryScreen_welcome" url="${/request/@context_path}/welcome.lview"/>
        <a:link id="ins_import_upload_link" url="${/request/@context_path}/modules/hls/HLS900/ins_import_upload.lview"/>
        <a:link id="ins_import_trans_upload_link" url="${/request/@context_path}/modules/hls/HLS900/ins_import_trans_upload.lview"/>
        <a:link id="hls_write_off_link_id" model="hls.HLS900.hls_import_interface" modelaction="batch_update"/>
        <a:link id="pageLink_transaction" url="${/request/@context_path}/modules/ebank/EBANK120/csh_transaction_receipt_detail.lview"/>
        <a:link id="pageLink_write_off_details" url="${/request/@context_path}/modules/ebank/EBANK120/csh_transaction_receipt_write_off_detail.lview"/>
        <script type="text/javascript"><![CDATA[
            function open_bp_modify_win(ds_id, record_id) {
                var record = $(ds_id).findById(record_id);
                var param = record.data;
                if (name == 'csh_transaction_num') {
                    new Leaf.Window({
                        id: 'transaction_window',
                        url: $('pageLink_transaction').getUrl() + '?transaction_id=' + param['transaction_id'],
                        title: '收款明细',
                        width: 850,
                        height: 460
                    });
                }
                if (name == 'write_off_amount') {
                    new Leaf.Window({
                        id: 'write_off_window',
                        url: $('pageLink_write_off_details').getUrl() + '?transaction_id=' + param['transaction_id'],
                        title: '核销明细',
                        width: 850,
                        height: 460
                    });
                }
            
            }
            
            function color_render(ds_id, record_id) {
                var record = $(ds_id).findById(record_id);
                var status = record.get('post_flag');
                if (post_flag == 'N') {
                    return '<font color="red">' + value + '</font>';
                } else {
                    return '<font color="green">' + value + '</font>';
                }
            }
            
            window['${/parameter/@layout_code}_dynamic_link_renderer'] = function(value, record, name, config_record) {
                if (name == 'csh_transaction_num' && value) {
                    return '<a href="javascript:open_bp_modify_win(\'' + record.ds.id + '\',\'' + record.id + '\',\'' + name + '\')">' + value + '</a>';
                }
                if (name == 'write_off_amount' && value) {
                    return '<a href="javascript:open_bp_modify_win(\'' + record.ds.id + '\',\'' + record.id + '\',\'' + name + '\')">' + Leaf.formatMoney(value) + '</a>';
                }
                if (name == 'bank_slip_num' && value) {
                    var status = record.get('post_flag');
                    if (status == 'Y') {
                        return '<a>' + '<font color="green">' + value + '</font>' + '</a>';
                    } else {
                        return '<a>' + '<font color="red">' + value + '</font>' + '</a>';
                    }
                }
                return value;
            };
            
            //导出
            window['${/parameter/@layout_code}_user_button1_layout_dynamic_click'] = function() {
                var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_contract');
                var grid_id = ds_id.replace('ds', 'layout_grid_id').replace('DS', 'grid_id');
                $(grid_id)._export();
            };
            
            //导入
            window['${/parameter/@layout_code}_user_button2_layout_dynamic_click'] = function() {
                new Leaf.Window({
                    id: 'upload_window',
                    url: $('ins_import_upload_link').getUrl() + '?batch_id=${/model/batch_id/record/@batch_id}',
                    title: '导入待核销信息',
                    width: 420,
                    height: 280
                });
            };
            
            //收款核销
            window['${/parameter/@layout_code}_user_button3_layout_dynamic_click'] = function() {
            
                var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_contract');
                var records = $(ds_id).getSelected();
            
            
                if (records.length == 0) {
                    Leaf.showInfoMessage('信息', '请至少选择一行!', null, 200, 100);
                    return;
                }
                var datas = [];
                var data = {};
                for (var i = 0;i < records.length;i++) {
                    data = {};
                    data['interface_id'] = records[i].get('interface_id');
                    data['_status'] = 'update';
                    datas.push(data);
            
            
                }
            
                Leaf.showConfirm('${l:PROMPT}', '是否收款核销?', function() {
                    Leaf.request({
                        url: $('hls_write_off_link_id').getUrl(),
                        para: datas,
                        success: function() {
                            Leaf.SideBar.show({
                                msg: '操作成功',
                                duration: 2000
                            });
                            $(ds_id).query();
                        },
                        scope: this
                    });
                }, function() {
                    return;
                }, null, null);
            };
            
            
            
            window['${/parameter/@layout_code}_on_layout_dynamic_grid_query'] = function(ds, qpara, bp_seq) {
                var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_contract');
            
                if (ds == $(ds_id)) {
                    aut_authority_list_validate_query(ds, qpara);
            
                }
            };
        ]]></script>
        <a:screen-include screen="modules/cont/CON500/con_contract_authority_list_validate.lview?document_category=CONTRACT&amp;function_code=HLS900"/>
        <a:screen-include screen="modules/cont/CON500/con_contract_get_layout_code.lview"/>
    </a:view>
</a:screen>