Commit 5f580c4a authored by pjain's avatar pjain

changed by sankara on 28/07/14 for checksheetprintpos


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95709 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3aaff524
...@@ -96,11 +96,23 @@ public class CheckSheetPrintPos extends ValidatorEJB implements CheckSheetPrintP ...@@ -96,11 +96,23 @@ public class CheckSheetPrintPos extends ValidatorEJB implements CheckSheetPrintP
System.out.println("inside if pallet::::::"+palletID); System.out.println("inside if pallet::::::"+palletID);
palletID = null; palletID = null;
} }
if(ptcn != null && !(ptcn.trim().length() > 0)) if(ptcn != null && !(ptcn.trim().length() > 0))
{ {
ptcn = null; ptcn = null;
} }
//Changed by sankara on 28/07/14 for report issue by pallet no start.
if(ptcn == null || ptcn.trim().length() <= 0)
{
ptcn = "";
System.out.println("inside blank ptcn["+ptcn+"]");
}
if(palletID == null || palletID.trim().length() <= 0)
{
palletID = "";
System.out.println("inside blank pallet["+palletID+"]");
}
//Changed by sankara on 28/07/14 for report issue by pallet no end.
System.out.println("palletID:::::::::::"+palletID); System.out.println("palletID:::::::::::"+palletID);
System.out.println("ptcn:::::::::::"+ptcn); System.out.println("ptcn:::::::::::"+ptcn);
GenericUtility genericUtility = GenericUtility.getInstance(); GenericUtility genericUtility = GenericUtility.getInstance();
......
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