<?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="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/@bp_seq}${/parameter/@layout_code}_on_layout_dynamic_form_add_and_load'] = function(ds, record, config_records, bp_seq) { // // if ((ds.id).indexOf('hls_bp_master') != -1) { // $('hls_bp_master_ds_id').setQueryParameter('bp_id', '${/parameter/@bp_id}'); // $('hls_bp_master_ds_id').query(); // } // // }; //忽略保存校验方法 window['${/parameter/@layout_code}_ignore_required_before_save'] = function () { // param['show_history_flag'] = 'Y'; window['${/parameter/@layout_code}_not_ignore_required_flag'] = false; }; //更新时调用 window['${/parameter/@bp_seq}${/parameter/@layout_code}_on_layout_dynamic_update'] = function (ds, record, name, value, old_value, bp_seq) { var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'lon_credit_contract'); if (ds_id == ds.id) { if (name == 'valid_from') { var valid_to = record.get('valid_to'); if (value > valid_to) { Leaf.showMessage('${l:HLS.PROMPT}', '授信期限从不能大于授信期限到!'); return true; } } if (name == 'valid_to') { var valid_from = record.get('valid_from'); if (value < valid_from) { Leaf.showMessage('${l:HLS.PROMPT}', '授信期限到不能小于授信期限从!!'); return true; } } } }; // window['${/parameter/@layout_code}_on_layout_dynamic_before_submit'] = function (ds, record) { // // var check_flag = true; // var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'lon_credit_contract'); // var bp_ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'hls_bp_master'); // var record = $(ds_id).getAt(0); // var bp_record = $(bp_ds_id).getAt(0); // if('${/parameter/@bp_id}'){ // record.set('credit_bp_id','${/parameter/@bp_id}'); // }else{ // record.set('credit_bp_id',bp_record.get('credit_bp_id')); // } // window['${/parameter/@layout_code}_unlock_layout_dynamic_window'](); // return check_flag; // }; 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_credit_attch_id')) { var url; if (query_only == 'Y') { url = $('cdd_downloadFile_id').getUrl() + '?table_name=LON_CREDIT_CONTRACT_ATTCH&header_id=' + record.get('lon_credit_attch_id'); } else { url = $('cdd_uploadFile_id').getUrl() + '?table_name=LON_CREDIT_CONTRACT_ATTCH&header_id=' + record.get('lon_credit_attch_id'); } var win = new Leaf.Window({ url: url, title: '${l:HLS.SUPPORTING_DOCUMENT}', id: 'cdd_uploadFile_screen_id', width: 850, height: 400 }); win.on('close', function () { $('${/parameter/@layout_code}_ACY_lon_credit_contract_attch_ds').setQueryParameter('credit_contract_id', record.get('credit_contract_id')); $('${/parameter/@layout_code}_ACY_lon_credit_contract_attch_ds').query(); }); } else { Leaf.showMessage('${l:HLS.PROMPT}', '请先保存!'); } }; //超链接渲染 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; } } }; window['${/parameter/@layout_code}_submit_approval_layout_dynamic_click'] = function () { var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'lon_credit_contract'); var record = $(ds_id).getAt(0); var credit_contract_id = record.get('credit_contract_id'); if (!credit_contract_id) { Leaf.showMessage('${l:HLS.PROMPT}', '${l:HLS.EXECUTE_AFTER_SAVE}'); return; } else { Leaf.request({ url: $('lon110_submit_link').getUrl(), para: { credit_contract_id: credit_contract_id }, success: function (res) { Leaf.Masker.unmask(Ext.getBody()); Leaf.showMessage('${l:HLS.PROMPT}', '${l:HLS.SUBMIT_SUCCESS}', function () { $('${/parameter/@winid}').close(); }); }, failure: function () { Leaf.Masker.unmask(Ext.getBody()); }, error: function () { Leaf.Masker.unmask(Ext.getBody()); }, scope: this }); } }; ]]></script> <a:screen-include screen="modules/cont/CON500/con_contract_get_layout_code.lview"/> </a:view> </a:screen>