Commit 5c438fb8 authored by rbhogale's avatar rbhogale

Changed by Rohan to changed quantity feild as double


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92793 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8bdc837c
......@@ -100,8 +100,14 @@ public class PickOrderIC extends ValidatorEJB implements PickOrderICLocal,PickOr
String sql = "";
String lotSl = "";
//Changed by Rohan on 10/8/12 to define variables.start
/*
int caseSize = 0;
int caseQty = 0;
*/
double caseSize = 0.0;
double caseQty = 0.0;
double qty = 0.0;
//Changed by Rohan on 10/8/12 to define variables.end
String pickType = "";
String pickOrder = "";
String pickLineNo = "";
......@@ -497,8 +503,10 @@ public class PickOrderIC extends ValidatorEJB implements PickOrderICLocal,PickOr
}
else
{
//Changed by Rohan on 04-03-12 for chnging quanity to parse double
//int qty = Integer.parseInt(columnValue);
qty = Double.parseDouble(columnValue);
int qty = Integer.parseInt(columnValue);
System.out.println("qty["+qty+"]");
//Changed by Rohan on 11/08/12 to define variables properly
......
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