Commit db1226bb authored by manohar's avatar manohar

Potency calculation changes


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@101745 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f42ce7ef
...@@ -4,13 +4,14 @@ import java.util.ArrayList; ...@@ -4,13 +4,14 @@ import java.util.ArrayList;
public class WorderStkBean public class WorderStkBean
{ {
private double potencyAdj = 0,stkQuantityNew = 0,updQty = 0,qtyAdj = 0; private double potencyAdj = 0,stkQuantityNew = 0,updQty = 0,qtyAdj = 0,reserveStkQty = 0;
private double allocQty = 0,stkQuantity = 0,stkPotencyPerc = 0,actualAllocQty = 0; private double allocQty = 0,stkQuantity = 0,stkPotencyPerc = 0,actualAllocQty = 0;
java.sql.Timestamp expDate = null,mfgDate = null; java.sql.Timestamp expDate = null,mfgDate = null;
private String locCode = "",lotNo = "",lotSl = "",siteCode = "",itemCode = "",itemRef = "",alternate = "",itemDescr = "", private String locCode = "",lotNo = "",lotSl = "",siteCode = "",itemCode = "",itemRef = "",alternate = "",itemDescr = "",
workOrder = "",expLevel = "",critItem = "",unit = "",dimension = "",reserveStk = "",reserveStkTranId = "", workOrder = "",expLevel = "",critItem = "",unit = "",dimension = "",reserveStk = "",reserveStkTranId = "",
siteCodeMfg ="",otherSiteYN = "",stockSufficient = "",isStockDetail = "",alternateItem = ""; siteCodeMfg ="",otherSiteYN = "",stockSufficient = "",isStockDetail = "",alternateItem = "";
private double minQtyReq = 0,quantity = 0; private double minQtyReq = 0,quantity = 0;
int reserveLineNo = 0;
...@@ -51,7 +52,13 @@ public class WorderStkBean ...@@ -51,7 +52,13 @@ public class WorderStkBean
public void setOtherSiteYN(String otherSiteYN) { public void setOtherSiteYN(String otherSiteYN) {
this.otherSiteYN = otherSiteYN; this.otherSiteYN = otherSiteYN;
} }
int reserveLineNo = 0;
public double getReserveStkQty() {
return reserveStkQty;
}
public void setReserveStkQty(double reserveStkQty) {
this.reserveStkQty = reserveStkQty;
}
......
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