Implement an automatic GL posting service triggered when inventory is produced 
by a work effort
-----------------------------------------------------------------------------------------------

                 Key: OFBIZ-1480
                 URL: https://issues.apache.org/jira/browse/OFBIZ-1480
             Project: OFBiz
          Issue Type: Sub-task
          Components: accounting
    Affects Versions: SVN trunk
            Reporter: Jacopo Cappellato


Name of the service: "createAcctgTransForWorkEffortInventoryProduced" or similar
Service definition:
    <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>

Use as a template the notes in task OFBIZ-1473, with the following differences:
1) the Credit glAccountTypeId is WIP_INVENTORY
2) the Debit glAccountTypeId is INVENTORY_ACCOUNT
3) the acctgTransTypeId is INVENTORY
4) the origAmount is: inventoryItem.quantityOnHandTotal * inventoryItem.unitCost


The seca will be:

    <eca service="createWorkEffortInventoryProduced" event="commit">
        <action service="createAcctgTransForWorkEffortInventoryProduced" 
mode="sync"/>
    </eca> 


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to