Aurora头行保存
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Aurora头行保存相关的知识,希望对你有一定的参考价值。
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头行保存的主要内容,如果未能解决你的问题,请参考以下文章