Commit 6f003952 authored by Spencer Chang's avatar Spencer Chang

[refactor] 删除不必需的文件

parent f09018f1
<?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="xml" datatype="java.lang.String" output="true" outputPath="/parameter/@xml"/>
</bm:parameters>
<bm:update-sql><![CDATA[
declare
v_xml varchar2(32767);
begin
v_xml :=ds_doodream_pkg.update_status(
p_doc_id => ${@DOCID},
p_status => ${@APRDOCSTATE},
p_key_code => ${@KEYCODE},
p_unique_id => ${@UNIQUEID},
p_approver_opinion => ${@APPROVER_OPINION}
);
${@xml} := v_xml;
end;
]]></bm:update-sql>
</bm:operation>
</bm:operations>
</bm:model>
<?xml version="1.0" encoding="UTF-8"?>
<a:service xmlns:s="leaf.plugin.script" xmlns:a="http://www.leaf-framework.org/application" xmlns:p="uncertain.proc" trace="true">
<a:init-procedure>
<a:model-execute model="doodream.doodream_response"/>
</a:init-procedure>
<a:service-output output="/parameter/@xml"/>
</a:service>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment