check_gps_visit.lwm 1.15 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
<?xml version="1.0" encoding="UTF-8"?>
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm" needAccessControl="false">
    <bm:operations>
        <bm:operation name="execute">
            <bm:parameters>
                <bm:parameter name="product_plan_id" input="true" output="false"/>
                <bm:parameter name="times_limit" input="true" output="false"/>
                <bm:parameter name="dp_ratio" input="true" output="false"/>
                <bm:parameter name="finance_amount" input="true" output="false"/>
                <bm:parameter name="result" input="false" output="true"/>
            </bm:parameters>
            <bm:update-sql><![CDATA[
                begin
                    prj_project_pkg.check_gps_visit
                    (
                        p_product_plan_id=>${@product_plan_id},
                        p_lease_times=>${@lease_times},
                        p_dp_ratio=>${@down_payment_ratio},
                        p_finance_amount=>${@finance_amount},
                        p_result=>${@result}
                    );
                end;]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>