Author: hansbak
Date: Wed Oct 21 08:47:13 2009
New Revision: 827924
URL:
http://svn.apache.org/viewvc?rev=827924&view=revLog:
patch from Erwan to take default currency if the currency is not defined on the party entity
Modified:
ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/timesheet/TimesheetServices.xml
Modified: ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/timesheet/TimesheetServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/timesheet/TimesheetServices.xml?rev=827924&r1=827923&r2=827924&view=diff==============================================================================
--- ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/timesheet/TimesheetServices.xml (original)
+++ ofbiz/trunk/applications/workeffort/script/org/ofbiz/workeffort/timesheet/TimesheetServices.xml Wed Oct 21 08:47:13 2009
@@ -132,6 +132,9 @@
<entity-one entity-name="Party" value-field="party">
<field-map field-name="partyId" value="${invoice.partyId}"/>
</entity-one>
+ <if-empty field="party.preferredCurrencyUomId">
+ <property-to-field resource="general" property="currency.uom.id.default" field="party.preferredCurrencyUomId"/>
+ </if-empty>
<set field="updateInvoiceMap.invoiceId" from-field="parameters.invoiceId"/>
<set field="updateInvoiceMap.currencyUomId" from-field="party.preferredCurrencyUomId"/>
<now-timestamp field="updateInvoiceMap.invoiceDate"/>