Author: apatel
Date: Mon Dec 3 17:29:40 2007
New Revision: 600764
URL:
http://svn.apache.org/viewvc?rev=600764&view=revLog:
Adding service declaration removed by previous commit.
Modified:
ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml
Modified: ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml?rev=600764&r1=600763&r2=600764&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml Mon Dec 3 17:29:40 2007
@@ -377,4 +377,19 @@
<implements service="permissionInterface"/>
</service>
+<!-- Service for the automatic creation of AcctgTransForPhysicalInventoryVariance, triggered by SECAs -->
+ <service name="createAcctgTransForPhysicalInventoryVariance" engine="simple"
+ location="org/ofbiz/accounting/ledger/GeneralLedgerServices.xml" invoke="createAcctgTransForPhysicalInventoryVariance">
+ <description>Create an AcctgEntry for Physical Inventory variance</description>
+ <attribute name="physicalInventoryId" type="String" mode="IN" optional="false"/>
+ <attribute name="acctgTransId" type="String" mode="OUT" optional="false"/>
+ </service>
+
+ <service name="createAcctgTransForWorkEffortInventoryProduced" engine="simple" auth="true"
+ location="org/ofbiz/accounting/ledger/GeneralLedgerServices.xml" invoke="createAcctgTransForWorkEffortInventoryProduced">
+ <description>Create an accounting transaction for inventory that is produced by a work effort (Type: INVENTORY D: RAWMAT_INVENTORY, C: WIP_INVENTORY)</description>
+ <attribute name="workEffortId" type="String" mode="IN" optional="false"/>
+ <attribute name="inventoryItemId" type="String" mode="IN" optional="false"/>
+ <attribute name="acctgTransId" type="String" mode="OUT" optional="true"/>
+ </service>
</services>