details:   /erp/devel/pi/rev/e6fc833ee397
changeset: 8002:e6fc833ee397
user:      Harikrishnan Raja <harikrishnan.raja <at> openbravo.com>
date:      Mon Aug 02 19:46:28 2010 +0530
summary:   Fixes Issue 13325: Method M_GET_OFFERS_PRICE the standard price will 
be passed with comma separated (Example : 35,00) standard price.Hence the value 
is not calculated properly.

diffstat:

 src/org/openbravo/erpCommon/ad_callouts/SL_Invoice_Product.java |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r a2b32071c996 -r e6fc833ee397 
src/org/openbravo/erpCommon/ad_callouts/SL_Invoice_Product.java
--- a/src/org/openbravo/erpCommon/ad_callouts/SL_Invoice_Product.java   Mon Aug 
02 15:19:01 2010 +0200
+++ b/src/org/openbravo/erpCommon/ad_callouts/SL_Invoice_Product.java   Mon Aug 
02 19:46:28 2010 +0530
@@ -55,7 +55,7 @@
         log4j.debug("CHANGED: " + strChanged);
       String strUOM = vars.getStringParameter("inpmProductId_UOM");
       String strPriceList = vars.getStringParameter("inpmProductId_PLIST");
-      String strPriceStd = vars.getStringParameter("inpmProductId_PSTD");
+      String strPriceStd = vars.getNumericParameter("inpmProductId_PSTD");
       String strPriceLimit = vars.getStringParameter("inpmProductId_PLIM");
       String strCurrency = vars.getStringParameter("inpmProductId_CURR");
       String strQty = vars.getNumericParameter("inpqtyinvoiced");

------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to