|
Author: jleroux
Date: Mon Sep 27 20:53:10 2010 New Revision: 1001905 URL: http://svn.apache.org/viewvc?rev=1001905&view=rev Log: Merges the trunk at r1001878 Added: ofbiz/branches/jquery/framework/service/lib/axiom-api-1.2.9.jar - copied unchanged from r1001901, ofbiz/trunk/framework/service/lib/axiom-api-1.2.9.jar ofbiz/branches/jquery/framework/service/lib/axiom-impl-1.2.9.jar - copied unchanged from r1001901, ofbiz/trunk/framework/service/lib/axiom-impl-1.2.9.jar ofbiz/branches/jquery/framework/service/lib/axis2-kernel-1.5.2.jar - copied unchanged from r1001901, ofbiz/trunk/framework/service/lib/axis2-kernel-1.5.2.jar ofbiz/branches/jquery/framework/service/lib/axis2-transport-http-1.5.2.jar - copied unchanged from r1001901, ofbiz/trunk/framework/service/lib/axis2-transport-http-1.5.2.jar ofbiz/branches/jquery/framework/service/lib/axis2-transport-local-1.5.2.jar - copied unchanged from r1001901, ofbiz/trunk/framework/service/lib/axis2-transport-local-1.5.2.jar Removed: ofbiz/branches/jquery/framework/service/lib/axiom-api-1.2.8.jar ofbiz/branches/jquery/framework/service/lib/axiom-impl-1.2.8.jar ofbiz/branches/jquery/framework/service/lib/axis2-kernel-1.5.1.jar ofbiz/branches/jquery/framework/service/lib/axis2-transport-http-1.5.1.jar ofbiz/branches/jquery/framework/service/lib/axis2-transport-local-1.5.1.jar Modified: ofbiz/branches/jquery/ (props changed) ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/payment/PaymentServices.xml ofbiz/branches/jquery/applications/accounting/servicedef/secas_ledger.xml ofbiz/branches/jquery/applications/accounting/servicedef/services_ledger.xml ofbiz/branches/jquery/applications/accounting/servicedef/services_payment.xml ofbiz/branches/jquery/applications/order/script/org/ofbiz/order/customer/CheckoutMapProcs.xml (props changed) ofbiz/branches/jquery/applications/party/webapp/partymgr/WEB-INF/actions/party/PartyFinancialHistory.groovy (props changed) ofbiz/branches/jquery/applications/product/config/ProductUiLabels.xml ofbiz/branches/jquery/applications/product/script/org/ofbiz/product/test/InventoryTests.xml (props changed) ofbiz/branches/jquery/build.xml ofbiz/branches/jquery/framework/common/widget/HelpScreens.xml (props changed) ofbiz/branches/jquery/specialpurpose/ebaystore/lib/ (props changed) ofbiz/branches/jquery/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/Facilities.groovy (props changed) ofbiz/branches/jquery/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductList.groovy (props changed) ofbiz/branches/jquery/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductStockTake.groovy (props changed) Propchange: ofbiz/branches/jquery/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /ofbiz/branches/addbirt:831210-885099,885686-886087 /ofbiz/branches/multitenant20100310:921280-927264 -/ofbiz/trunk:951708-1001754 +/ofbiz/trunk:951708-1001901 Modified: ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml (original) +++ ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml Mon Sep 27 20:53:10 2010 @@ -2396,9 +2396,16 @@ under the License. </entity-and> <iterate list="paymentApplications" entry="paymentApplication"> <set field="createAcctgTransAndEntriesForPaymentApplicationInMap.paymentApplicationId" from-field="paymentApplication.paymentApplicationId"/> - <call-service service-name="createAcctgTransAndEntriesForPaymentApplication" in-map-name="createAcctgTransAndEntriesForPaymentApplicationInMap"> - <result-to-field result-name="acctgTransId"/> - </call-service> + <if-compare field="payment.paymentTypeId" operator="equals" value="CUSTOMER_REFUND"> + <call-service service-name="createAcctgTransAndEntriesForCustomerRefundPaymentApplication" in-map-name="createAcctgTransAndEntriesForPaymentApplicationInMap"> + <result-to-field result-name="acctgTransId"/> + </call-service> + <else> + <call-service service-name="createAcctgTransAndEntriesForPaymentApplication" in-map-name="createAcctgTransAndEntriesForPaymentApplicationInMap"> + <result-to-field result-name="acctgTransId"/> + </call-service> + </else> + </if-compare> <log level="info" message="Accounting transaction ${acctgTransId} created for payment application ${paymentApplication.paymentApplicationId}"/> </iterate> </if-compare> @@ -2444,7 +2451,64 @@ under the License. <call-service service-name="createAcctgTransEntry" in-map-name="createAcctgTransAndEntryInMap"/> </iterate> </simple-method> - + + <!--service to create AcctgTransAndEntries For Customer Refund Payment Application--> + <simple-method method-name="createAcctgTransAndEntriesForCustomerRefundPaymentApplication" short-description="create AcctgTransAndEntries For Customer Refund PaymentApplication"> + <entity-one entity-name="PaymentApplication" value-field="paymentApplication"> + <field-map field-name="paymentApplicationId" from-field="parameters.paymentApplicationId"/> + </entity-one> + <get-related-one value-field="paymentApplication" relation-name="Payment" to-value-field="payment"/> + <!-- if the payment transaction has not been already posted to gl then don't do nothing; the transaction for the payment application will be posted together with the payment --> + <if-compare field="payment.statusId" operator="equals" value="PMNT_NOT_PAID"> + <return/> + </if-compare> + <!-- if the payment Debited account is already "accounts payable" then don't do nothing --> + <entity-one entity-name="PaymentGlAccountTypeMap" value-field="paymentGlAccountTypeMap"> + <field-map field-name="paymentTypeId" from-field="payment.paymentTypeId"/> + <field-map field-name="organizationPartyId" from-field="payment.partyIdFrom"/> + </entity-one> + <if-compare field="paymentGlAccountTypeMap.glAccountTypeId" operator="equals" value="ACCOUNTS_RECEIVABLE"> + <return/> + </if-compare> + <!--Credit --> + <make-value entity-name="AcctgTransEntry" value-field="creditEntry"/> + <set field="creditEntry.debitCreditFlag" value="C"/> + <set field="creditEntry.organizationPartyId" from-field="payment.partyIdFrom"/> + <set field="creditEntry.partyId" from-field="payment.partyIdTo"/> + <set field="creditEntry.roleTypeId" value="BILL_TO_CUSTOMER"/> + <set field="creditEntry.origAmount" from-field="paymentApplication.amountApplied"/> + <set field="creditEntry.origCurrencyUomId" from-field="payment.currencyUomId"/> + <set field="creditEntry.glAccountId" from-field="payment.overrideGlAccountId"/> + <set field="creditEntry.glAccountTypeId" from-field="paymentGlAccountTypeMap.glAccountTypeId"/> + <!-- Debit --> + <make-value entity-name="AcctgTransEntry" value-field="debitEntry"/> + <set field="debitEntry.debitCreditFlag" value="D"/> + <set field="debitEntry.organizationPartyId" from-field="payment.partyIdFrom"/> + <set field="debitEntry.partyId" from-field="payment.partyIdTo"/> + <set field="debitEntry.roleTypeId" value="BILL_TO_CUSTOMER"/> + <set field="debitEntry.origAmount" from-field="paymentApplication.amountApplied"/> + <set field="debitEntry.origCurrencyUomId" from-field="payment.currencyUomId"/> + <set field="debitEntry.glAccountTypeId" value="ACCOUNTS_RECEIVABLE"/> + <if-not-empty field="paymentApplication.overrideGlAccountId"> + <set field="debitEntry.glAccountId" from-field="paymentApplication.overrideGlAccountId"/> + </if-not-empty> + + <set field="acctgTransEntries[]" from-field="debitEntry" type="Object"/> + <set field="acctgTransEntries[]" from-field="creditEntry" type="Object"/> + <set field="createAcctgTransAndEntriesInMap.acctgTransEntries" from-field="acctgTransEntries"/> + <set field="createAcctgTransAndEntriesInMap.acctgTransTypeId" value="PAYMENT_APPL"/> + <set field="createAcctgTransAndEntriesInMap.glFiscalTypeId" value="ACTUAL"/> + <set field="createAcctgTransAndEntriesInMap.paymentId" from-field="paymentApplication.paymentId"/> + <set field="createAcctgTransAndEntriesInMap.invoiceId" from-field="paymentApplication.invoiceId"/> + <set field="createAcctgTransAndEntriesInMap.partyId" from-field="payment.partyIdTo"/> + <set field="createAcctgTransAndEntriesInMap.roleTypeId" value="BILL_TO_CUSTOMER"/> + <call-service service-name="createAcctgTransAndEntries" in-map-name="createAcctgTransAndEntriesInMap"> + <result-to-field result-name="acctgTransId"/> + </call-service> + <field-to-result field="acctgTransId" result-name="acctgTransId"/> + + </simple-method> + <!--service to create AcctgTransAndEntries For Payment Application--> <simple-method method-name="createAcctgTransAndEntriesForPaymentApplication" short-description="create AcctgTransAndEntries For PaymentApplication"> <entity-one entity-name="PaymentApplication" value-field="paymentApplication"> Modified: ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/payment/PaymentServices.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/payment/PaymentServices.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/payment/PaymentServices.xml (original) +++ ofbiz/branches/jquery/applications/accounting/script/org/ofbiz/accounting/payment/PaymentServices.xml Mon Sep 27 20:53:10 2010 @@ -178,6 +178,9 @@ under the License. <field-to-result field="paymentAppl.paymentApplicationId" result-name="paymentApplicationId"/> <create-value value-field="paymentAppl"/> + <entity-one value-field="payment" entity-name="Payment"/> + <field-to-result field="payment.paymentTypeId" result-name="paymentTypeId"/> + </simple-method> <simple-method method-name="setPaymentStatus" short-description="Set The Payment Status"> Modified: ofbiz/branches/jquery/applications/accounting/servicedef/secas_ledger.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/applications/accounting/servicedef/secas_ledger.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/applications/accounting/servicedef/secas_ledger.xml (original) +++ ofbiz/branches/jquery/applications/accounting/servicedef/secas_ledger.xml Mon Sep 27 20:53:10 2010 @@ -133,8 +133,14 @@ under the License. <eca service="createPaymentApplication" event="commit"> <condition field-name="invoiceId" operator="is-not-empty"/> + <condition field-name="paymentTypeId" operator="not-equals" value="CUSTOMER_REFUND"/> <action service="createAcctgTransAndEntriesForPaymentApplication" mode="sync"/> </eca> + <eca service="createPaymentApplication" event="commit"> + <condition field-name="invoiceId" operator="is-not-empty"/> + <condition field-name="paymentTypeId" operator="equals" value="CUSTOMER_REFUND"/> + <action service="createAcctgTransAndEntriesForCustomerRefundPaymentApplication" mode="sync"/> + </eca> <!-- set GlReconciliation status after creating GlReconciliation Entries --> <eca service="createGlReconciliationEntry" event="commit"> Modified: ofbiz/branches/jquery/applications/accounting/servicedef/services_ledger.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/applications/accounting/servicedef/services_ledger.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/applications/accounting/servicedef/services_ledger.xml (original) +++ ofbiz/branches/jquery/applications/accounting/servicedef/services_ledger.xml Mon Sep 27 20:53:10 2010 @@ -501,6 +501,13 @@ under the License. <attribute name="acctgTransId" type="String" mode="OUT" optional="true"/> </service> + <service name="createAcctgTransAndEntriesForCustomerRefundPaymentApplication" engine="simple" auth="true" + location="component://accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml" invoke="createAcctgTransAndEntriesForCustomerRefundPaymentApplication"> + <description>Create an accounting transaction for a payment application</description> + <attribute name="paymentApplicationId" type="String" mode="IN" optional="false"/> + <attribute name="acctgTransId" type="String" mode="OUT" optional="true"/> + </service> + <!-- Party GlAccount services --> <service name="createPartyGlAccount" default-entity-name="PartyGlAccount" engine="simple" location="component://accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml" invoke="createPartyGlAccount" auth="true"> Modified: ofbiz/branches/jquery/applications/accounting/servicedef/services_payment.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/applications/accounting/servicedef/services_payment.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/applications/accounting/servicedef/services_payment.xml (original) +++ ofbiz/branches/jquery/applications/accounting/servicedef/services_payment.xml Mon Sep 27 20:53:10 2010 @@ -77,6 +77,7 @@ under the License. <attribute name="taxAuthGeoId" type="String" mode="IN" optional="true"/> <attribute name="amountApplied" type="BigDecimal" mode="IN" optional="false"/> <attribute name="paymentApplicationId" type="String" mode="OUT" optional="false"/> + <attribute name="paymentTypeId" type="String" mode="OUT" optional="false"/> </service> <service name="updatePaymentApplication" default-entity-name="PaymentApplication" engine="java" location="org.ofbiz.accounting.invoice.InvoiceServices" invoke="updatePaymentApplication"> Propchange: ofbiz/branches/jquery/applications/order/script/org/ofbiz/order/customer/CheckoutMapProcs.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /ofbiz/branches/addbirt/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/CheckoutMapProcs.xml:831210-885099,885686-886087 /ofbiz/branches/multitenant20100310/applications/order/script/org/ofbiz/order/customer/CheckoutMapProcs.xml:921280-927264 -/ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CheckoutMapProcs.xml:951708-1001754 +/ofbiz/trunk/applications/order/script/org/ofbiz/order/customer/CheckoutMapProcs.xml:951708-1001901 Propchange: ofbiz/branches/jquery/applications/party/webapp/partymgr/WEB-INF/actions/party/PartyFinancialHistory.groovy ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /incubator/ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/party/PartyFinancialHistory.groovy:418499-490456 /ofbiz/branches/multitenant20100310/applications/party/webapp/partymgr/WEB-INF/actions/party/PartyFinancialHistory.groovy:921280-927264 -/ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/party/PartyFinancialHistory.groovy:951708-1001754 +/ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/actions/party/PartyFinancialHistory.groovy:951708-1001901 Modified: ofbiz/branches/jquery/applications/product/config/ProductUiLabels.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/applications/product/config/ProductUiLabels.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/applications/product/config/ProductUiLabels.xml (original) +++ ofbiz/branches/jquery/applications/product/config/ProductUiLabels.xml Mon Sep 27 20:53:10 2010 @@ -8964,12 +8964,12 @@ <value xml:lang="zh">æ¡ä»¶</value> </property> <property key="ProductConditionsActionsRemoveBefore"> - <value xml:lang="en">To remove a price rule, you must before remove all conditions and actions (if it's possible, since if one of those is alreay used elsewhere you can't)</value> - <value xml:lang="fr">Pour supprimer une règle de prix, vous devez d'abord supprimer toutes les conditions et actions (si possible car si l'une d'entre elles est déjà utilisé ailleurs vous ne pourrez pas)</value> + <value xml:lang="en">To remove a price rule, you must before remove all conditions and actions OR disable it by entering a Thru Date</value> + <value xml:lang="fr">Pour supprimer une règle de prix, vous devez d'abord supprimer toutes les conditions et actions. Vous pouvez aussi la désactivée en entrant une date de fin appropriée</value> </property> <property key="ProductConditionsThenActions"> - <value xml:lang="en">If all conditions are true, then actions will be executed (logical conjunction, ie conditions are 'ANDED' between them, so are actions))</value> - <value xml:lang="fr">Si toutes les conditions sont vérifiées, alors les actions seront exécutées (conjonction, autrement dit ET logique entre conditions, de même pour les actions)</value> + <value xml:lang="en">If multiple conditions are entered they are tested logically as and AND statement. Therefore all Conditions must be TRUE for the price rule to execute (same for actions)</value> + <value xml:lang="fr">Si toutes les conditions sont vérifiées, alors les actions sont exécutées (autrement dit ET logique entre conditions, de même pour les actions)</value> </property> <property key="ProductConfigItem"> <value xml:lang="de">Konfigurationsposition</value> Propchange: ofbiz/branches/jquery/applications/product/script/org/ofbiz/product/test/InventoryTests.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /ofbiz/branches/addbirt/applications/product/script/org/ofbiz/shipment/test/FacilityTests.xml:831210-885099,885686-886087 /ofbiz/branches/multitenant20100310/applications/product/script/org/ofbiz/product/test/InventoryTests.xml:921280-927264 -/ofbiz/trunk/applications/product/script/org/ofbiz/product/test/InventoryTests.xml:951708-1001754 +/ofbiz/trunk/applications/product/script/org/ofbiz/product/test/InventoryTests.xml:951708-1001901 Modified: ofbiz/branches/jquery/build.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/build.xml?rev=1001905&r1=1001904&r2=1001905&view=diff ============================================================================== --- ofbiz/branches/jquery/build.xml (original) +++ ofbiz/branches/jquery/build.xml Mon Sep 27 20:53:10 2010 @@ -488,7 +488,7 @@ under the License. </java> </target> <target name="run-single-test" depends="build" - description="Run a single test"> + description="Run a single test, syntax eg: ant run-single-test -Dtest.component=service -Dtest.case=service-soap-tests"> <java jar="ofbiz.jar" fork="true" resultproperty="test.result"> <jvmarg value="${memory.initial.param}"/> <jvmarg value="${memory.max.param}"/> @@ -511,7 +511,7 @@ under the License. </fail> </target> <target name="run-single-test-suite" depends="build" - description="Run a single test suite"> + description="Run a single test suite, syntax eg: ant run-single-test-suite -Dtest.component=mycomponent -Dtest.suiteName=mytests"> <java jar="ofbiz.jar" fork="true" resultproperty="test.result"> <jvmarg value="${memory.initial.param}"/> <jvmarg value="${memory.max.param}"/> Propchange: ofbiz/branches/jquery/framework/common/widget/HelpScreens.xml ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /ofbiz/branches/addbirt/applications/commonext/widget/HelpScreens.xml:831210-885099,885686-886087 /ofbiz/branches/multitenant20100310/framework/common/widget/HelpScreens.xml:921280-927264 -/ofbiz/trunk/framework/common/widget/HelpScreens.xml:951708-1001754 +/ofbiz/trunk/framework/common/widget/HelpScreens.xml:951708-1001901 Propchange: ofbiz/branches/jquery/specialpurpose/ebaystore/lib/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /ofbiz/branches/addbirt/specialpurpose/ebay/lib:831210-885099,885686-886087 /ofbiz/branches/multitenant20100310/specialpurpose/ebaystore/lib:921280-927264 -/ofbiz/trunk/specialpurpose/ebaystore/lib:951708-1001754 +/ofbiz/trunk/specialpurpose/ebaystore/lib:951708-1001901 Propchange: ofbiz/branches/jquery/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/Facilities.groovy ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /incubator/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/Facilities.groovy:418499-490456 /ofbiz/branches/multitenant20100310/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/Facilities.groovy:921280-927264 -/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/Facilities.groovy:951708-1001754 +/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/Facilities.groovy:951708-1001901 Propchange: ofbiz/branches/jquery/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductList.groovy ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /incubator/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductList.groovy:418499-490456 /ofbiz/branches/multitenant20100310/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductList.groovy:921280-927264 -/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductList.groovy:951708-1001754 +/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductList.groovy:951708-1001901 Propchange: ofbiz/branches/jquery/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductStockTake.groovy ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Sep 27 20:53:10 2010 @@ -1,3 +1,3 @@ /incubator/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductStockTake.groovy:418499-490456 /ofbiz/branches/multitenant20100310/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductStockTake.groovy:921280-927264 -/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductStockTake.groovy:951708-1001754 +/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/actions/ProductStockTake.groovy:951708-1001901 |
| Free forum by Nabble | Edit this page |
