Commit 7af1e20c authored by arawankar's avatar arawankar

Changes made in IndentReqIc.javato take quantity in decimal format

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@184018 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d97a0334
......@@ -1227,8 +1227,11 @@ public class IndentReqIC extends ValidatorEJB implements IndentICLocal, IndentIC
System.out.println("-------------ls_indent------------------"+ls_indent);
System.out.println("-------------ll_lineno------------------"+ll_lineno);
System.out.println("-------------ls_ind_type------------------"+ls_ind_type);*/
if(Integer.parseInt(mqty) <= 0)
//Modified by Anjali R. on[23/04/2018][To take quantity in decimal][Start]
//if(Integer.parseInt(mqty) <= 0)
if(Double.parseDouble(mqty) <= 0)
//Modified by Anjali R. on[23/04/2018][To take quantity in decimal][End]
{
errCode = "VTQTY";
errList.add(errCode);
......
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