Login  Register

svn commit: r1530888 - in /ofbiz/branches/release13.07: ./ applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

svn commit: r1530888 - in /ofbiz/branches/release13.07: ./ applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml

jacopoc
3874 posts
Author: jacopoc
Date: Thu Oct 10 09:15:20 2013
New Revision: 1530888

URL: http://svn.apache.org/r1530888
Log:
Applied fix from trunk for revision: 1530876
===

Fixed Minilang validation error (missing result-name attributes) introduced by my recent commit rev. 1530273


Modified:
    ofbiz/branches/release13.07/   (props changed)
    ofbiz/branches/release13.07/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml

Propchange: ofbiz/branches/release13.07/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1530876

Modified: ofbiz/branches/release13.07/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml?rev=1530888&r1=1530887&r2=1530888&view=diff
==============================================================================
--- ofbiz/branches/release13.07/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml (original)
+++ ofbiz/branches/release13.07/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml Thu Oct 10 09:15:20 2013
@@ -943,10 +943,10 @@ under the License.
         <set field="inMap.customTimePeriodId" from-field="parameters.customTimePeriodId"/>
         <set field="inMap.glAccountId" from-field="parameters.glAccountId"/>
         <call-service service-name="computeGlAccountBalanceForTimePeriod" in-map-name="inMap">
-            <result-to-field field="openingBalance"/>
-            <result-to-field field="endingBalance"/>
-            <result-to-field field="postedDebits"/>
-            <result-to-field field="postedCredits"/>
+            <result-to-field field="openingBalance" result-name="openingBalance"/>
+            <result-to-field field="endingBalance" result-name="endingBalance"/>
+            <result-to-field field="postedDebits" result-name="postedDebits"/>
+            <result-to-field field="postedCredits" result-name="postedCredits"/>
         </call-service>
         <!-- persist the balances -->
         <set field="glAccountHistory.openingBalance" from-field="openingBalance"/>