blob: f67c867f23146c950d2078d1427dcca1de49aead [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.
-->
<entity-eca xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/entity-eca.xsd">
<!-- Product Keyword Indexing ECAs -->
<eca entity="Product" operation="create" event="return">
<condition field-name="autoCreateKeywords" operator="not-equals" value="N"/>
<action service="indexProductKeywords" mode="sync" value-attr="productInstance"/>
</eca>
<eca entity="Product" operation="store" event="return">
<condition field-name="autoCreateKeywords" operator="not-equals" value="N"/>
<action service="indexProductKeywords" mode="sync"/>
</eca>
<eca entity="GoodIdentification" operation="create-store" event="return">
<action service="indexProductKeywords" mode="sync"/>
</eca>
<eca entity="ProductAttribute" operation="create-store" event="return">
<action service="indexProductKeywords" mode="sync"/>
</eca>
<eca entity="ProductFeatureAppl" operation="create-store" event="return">
<action service="indexProductKeywords" mode="sync"/>
</eca>
<eca entity="ProductContent" operation="create-store" event="return">
<action service="indexProductKeywords" mode="sync"/>
</eca>
<!-- inventory related ECAs -->
<eca entity="InventoryItem" operation="create-store" event="return">
<condition field-name="productId" operator="is-not-empty"/>
<condition field-name="availableToPromiseTotal" operator="is-not-empty"/>
<condition field-name="availableToPromiseTotal" operator="less-equals" value="0" type="BigDecimal"/>
<action service="checkProductInventoryDiscontinuation" mode="async"/>
</eca>
<!-- update the totals for serialized inventory items -->
<eca entity="InventoryItem" operation="create-store" event="return">
<action service="updateSerializedInventoryTotals" mode="sync"/>
</eca>
<!-- Just in case an InventoryItem is ever created with ATP/QOH values, catch and handle that -->
<eca entity="InventoryItem" operation="create" event="return">
<action service="createInventoryItemCheckSetAtpQoh" mode="sync"/>
</eca>
<!-- Create the initial status record -->
<eca entity="InventoryItem" operation="create" event="return">
<condition field-name="statusId" operator="is-not-empty"/>
<action service="createInventoryItemStatus" mode="sync"/>
</eca>
<!-- The InventoryItemDetail entity should never be updated/stored or deleted/removed, but we'll catch those too anyway... -->
<eca entity="InventoryItemDetail" operation="create-store-remove" event="return">
<action service="updateInventoryItemFromDetail" mode="sync"/>
</eca>
<eca entity="InventoryItemDetail" operation="create-store-remove" event="return">
<condition field-name="availableToPromiseDiff" operator="not-equals" value="0" type="BigDecimal"/>
<action service="setLastInventoryCount" mode="sync"/>
</eca>
<!-- If the Picklist status is Cancelled then cancel all the PicklistItems -->
<eca entity="Picklist" operation="create-store" event="return">
<condition field-name="statusId" operator="equals" value="PICKLIST_CANCELLED"/>
<action service="cancelPicklistAndItems" mode="async"/>
</eca>
<!-- Product GroupOrder ECAs -->
<eca entity="ProductGroupOrder" operation="create" event="return">
<action service="createJobForProductGroupOrder" mode="sync"/>
</eca>
</entity-eca>