blob: 3ced39e606e51ecd6862bfdae42012846f98d088 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<service-eca xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/service-eca.xsd">
<!-- uncomment these to enable OAGIS message sending -->
<eca service="changeOrderStatus" event="global-commit" run-on-error="false">
<condition field-name="statusId" operator="equals" value="ORDER_APPROVED"/>
<condition-field field-name="statusId" operator="not-equals" to-field-name="oldStatusId"/>
<action service="oagisSendProcessShipment" mode="async" persist="true"/>
</eca>
<eca service="balanceInventoryItems" event="global-commit-post-run" run-on-error="false">
<!-- NOTE: no condition because the condition we want is in the result of the service call and these are evaluated before the service call, so we check it inside the service: <condition field-name="noLongerOnBackOrderIdSet" operator="is-not-empty"/> -->
<action service="oagisSendProcessShipmentsFromBackOrderSet" mode="async"/>
</eca>
<eca service="updateReturnHeader" event="global-commit" run-on-error="false">
<condition field-name="statusId" operator="equals" value="RETURN_ACCEPTED"/>
<action service="oagisSendReceiveDelivery" mode="async" persist="true"/>
</eca>
</service-eca>