Commit e8b5469a authored by manohar's avatar manohar

This commit was generated by cvs2svn to compensate for changes in r221,

which included commits to RCS files with non-trunk default branches.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91286 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 57ee8429
/*win_name=w_dist_order(d_dist_order_edit/d_distorderdet_brow)
Name :- BaseInfo Pvt Ltd.
Modification:-
Reason Date[Like 05052007 all modified code should contain this so that search easier]
1-
2-
3-
*/
package ibase.webitm.ejb.dis;
import java.sql.Timestamp;
class LotDet
{
private String lotNo;
private String lotSl;
private double qty ;
private double allocQty;
private int art ;
public void setLotNo(String lotNo)
{
this.lotNo = lotNo;
}
public String getLotNo()
{
return this.lotNo;
}
public void setLotSl(String lotSl)
{
this.lotSl = lotSl;
}
public String getLotSl()
{
return this.lotSl;
}
public void setQty(double qty)
{
this.qty = qty;
}
public double getQty()
{
return this.qty;
}
public void setAllocQty(double allocQty)
{
this.allocQty = allocQty;
}
public double getAllocQty()
{
return this.allocQty;
}
public void setNoArt(int art)
{
this.art = art;
}
public int getNoArt()
{
return this.art;
}
}
\ No newline at end of file
This diff is collapsed.
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
//import javax.ejb.EJBHome;
//import ibase.webitm.ejb.ProcessHome;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local; // added for ejb3
import ibase.webitm.utility.ITMException;
import org.w3c.dom.*;
@Local // added for ejb3
//public interface StockAllocationPrcHome extends ProcessHome, EJBHome
public interface StockAllocationPrcLocal extends ibase.webitm.ejb.ProcessLocal//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(Document dom, Document dom2, String windowNamem, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import org.w3c.dom.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessRemote;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
//public interface StockAllocationPrc extends ibase.webitm.ejb.Process, EJBObject
public interface StockAllocationPrcRemote extends ibase.webitm.ejb.ProcessRemote//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(Document dom, Document dom2, String windowNamem, String xtraParams) throws RemoteException,ITMException;
}
This diff is collapsed.
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
//import javax.ejb.EJBHome;
//import ibase.webitm.ejb.ProcessHome;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local; // added for ejb3
import ibase.webitm.utility.ITMException;
import org.w3c.dom.*;
@Local // added for ejb3
//public interface StockAllocationPrcHome extends ProcessHome, EJBHome
//public interface StockDeallocationPrc extends ibase.webitm.ejb.Process, EJBObject
public interface StockDeallocationPrcLocal extends ibase.webitm.ejb.ProcessLocal//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(Document dom, Document dom2, String windowNamem, String xtraParams) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import org.w3c.dom.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessRemote;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
//public interface StockDeallocationPrc extends ibase.webitm.ejb.Process, EJBObject
public interface StockDeallocationPrcRemote extends ibase.webitm.ejb.ProcessRemote//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(Document dom, Document dom2, String windowNamem, String xtraParams) throws RemoteException,ITMException;
}
/*
Name :- BaseInfo Pvt Ltd.
Modification:-
Reason Date[Like 05052007 all modified code should contain this so that search easier]
1-
2-
3-
*/
package ibase.webitm.ejb.dis;
import java.sql.Timestamp;
import java.util.ArrayList;
class StockItem
{
private String itemCode;
private double totAmt;
private int distLineno;
private String itemSer;
private String unit;
private String locCode ;
private String siteCode ;
ArrayList lotWiseList = new ArrayList();
public void setLotWiseList(LotDet lotDet)
{
this.lotWiseList.add(lotDet);
}
public ArrayList getLotWiseList()
{
return lotWiseList;
}
public void setSiteCode(String siteCode)
{
this.siteCode = siteCode;
}
public String getSiteCode()
{
return this.siteCode;
}
public void setLocCode(String locCode)
{
this.locCode = locCode;
}
public String getLocCode()
{
return this.locCode;
}
public void setItemCode(String itemCode)
{
this.itemCode = itemCode;
}
public String getItemCode()
{
return this.itemCode;
}
public void setTotAmt(double totAmt)
{
this.totAmt = totAmt;
}
public double getTotAmt()
{
return this.totAmt;
}
public void setDistLineno(int distLineno)
{
this.distLineno = distLineno;
}
public int getDistLineno()
{
return this.distLineno;
}
public void setItemSer(String itemSer)
{
this.itemSer = itemSer;
}
public String getItemSer()
{
return this.itemSer;
}
public void setUnit(String unit)
{
this.unit = unit;
}
public String getUnit()
{
return this.unit;
}
}
\ No newline at end of file
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