loan_change_req_modify.lview 10.4 KB
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: LPC
    $Date: 2018-6-26 11:08:57
    $Revision: 1.0  
    $Purpose: 
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" xmlns:s="leaf.plugin.script"
          customizationEnabled="true" dynamiccreateenabled="true"
          trace="true">
    <a:init-procedure>
        <s:server-script import="contract_print_path.js"><![CDATA[
            $ctx.parameter.file_path = con_print_path['con_print_path'];
            $ctx.parameter.tomcat_source = con_print_path['tomcat_source'];
            ]]>
        </s:server-script>
    </a:init-procedure>
    <a:view>
        <a:link id="LON120_submit_loan_contract_req_link_id" model="lon.LON120.submit_loan_contract_req_wfl" modelaction="execute"/>

        <a:link id="con_contract_modify_link"
                url="${/request/@context_path}/modules/cont/CON505/con_contract_modify.lview"/>
        <a:link id="loan_change_create_entrance_link_id"
                url="${/request/@context_path}/modules/lon/LON120/loan_change_create_entrance.lview"/>
        <a:link id="loan_withdraw_modify_link_id"
                url="${/request/@context_path}/modules/lon/LON120/loan_withdraw_modify.lview"/>
        <a:link id="con301_get_layout_code_link_id" model="cont.CON500.con_contract_get_layout_code"
                modelaction="update"/>
        <a:link id="cdd_uploadFile_id" url="${/request/@context_path}/uploadFile.lview"/>
        <a:link id="cdd_downloadFile_id" url="${/request/@context_path}/downloadFile.lview"/>
        <link href="${/request/@context_path}/css/lightbox.css" rel="stylesheet" type="text/css"/>
        <script src="${/request/@context_path}/javascripts/lightbox.js" type="text/javascript"/>
        <script type="text/javascript"><![CDATA[
        Ext.ux.Lightbox.register('a[ref=img]', true);

        //提交审批
        window['${/parameter/@layout_code}_submit_approval_layout_dynamic_click'] = function () {
            Leaf.showConfirm('提示', '确认提交吗?', function () {
                window['${/parameter/@layout_code}_SAVE_LAYOUT_DYNAMIC_CLICK'](lon120_submit);
            });
        }

        function lon120_submit() {
            var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'tre_loan_contract_history');
            var head_record = $(ds_id).getAt(0);

            window['${/parameter/@layout_code}_lock_layout_dynamic_window']();
            Leaf.request({
                url: $('LON120_submit_loan_contract_req_link_id').getUrl(),
                para: {
                    loan_contract_id: head_record.get('loan_contract_id'),
                    loan_change_req_id: '${/parameter/@loan_change_req_id}'
                },
                success: function () {
                    window['${/parameter/@layout_code}_unlock_layout_dynamic_window']();
                    Leaf.SideBar.show({
                        msg: '${l:HLS.SUBMIT_SUCCESS}',
                        duration: 2000
                    });
                    var url = $('loan_change_create_entrance_link_id').getUrl() + '?layout_code=TRE_CONTRACT_CHANGE_ENTRANCE&function_code=LON120';
                    Leaf.go(url);

                },
                failure: function () {
                    window['${/parameter/@layout_code}_unlock_layout_dynamic_window']();
                },
                error: function () {
                    window['${/parameter/@layout_code}_unlock_layout_dynamic_window']();
                },
                scope: this
            });

        };

        function view_pdf(attachment_id) {
            Leaf.request({
                url: '${/request/@context_path}/autocrud/fnd.fnd_atm_attachment/query',
                para: {
                    attachment_id: attachment_id
                },
                success: function (res) {

                    var path = res.result.record.file_path;
                    path = path.substr(path.indexOf('hls_attachment'));
                    var tomcat_source = '${/parameter/@tomcat_source}';
                    var source_path = 'http://' + window.location.host + '/' + tomcat_source + '/' + path;
                    var oWin = window.open(source_path);
                },
                scope: this
            });
        }

        function upload_file(id, name, query_only) {
            var record = window['${/parameter/@layout_code}_hls_link_render_record'][id + '---' + name];
            if (record.get('lon_contract_attch_id')) {
                var url;
                if (query_only == 'Y') {
                    url = $('tre503_cdd_downloadFile_id').getUrl() + '?table_name=TRE_LOAN_CONTRACT_ATTCH&header_id=' + record.get('lon_contract_attch_id');
                } else {
                    url = $('tre503_cdd_uploadFile_id').getUrl() + '?table_name=TRE_LOAN_CONTRACT_ATTCH&header_id=' + record.get('lon_contract_attch_id');
                }
                var win = new Leaf.Window({
                    url: url,
                    title: '${l:HLS.SUPPORTING_DOCUMENT}',
                    id: 'prj500_cdd_uploadFile_screen_id',
                    width: 850,
                    height: 400
                });

                win.on('close', function () {
                    record.ds.query();
                });
            } else {
                Leaf.showMessage('${l:HLS.PROMPT}', '请先保存!');

            }
        };


        function detail_link(id, name, query_only) {
            var record = window['${/parameter/@layout_code}_hls_link_render_record'][id + '---' + name];
            var contract_id = record.get('contract_id');
            var param = record.data;
            param['function_code'] = 'CON301';
            param['url_title'] = '${l:CON301.CONTRACT_DETAIL}';
            param['function_usage'] = 'QUERY';
            param['contract_id'] = contract_id;
            param['winid'] = 'con301_contract_query_winid';
            hls_doc_get_layout_code('con301_get_layout_code_link_id', param, 'con_contract_modify_link', '${/parameter/@layout_code}');
        }

        //超链接渲染
        window['${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record) {

            window['${/parameter/@layout_code}_hls_link_render_record'][record.id + '---' + name] = record;
            if (name == 'attachment') {
                link_function = 'upload_file';
                if (record.get('attach_count') == 0 || !record.get('attach_count')) {
                    return '<a href="javascript:window[\'' + link_function + '\'](\'' + record.id + '\',\'' + name + '\',\'' + config_record.get('query_only') + '\');">' + config_record.get('prompt') + '</a>';
                } else {
                    return '<a href="javascript:window[\'' + link_function + '\'](\'' + record.id + '\',\'' + name + '\',\'' + config_record.get('query_only') + '\');">' + config_record.get('prompt') + '(' + record.get('attach_count') + ')' + '</a>';
                }
            } else if (name == 'attach_file_name') {
                if (value != null) {
                    var link = '${/request/@context_path}/atm_download.lsc?attachment_id=';
                    var str = value.split(';;');
                    var url = '';
                    for (var i = 0; i < str.length; i++) {
                        var temp = str[i].split('--');
                        if (!Leaf.isEmpty(temp[0])) {
                            var file_name = temp[0].toUpperCase();
                            var file_suffix = temp[0].substr(temp[0].lastIndexOf('.') + 1).toUpperCase();
                            if (file_name.indexOf('.PDF') >= 0) {
                                url = url + '<a href=javascript:view_pdf(\'' + temp[1] + '\')>' + temp[0] + '</a>' + ',';
                            } else if (file_suffix == 'BMP' || file_suffix == 'JPG' || file_suffix == 'JPEG' || file_suffix == 'PNG' || file_suffix == 'GIF') {
                                url = url + '<a href=' + link + temp[1] + ' ref="img">' + temp[0] + '</a>' + ',';
                            } else {
                                url = url + '<a href=' + link + temp[1] + '>' + temp[0] + '</a>' + ',';
                            }
                        }
                    }
                    return url;

                }
            } else if (name == 'detail') {
                link_function = 'detail_link';
                if (record.get('contract_id')) {
                    return '<a href="javascript:window[\'' + link_function + '\'](\'' + record.id + '\',\'' + name + '\',\'' + config_record.get('query_only') + '\');">' + config_record.get('prompt') + '</a>';
                } else {
                    return '';
                }
            } else if (name == 'withdraw_detail') {
                link_function = 'withdraw_detail_link';
                if (record.get('widthdrawal_plan_id')) {
                    return '<a href="javascript:window[\'' + link_function + '\'](\'' + record.id + '\',\'' + name + '\',\'' + config_record.get('query_only') + '\');">' + config_record.get('prompt') + '</a>';
                } else {
                    return '';
                }
            } else {
                return '';
            }
        };

        function withdraw_detail_link(id, name, query_only) {
            var record = window['${/parameter/@layout_code}_hls_link_render_record'][id + '---' + name];
            var widthdrawal_plan_id = record.get('widthdrawal_plan_id');
            var loan_contract_id = record.get('loan_contract_id');
            var param = record.data;
            if ('${/parameter/@function_usage}' == 'QUERY'){
                param['function_code'] = 'LON120R';
                param['function_usage'] = 'QUERY';
            }else{
                param['function_code'] = 'LON120W';
                param['function_usage'] = 'MODIFY';
            }


            param['url_title'] = '还款明细';

            param['widthdrawal_plan_id'] = widthdrawal_plan_id;
            param['withdrawal_id'] = widthdrawal_plan_id;
            param['loan_contract_id'] = loan_contract_id;
            param['winid'] = 'lon120w_widthdrawal_plan_winid';
            param['pre_layout_code'] = '${/parameter/@layout_code}';
            param['pre_winid'] = '${/parameter/@winid}';
            hls_doc_get_layout_code('con301_get_layout_code_link_id', param, 'loan_withdraw_modify_link_id', '${/parameter/@layout_code}');
        }

        ]]></script>
        <a:screen-include screen="modules/cont/CON500/con_contract_get_layout_code.lview"/>
    </a:view>
</a:screen>