You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2007/12/11 20:19:08 UTC

svn commit: r603338 - /ofbiz/trunk/applications/accounting/servicedef/secas_ledger.xml

Author: jacopoc
Date: Tue Dec 11 11:19:07 2007
New Revision: 603338

URL: http://svn.apache.org/viewvc?rev=603338&view=rev
Log:
This condition will prevent the service to run for purchase shipments.

Modified:
    ofbiz/trunk/applications/accounting/servicedef/secas_ledger.xml

Modified: ofbiz/trunk/applications/accounting/servicedef/secas_ledger.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/secas_ledger.xml?rev=603338&r1=603337&r2=603338&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/secas_ledger.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/secas_ledger.xml Tue Dec 11 11:19:07 2007
@@ -24,6 +24,7 @@
     <!-- create the accounting transactions for a sales shipment issuance every time the inventory is issued to the shipment -->
     <eca service="createItemIssuance" event="commit">
         <condition field-name="shipmentId" operator="is-not-empty"/>
+        <condition field-name="inventoryItemId" operator="is-not-empty"/>
         <action service="createAcctgTransForSalesShipmentIssuance" mode="sync"/>
     </eca>