<?xml version="1.0" encoding="UTF-8"?> <!-- $Author: lpc 9874 $Date: $ $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="prj_project_modify_reject_link" url="${/request/@context_path}/modules/prj/PRJ520/prj_project_modify_reject.lview"/> <a:link id="prj520_cdd_uploadFile_id" url="${/request/@context_path}/uploadFile.lview"/> <a:link id="prj520_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"/> <a:link id="pri_project_houdu_link" url="${/request/@context_path}/modules/prj/PRJ520/project_houdu_query.lview"/> <a:link id="prj_reconsider_link" model="prj.PRJ520.prj_reconsider_confirm" modelaction="update"/> <script type="text/javascript"><![CDATA[ Ext.ux.Lightbox.register('a[ref=img]', true); //加载时调用(grid,table,gridBox) window['${/parameter/@bp_seq}${/parameter/@layout_code}_on_layout_dynamic_form_query'] = function(ds, qpara, bp_seq) { var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'prj_project'); var prj_cdd_item_doc_ref_ds = $(ds_id); prj_cdd_item_doc_ref_ds.setQueryParameter('project_id', '${/parameter/@document_id}'); qpara['project_id'] = '${/parameter/@document_id}'; }; //附加条件 window['${/parameter/@layout_code}_user_button2_layout_dynamic_click'] = function() { var url = $('pri_project_houdu_link').getUrl(); var win = new Leaf.Window({ id: 'project_houdu_query_window', url: url, params: { project_id: ${/parameter/@document_id}, raise_status: 'RECONSIDER', raise_status_desc: '复议阶段' }, title: '附加条件', fullScreen: true }); win.on('close', function() {}); }; //复议确认 window['${/parameter/@layout_code}_user_button3_layout_dynamic_click'] = function() { var ds_id = $('${/parameter/@layout_code}_F_RECONSIDER_prj_project_reconsider_ds'); var record = ds_id.getCurrentRecord(); if (record.get('prj_reconsider_id')) { Leaf.showConfirm('${l:HLS.PROMPT}', '是否确认复议?', function() { Leaf.request({ url: $('prj_reconsider_link').getUrl(), para: { project_id: ${/parameter/@document_id} }, success: function(res) { Leaf.SideBar.show({ msg: '复议确认成功', duration: 2000 }); var url = $('prj_project_modify_reject_link').getUrl() + '?layout_code=PROJECT_QUERY_REJECT&function_code=PRJ520'; Leaf.go(url); }, scope: this }); }); } else { Leaf.showMessage('${l:HLS.PROMPT}', '请先填写复议结果!'); } }; 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('prj_reconsider_attch_id')) { var url; if (query_only == 'Y') { url = $('prj520_cdd_downloadFile_id').getUrl() + '?table_name=PRJ_PROJECT_RECONSIDER_ATT&header_id=' + record.get('prj_reconsider_attch_id'); } else { url = $('prj520_cdd_uploadFile_id').getUrl() + '?table_name=PRJ_PROJECT_RECONSIDER_ATT&header_id=' + record.get('prj_reconsider_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() { var ds_id = $('${/parameter/@layout_code}_F_RECONSIDER_prj_project_reconsider_ds'); var record = ds_id.getCurrentRecord(); $('${/parameter/@layout_code}_G_ATTACH_prj_project_reconsider_att_ds').setQueryParameter('prj_reconsider_id', record.get('prj_reconsider_id')); $('${/parameter/@layout_code}_G_ATTACH_prj_project_reconsider_att_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; } } }; ]]></script> <a:screen-include screen="modules/cont/CON500/con_contract_get_layout_code.lview"/> </a:view> </a:screen>