Commit 281eadfc authored by ssalve's avatar ssalve

Sarita: Added by sarita to resolve format exception for adj_variance itemchange on 08FEB2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179923 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 19469848
...@@ -10329,7 +10329,9 @@ public class POrderIC extends ValidatorEJB implements POrderICRemote, ...@@ -10329,7 +10329,9 @@ public class POrderIC extends ValidatorEJB implements POrderICRemote,
} }
if(Value != null && Value.trim().length() > 0) if(Value != null && Value.trim().length() > 0)
{ {
ValueLc = Double.parseDouble(ratestd) ; //Added and changes by sarita on 08FEB2018
//ValueLc = Double.parseDouble(ratestd) ;
ValueLc = Double.parseDouble(Value) ;
} }
if (qtyLc > 0 && rateLc > 0) if (qtyLc > 0 && rateLc > 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment