Commit 0cae033f authored by kmandhre's avatar kmandhre

source marge mail by cpatil


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95265 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fe4d4f45
...@@ -2,6 +2,8 @@ package ibase.webitm.ejb.mfg; ...@@ -2,6 +2,8 @@ package ibase.webitm.ejb.mfg;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map;
import java.util.Set;
//import ibase.webitm.utility.ITMException; //import ibase.webitm.utility.ITMException;
import ibase.webitm.utility.GenericUtility; import ibase.webitm.utility.GenericUtility;
//import java.sql.Timestamp; //import java.sql.Timestamp;
...@@ -90,6 +92,18 @@ class ADPElement ...@@ -90,6 +92,18 @@ class ADPElement
private String originalOrAltitem;//Manoj dtd 30/04/2014 to check whether Original/Alternate item private String originalOrAltitem;//Manoj dtd 30/04/2014 to check whether Original/Alternate item
private String itemCodeParent;//added by cpatil on 03/05/14 private String itemCodeParent;//added by cpatil on 03/05/14
private String bomCodeParent="";
private HashMap bomSet = null;
public void setbomSet(HashMap bomCode) //aded by cpatil on 09/06/14
{
this.bomSet = bomCode ;
}
public HashMap getbomSet()
{
return this.bomSet;
}
public ADPElement() public ADPElement()
{ {
...@@ -227,6 +241,7 @@ class ADPElement ...@@ -227,6 +241,7 @@ class ADPElement
public void setDemand(java.sql.Timestamp dueDate, double demand, String saleOrder, String lineNo) public void setDemand(java.sql.Timestamp dueDate, double demand, String saleOrder, String lineNo)
//public void setDemand(java.sql.Timestamp dueDate, double demand) //public void setDemand(java.sql.Timestamp dueDate, double demand)
{ {
System.out.println("Calling setDemand() for saleOrder["+saleOrder+"]lineNo["+lineNo+"]this.refId["+this.refId+"]");
this.demand += demand; this.demand += demand;
//this.saleOrder = saleOrder; //this.saleOrder = saleOrder;
//this.lineNo = lineNo; //this.lineNo = lineNo;
...@@ -239,8 +254,6 @@ class ADPElement ...@@ -239,8 +254,6 @@ class ADPElement
else else
this.refId+="#"+saleOrder+"@"+lineNo+"@"+demand; this.refId+="#"+saleOrder+"@"+lineNo+"@"+demand;
} }
...@@ -309,10 +322,21 @@ class ADPElement ...@@ -309,10 +322,21 @@ class ADPElement
{ {
this.bomCode = bomCode; this.bomCode = bomCode;
} }
public String getBomCode() public String getBomCode() // setBomCodeParent
{ {
return this.bomCode; return this.bomCode;
} }
public void setBomCodeParent(String bomCodeParent)
{
this.bomCodeParent = bomCodeParent;
}
public String getBomCodeParent() // setBomCodeParent
{
return this.bomCodeParent;
}
public void setRouteCode(String routeCode) public void setRouteCode(String routeCode)
{ {
this.routeCode = routeCode; this.routeCode = routeCode;
......
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