Commit c40fb1bc authored by kshinde's avatar kshinde

corrected validation for saleorder from and to


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@106561 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b9c8183b
......@@ -218,7 +218,8 @@ public class PostOrderProcess extends ProcessEJB implements PostOrderProcessLoca
}
else
{
count = fromSaleOrder.compareTo(toSaleOrder);
//count = fromSaleOrder.compareTo(toSaleOrder);
count = toSaleOrder.compareTo(fromSaleOrder);
System.out.println("count inside tran_id__to =========>>"+count);
if((count < 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