<?xml version="1.0" encoding="UTF-8"?>
<a:screen xmlns:a="http://www.leaf-framework.org/application" dynamiccreateenabled="true" trace="true">
    <a:view>
        <a:link id="${/parameter/@layout_code}_con_contract_get_layout_code_link_id"
                model="cont.CON500.con_contract_get_layout_code" modelaction="update"/>
        <a:link id="${/parameter/@layout_code}_hls_bp_master_query_link"
                url="${/request/@context_path}/modules/hls/HLS214N/hls_bp_master_modify.lview"/>
        <a:link id="${/parameter/@layout_code}_con632_close_link_id"
                url="${/request/@context_path}/modules/cont/CON632/con_collection_detail.lview"/>
        <a:link id="${/parameter/@layout_code}_con_collection_redeem_link_id"
                url="${/request/@context_path}/modules/rent/rent400/con_collection_redeem.lview"/>
        <a:link id="tms_insert_record_link" model="rent.rent100.tms_insert_record" modelaction="update"/>
        <a:link id="confirm_record1_link" model="rent.rent300.confirm_record" modelaction="batch_update"/>
        <a:link id="confirm_record_link" model="rent.rent200.confirm_record" modelaction="batch_update"/>
        <script><![CDATA[
        //锁屏
        window['${/parameter/@bp_seq}${/parameter/@layout_code}_lock_layout_dynamic_window'] = function () {
            var detail_mask;
            if ('${/parameter/@winid}') {
                if (parent.$L.CmpManager.get('${/parameter/@winid}')) {
                    detail_mask = parent.$('${/parameter/@winid}').wrap;
                    parent.Leaf.Masker.mask(detail_mask, '${l:HLS.EXECUTING}');
                } else {
                    detail_mask = $('${/parameter/@winid}').wrap;
                    Leaf.Masker.mask(detail_mask, '${l:HLS.EXECUTING}');
                }
            } else {
                detail_mask = Ext.getBody();
                Leaf.Masker.mask(detail_mask, '${l:HLS.EXECUTING}');
            }
        };
        //解屏
        window['${/parameter/@bp_seq}${/parameter/@layout_code}_unlock_layout_dynamic_window'] = function () {
            var detail_mask;
            if ('${/parameter/@winid}') {
                if (parent.$L.CmpManager.get('${/parameter/@winid}')) {
                    detail_mask = parent.$('${/parameter/@winid}').wrap;
                    parent.Leaf.Masker.unmask(detail_mask);
                } else {
                    detail_mask = $('${/parameter/@winid}').wrap;
                    Leaf.Masker.unmask(detail_mask);
                }
            } else {
                detail_mask = Ext.getBody();
                Leaf.Masker.unmask(detail_mask);
            }
            if (Ext.get(document.documentElement)) {
                $L.Masker.unmask(Ext.get(document.documentElement));
            }
        };


//        //TMS地址查询
//        window['${/parameter/@layout_code}_user_button2_layout_dynamic_click'] = function () {
//            var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_collection');
//            var record = $(ds_id).getSelected()[0];
//            var machine_number = record.get('machine_number');
//            Leaf.showConfirm('${l:HLS.PROMPT}', '是否发起查询?', function () {
//                Leaf.request({
//                    url: $('tms_insert_record_link').getUrl(),
//                    para: {
//                        machine_number: machine_number
//                    },
//                    success: function (res) {
//                        Leaf.SideBar.show({
//                            msg: 'TMS地址查询成功',
//                            duration: 2000
//                        });
//                        $(ds_id).query();
//                    },
//                    scope: this
//                });
//            });
//        };

        function open_bp_code_query_win(ds_id, record_id) {
            var record = $(ds_id).findById(record_id);
            var param = record.data;
            param['function_code'] = 'CON501H';
            param['function_usage'] = 'QUERY';
            param['url_title'] = '${l:HLS212.BP_MASTER_QUERY}';
            hls_doc_get_layout_code('${/parameter/@layout_code}_con_contract_get_layout_code_link_id', param, '${/parameter/@layout_code}_hls_bp_master_query_link', ds_id);
        }

        function open_collection_win(ds_id, record_id) {
            var record = $(ds_id).findById(record_id);
            var param = record.data;
            if (record.get('current_status') == 'CLOSED') {
                param['function_code'] = 'CON632_COL_QUERY';
                param['function_usage'] = 'QUERY';
            } else {
                param['function_code'] = 'CON632_COL_DETAIL';
                param['function_usage'] = 'MODIFY';
            }
            param['bp_id'] = record.get('bp_id');
            param['function_type'] = 'PHONE';
            param['url_title'] = '催收详情';
            hls_doc_get_layout_code('${/parameter/@layout_code}_con_contract_get_layout_code_link_id', param, '${/parameter/@layout_code}_con632_close_link_id', ds_id);
        }


        function open_redeem_win(ds_id, record_id) {
            var record = $(ds_id).findById(record_id);
            var param = record.data;
            param['function_code'] = 'CON632_REDEEM';
            param['function_usage'] = 'MODIFY';
            param['col_id'] = record.get('col_id');
            param['bp_id'] = record.get('bp_id');
            param['winid'] = 'con_collection_redeem_win_id';
            param['url_title'] = '赎回明细';
            hls_doc_get_layout_code('${/parameter/@layout_code}_con_contract_get_layout_code_link_id', param, '${/parameter/@layout_code}_con_collection_redeem_link_id', ds_id);
        }

        //入账反冲 200
        window['${/parameter/@layout_code}_user_button2_layout_dynamic_click'] = function () {
            var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_trailer_info');
            var records = $(ds_id).getSelected();
            var datas = [];
            var count = 0;
            for (var i = 0; i < records.length; i++) {
                var obj = {};

                if (records[i].get('sec_car_reverse_flag') == 'Y') {
                    count = count + 1;
                }
                obj['con_trailer_id'] = records[i].get('con_trailer_id');
                obj['contract_lease_item_id'] = records[i].get('contract_lease_item_id');
                obj['_status'] = 'update';
                datas[i] = obj;
            }
            if (count == 0) {
            Leaf.showConfirm('${l:HLS.PROMPT}', '是否反冲?', function () {
                Leaf.request({
                    url: $('confirm_record_link').getUrl(),
                    para: datas,
                    success: function (res) {
                        Leaf.SideBar.show({
                            msg: '已反冲',
                            duration: 2000
                        });
                        $(ds_id).query();
                    },
                    scope: this
                });
            });
            } else {
                Leaf.showErrorMessage('提示', '入账已反冲!');
                return;
            }
        };

        //出库反冲 300
        window['${/parameter/@layout_code}_user_button9_layout_dynamic_click'] = function () {
            var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_trailer_info');
            var records = $(ds_id).getSelected();
            var datas = [];
            var count = 0;
            for (var i = 0; i < records.length; i++) {
                var obj = {};

                if (records[i].get('sec_car_reverse_sales_flag') == 'Y') {
                    count = count + 1;
                }
                obj['con_trailer_id'] = records[i].get('con_trailer_id');
                obj['contract_lease_item_id'] = records[i].get('contract_lease_item_id');
                obj['_status'] = 'update';
                datas[i] = obj;
            }
            if (count == 0) {
            Leaf.showConfirm('${l:HLS.PROMPT}', '是否反冲?', function () {
                Leaf.request({
                    url: $('confirm_record1_link').getUrl(),
                    para: datas,
                    success: function (res) {
                        Leaf.SideBar.show({
                            msg: '已反冲',
                            duration: 2000
                        });
                        $(ds_id).query();
                    },
                    scope: this
                });
            });
            } else {
                Leaf.showErrorMessage('提示', '出库已反冲!');
                return;
            }
        };

        //超链接渲染
        window['${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record) {
            if (name == 'bp_code' && value) {
                return '<a href="javascript:open_bp_code_query_win(\'' + record.ds.id + '\',\'' + record.id + '\')">' + value + '</a>';
            }  else if (name == 'app_detail') {
                return '<a href="javascript:open_collection_win(\'' + record.ds.id + '\',\'' + record.id + '\')">' + '明细' + '</a>';
            }else if (name == 'redeem_detail') {
                return '<a href="javascript:open_redeem_win(\'' + record.ds.id + '\',\'' + record.id + '\')">' + '明细' + '</a>';
            }
            return value;
        };
        ]]></script>
        <a:screen-include screen="modules/cont/CON500/con_contract_get_layout_code.lview"/>
    </a:view>
</a:screen>