Commit fe079d45 authored by smanohar's avatar smanohar

Quantity should not be more then PO pending quantity, this validation was done...

Quantity should not be more then PO pending quantity, this validation was done only if po quantity > 0, that condition removed

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@201440 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 26ffe5b3
......@@ -1848,8 +1848,8 @@ public class PoReceiptIc extends ValidatorEJB implements PoReceiptIcLocal,PoRec
System.out.println("lcrcpqty@@@@@@"+lcrcpqty);
mqty2 = lcdlvqty + qty + lcrcpqty;
System.out.println("mqty2@@@@@@"+mqty2);
if (lcordqty > 0)
{
//if (lcordqty > 0) // 31-may-19 manoharan commented as always quantity to be compared with PO pending quantity
//{
if (mqty2 > lcordqty )
{
sql="select (case when ordc_perc is null then 0 else ordc_perc end), " +
......@@ -1879,7 +1879,7 @@ public class PoReceiptIc extends ValidatorEJB implements PoReceiptIcLocal,PoRec
}
}
}
//}
}
}
......
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