You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2010/12/02 07:40:11 UTC

svn commit: r1041289 - /ofbiz/trunk/applications/accounting/servicedef/services_billing.xml

Author: hansbak
Date: Thu Dec  2 06:40:11 2010
New Revision: 1041289

URL: http://svn.apache.org/viewvc?rev=1041289&view=rev
Log:
correct conversion error by changing the service definition field format from long to bigdecimal, was only used in create/update billing account term screens

Modified:
    ofbiz/trunk/applications/accounting/servicedef/services_billing.xml

Modified: ofbiz/trunk/applications/accounting/servicedef/services_billing.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_billing.xml?rev=1041289&r1=1041288&r2=1041289&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_billing.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_billing.xml Thu Dec  2 06:40:11 2010
@@ -83,7 +83,7 @@ under the License.
         <permission-service service-name="acctgBillingAcctCheck" main-action="CREATE"/>
         <attribute name="billingAccountId" type="String" mode="IN" optional="false"/>
         <attribute name="termTypeId" type="String" mode="IN" optional="false"/>
-        <attribute name="termValue" type="Long" mode="IN" optional="false"/>
+        <attribute name="termValue" type="BigDecimal" mode="IN" optional="false"/>
         <attribute name="uomId" type="String" mode="IN" optional="true"/>
         <attribute name="billingAccountTermId" type="String" mode="OUT" optional="false"/>
     </service>
@@ -94,7 +94,7 @@ under the License.
         <attribute name="billingAccountTermId" type="String" mode="IN" optional="false"/>
         <attribute name="billingAccountId" type="String" mode="IN" optional="true"/>
         <attribute name="termTypeId" type="String" mode="IN" optional="true"/>
-        <attribute name="termValue" type="Long" mode="IN" optional="true"/>
+        <attribute name="termValue" type="BigDecimal" mode="IN" optional="true"/>
         <attribute name="uomId" type="String" mode="IN" optional="true"/>
     </service>
     <service name="removeBillingAccountTerm" engine="simple"