project_approval.lwm 1017 Bytes
Newer Older
lijingjing's avatar
lijingjing committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: shenyamin
    $Date: 2018-11_03 上午11:00:06  
    $Revision: 3.0  
    $Purpose: 
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm" needAccessControl="false">
    <bm:operations>
        <bm:operation name="update">
            <bm:update-sql><![CDATA[
                begin
                    prj_project_pkg.project_submit(
                    p_project_id =>${@project_id}, 
                    p_user_id => ${/session/@user_id}

lijingjing's avatar
lijingjing committed
17 18 19 20 21 22 23 24 25 26 27
                    );
                end;
            ]]></bm:update-sql>
        </bm:operation>
        <bm:operation name="execute">
            <bm:update-sql><![CDATA[
                begin
                    prj_project_check_pkg.check_prj_lease_item(
                    p_machine_number =>${@machine_number},
                    p_user_id => ${/session/@user_id}

lijingjing's avatar
lijingjing committed
28 29 30 31 32 33
                    );
                end;
            ]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>