The extra attribute shouldn't be necessary. I will look into it.

Adrian Crum
Sandglass Software
www.sandglass-software.com

On 10/10/2013 1:42 AM, jaco...@apache.org wrote:
Author: jacopoc
Date: Thu Oct 10 08:42:36 2013
New Revision: 1530876

URL: http://svn.apache.org/r1530876
Log:
Fixed Minilang validation error (missing result-name attributes) introduced by 
my recent commit rev. 1530273

Modified:
     
ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml

Modified: 
ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml?rev=1530876&r1=1530875&r2=1530876&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml
 (original)
+++ 
ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/ledger/GeneralLedgerServices.xml
 Thu Oct 10 08:42:36 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"/>


Reply via email to