Commit 7725749b authored by prane's avatar prane

upcommented sop for dueDate issue relativeDate()

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@193975 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 15b0c7eb
...@@ -12,6 +12,7 @@ import org.w3c.dom.*; ...@@ -12,6 +12,7 @@ import org.w3c.dom.*;
//import ibase.webitm.utility.ITMException; //import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*; import ibase.webitm.ejb.*;
import ibase.utility.BaseLogger;
//import ibase.webitm.utility.GenericUtility; //import ibase.webitm.utility.GenericUtility;
import ibase.utility.E12GenericUtility; import ibase.utility.E12GenericUtility;
//import ibase.webitm.utility.TransIDGenerator; //import ibase.webitm.utility.TransIDGenerator;
...@@ -143,9 +144,11 @@ public class ExplodeBom ...@@ -143,9 +144,11 @@ public class ExplodeBom
leadTime = mfgLeadTime + qcLeadTime; leadTime = mfgLeadTime + qcLeadTime;
iLeadTime = (int)leadTime; iLeadTime = (int)leadTime;
//System.out.println("Due Date Before.........."+dueDate) ; System.out.println("Due Date Before.........."+dueDate) ;
BaseLogger.log( "0", null, null, "Due Date Before..........["+dueDate+"]" );
dueDate = utilMethods.RelativeDate(dueDate, iLeadTime * -1); // 10/12/07 manoharan dueDate = utilMethods.RelativeDate(dueDate, iLeadTime * -1); // 10/12/07 manoharan
//System.out.println("Due Date After..........."+dueDate) ; System.out.println("Due Date After..........."+dueDate) ;
BaseLogger.log( "0", null, null, "Due Date After..........["+dueDate+"]" );
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(genericUtility.getDBDateFormat()); SimpleDateFormat simpleDateFormat = new SimpleDateFormat(genericUtility.getDBDateFormat());
sDueDate = simpleDateFormat.format(dueDate); sDueDate = simpleDateFormat.format(dueDate);
......
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