prj_create_content.lwm 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Author: yimeng  
    $Date: 2014-11-14 
    $Revision: 1.0  
    $Purpose: 
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
    <bm:operations>
        <bm:operation name="update">
            <bm:update-sql><![CDATA[
            	begin
            		lsh_prj_content_pkg.prj_content_create(
            			p_project_id =>${@project_id}, 
            			p_quotation_id =>${@quotation_id},
            			p_user_id     =>${/session/@user_id}
            		);
            	end;
            ]]></bm:update-sql>
        </bm:operation>
        <bm:operation name="execute">
            <bm:update-sql><![CDATA[
            	begin
            		 lsh_prj_project_content_pkg.prj_content_preprocess(p_session_id   => ${/session/@session_id},
                                                        p_project_id =>${@project_id}, 
								            			p_quotation_id =>${@quotation_id},
								            			p_user_id     =>${/session/@user_id});
            	 
            	end;
            ]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>