Commit c3a780c7 authored by pdas's avatar pdas

changes made for the condition qtyalloc>0


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99362 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c8110f0c
......@@ -319,9 +319,9 @@ public class DespatchPrs extends ValidatorEJB implements DespatchPrsLocal, Despa
// 22/02/10 manoharan if allocation found in sordalloc then deallocate
//if (count > 0 ) // 04/04/12 manoharan
//if (qtyAlloc > 0) // 04/04/12 manoharan
if((qtyAlloc >= totAllocQty) && (totAllocQty > 0))//01/11/2012 manoj sharma for deallocation
if((qtyAlloc >= totAllocQty) && (qtyAlloc > 0))//01/11/2012 manoj sharma for deallocation
//changed to qtyAlloc >=totAllocQty from qtyAlloc > totAllocQty by Priyanka Das 09/11/2015
//Added (totAllocQty >0) condition by Priyanka Das 02/12/2015
//Added (qtyAlloc >0) condition by Priyanka Das 07/12/2015
{
if (qtyAlloc - qtyStduom <= 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