svn commit: r550612 - /ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java

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

svn commit: r550612 - /ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java

jaz-3
Author: jaz
Date: Mon Jun 25 14:19:19 2007
New Revision: 550612

URL: http://svn.apache.org/viewvc?view=rev&rev=550612
Log:
fixed service missing return parameter

Modified:
    ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java

Modified: ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java?view=diff&rev=550612&r1=550611&r2=550612
==============================================================================
--- ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java (original)
+++ ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java Mon Jun 25 14:19:19 2007
@@ -158,7 +158,9 @@
             return ServiceUtil.returnError(gse.getMessage());
         }
 
-        return ServiceUtil.returnSuccess();
+        Map result = ServiceUtil.returnSuccess();
+        result.put("finAccountId", finAccountId);
+        return result;
     }
 
     public static Map createFinAccountForStore(DispatchContext dctx, Map context) {