csh_gathering_excel_execute.lview 3.51 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: copy from hec  
    $Date: 2014-11-24 下午05:25:12  
    $Revision: 1.0  
    $Purpose: 
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" trace="true">
    <a:init-procedure>
        <a:model-query model="acr.acr_get_sys_import_head_id" rootPath="header"/>
        <a:import-excel header_id="${/model/header/record/@header_id}" separator="," status_field="/parameter/@ImportSuccess" template_code="ACRIMPORT" user_id="${/session/@user_id}"/>
        <a:model-query defaultWhereClause="header_id=${/model/header/record/@header_id} and TEMPLATE_CODE = &apos;ACRIMPORT&apos;" model="acr.acr_plan_import_get_header_status" rootPath="status"/>
        <a:model-query autoCount="false" defaultWhereClause="header_id=${/model/header/record/@header_id} order by line_id" fetchAll="true" model="acr.acr_plan_import_get_fnd_data" rootPath="importData"/>
    </a:init-procedure>
    <a:view>
        <a:link id="csh_bank_transfer_link" url="${/request/@context_path}/modules/csh/CSH531/csh_bank_transfer_processing.lview"/>
        <a:link id="hls_submmit_link_id" model="csh.CSH531.csh_gathering_import" modelaction="execute"/>
        <a:link id="csh_error_message" url="${/request/@context_path}/modules/csh/CSH531/csh_error_message.lview"/>
        <a:link id="csh_trx_delete_link" model="csh.CSH531.csh_trx_batch_interface" modelaction="delete"/>
        <script type="text/javascript"><![CDATA[
			 function drop_error_data(){
                Leaf.request({
    	            url:$('csh_trx_delete_link').getUrl(),
    	            para:{batch_id :${/model/header/record/@header_id}},
    	            success: function(){ },
    	            scope: this
    	        });
			 }

			 function csh531_error_info(){
    	        var win = new Leaf.Window({
                    id: 'csh_upload_window',
                    url: $('csh_error_message').getUrl(),
                    params:{
                        batch_id: ${/model/header/record/@header_id}
                    },
                    title: '${l:CSH531.ERROR_PAGE}',
                    width: 620,
                    height: 335
                }); 
                win.on('close',function(){
                    drop_error_data();
	               	location.href = $('csh_bank_transfer_link').getUrl();
                });
    	    }
        	
           function submmit(){
               var header_id = ${/model/header/record/@header_id};
               Leaf.request({
	                url: $('hls_submmit_link_id').getUrl(),
	                para: {header_id :header_id},
	                success: function(res) {
	                    if(res.result.err_count > 0){
	                        csh531_error_info();
	                    }else{
               				location.href = $('csh_bank_transfer_link').getUrl();
               			}
	                },
	                failure:function(){
	                    Leaf.showMessage('${l:PROMPT}','导入出错!',function(){
	                        location.href = $('csh_bank_transfer_link').getUrl();
	                    });
	                },
	                error:function(){
	                    Leaf.showMessage('${l:PROMPT}','导入出错!',function(){
	                        location.href = $('csh_bank_transfer_link').getUrl();
	                    });
	                },
	                scope: this
	            });
            }
            
        ]]></script>
        <script type="text/javascript"><![CDATA[
	  		Leaf.onReady(submmit());
	  	]]></script>
    </a:view>
</a:screen>