Commit 3409b726 authored by cpatil's avatar cpatil

reset pending quantity flag false


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93942 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b3632f93
...@@ -945,6 +945,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc ...@@ -945,6 +945,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc
System.out.println("parentNodeListLength------------------->"+parentNodeListLength); System.out.println("parentNodeListLength------------------->"+parentNodeListLength);
for (int selectedRow = 0; selectedRow < parentNodeListLength; selectedRow++) for (int selectedRow = 0; selectedRow < parentNodeListLength; selectedRow++)
{ {
pendingOrderFlag = false;
flag = false; flag = false;
parentNode = parentNodeList.item(selectedRow); parentNode = parentNodeList.item(selectedRow);
...@@ -1173,7 +1174,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc ...@@ -1173,7 +1174,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc
{ {
mainStr = mainStr + "Invalid quantity,Entered quantity is not in multiple of Case/shipper Quantity.\n"; mainStr = mainStr + "Invalid quantity,Entered quantity is not in multiple of Case/shipper Quantity.\n";
} }
for(int i = 0; i < elements * 4;i++) for(int i = 0; i < elements * 4; i++ )
{ {
if( i > 0) if( i > 0)
{ {
...@@ -1187,7 +1188,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc ...@@ -1187,7 +1188,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc
mainStr = mainStr + "\n pending / incomplete Wave found against sale order.\n"; mainStr = mainStr + "\n pending / incomplete Wave found against sale order.\n";
} }
for(int i = 0; i < elements * 4 ;i++) for(int i = 0; i < elements1 * 4 ; i++ )
{ {
if( i > 0) if( i > 0)
{ {
......
...@@ -789,6 +789,7 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat ...@@ -789,6 +789,7 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat
System.out.println("parentNodeListLength------------------->"+parentNodeListLength); System.out.println("parentNodeListLength------------------->"+parentNodeListLength);
for (int selectedRow = 0; selectedRow < parentNodeListLength; selectedRow++) for (int selectedRow = 0; selectedRow < parentNodeListLength; selectedRow++)
{ {
pendingOrderFlag = false;
flag = false; flag = false;
parentNode = parentNodeList.item(selectedRow); parentNode = parentNodeList.item(selectedRow);
...@@ -1088,7 +1089,7 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat ...@@ -1088,7 +1089,7 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat
mainStr = mainStr + "\n pending / incomplete Wave found against sale order.\n"; mainStr = mainStr + "\n pending / incomplete Wave found against sale order.\n";
} }
for(int i = 0; i < elements * 4 ;i++) for(int i = 0; i < elements1 * 4 ;i++)
{ {
if( i > 0) if( i > 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