码迷,mamicode.com
首页 > 其他好文 > 详细

Aurora头行保存

时间:2016-05-18 10:32:58      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:

function save(){
            var header_ds = $(‘head_9202_result_ds‘);
                var line_ds = $(‘line_9202_result_ds‘);
                var header_rec = header_ds.getCurrentRecord();
                if (header_ds.validate() && line_ds.validate()) {
                    var param = header_rec.data;
                    param[‘line‘] = line_ds.getJsonData();
            
                    Aurora.request({
                        url: $(‘save_svc‘).getUrl(),
                        para: param,
                        success: function(res) {alert(‘success‘);},
                        scope:this
                    });
                }
}    
<?xml version="1.0" encoding="UTF-8"?>
<a:service xmlns:a="http://www.aurora-framework.org/application" xmlns:p="uncertain.proc" trace="true">
    <a:init-procedure>
        <a:model-update model="test.head_9202"/>
        <a:batch-apply sourcepath="/parameter/line">
            <p:switch test="@current_parameter/@_status">
                <p:case value="insert">
                    <a:model-insert model="test.line_9202"/>
                </p:case>
                <p:case value="update">
                    <a:model-update model="test.line_9202"/>
                </p:case>
                <p:case value="delete">
                    <a:model-update model="test.line_9202"/>
                </p:case>
            </p:switch>
        </a:batch-apply>
    </a:init-procedure>
</a:service>

 

Aurora头行保存

标签:

原文地址:http://www.cnblogs.com/hand-ning/p/5504185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!