create_csh_transaction.lwm 847 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: chenlingfeng
    $Date: 2018-08-14 14:39:40
    $Revision: 1.0
    $Purpose:  通过sap银行流水数据创建现金事务
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm" >
    <bm:operations>
        <bm:operation name="update">
            <bm:update-sql><![CDATA[
                begin

                  hls_sap_interface_pkg.create_csh_transaction(p_batch_id => ${@batch_id},
                                                               p_trans_id => ${@trans_id},
                                                               p_user_id => ${/session/@user_id},
                                                               p_company_id => ${/session/@company_id});
                end;
]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>