Commit 4f1e4348 authored by wansari's avatar wansari

W15GSUN010 added getter setter for consider partial alt


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100261 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 34ef21ad
...@@ -17,7 +17,8 @@ public class WorkOrderDetailBean ...@@ -17,7 +17,8 @@ public class WorkOrderDetailBean
private String expLev = "",lineType = "",critItem = "",dueDate = "",quantityRef = "",active = "", private String expLev = "",lineType = "",critItem = "",dueDate = "",quantityRef = "",active = "",
itemRef = "",itemCode = "",bomCode = "",siteCode = "",unit= "",reqType= "",matchPotency= "", itemRef = "",itemCode = "",bomCode = "",siteCode = "",unit= "",reqType= "",matchPotency= "",
usageType= "",allocateType= "",adjPotency= "",considerLotNoIssue= "",locUsageType= "",itemActive= "", usageType= "",allocateType= "",adjPotency= "",considerLotNoIssue= "",locUsageType= "",itemActive= "",
round= "",workOrder ="",suppCodeMfg = "",mfgRef,dimension = "",useInvStatus = "",itemCategory = "",sufficient = "N" ; round= "",workOrder ="",suppCodeMfg = "",mfgRef,dimension = "",useInvStatus = "",itemCategory = "",sufficient = "N",
considerPartialAlt = "";
public double getUpdQty() { public double getUpdQty() {
...@@ -264,8 +265,16 @@ public class WorkOrderDetailBean ...@@ -264,8 +265,16 @@ public class WorkOrderDetailBean
{ {
this.workOrder = workOrder; this.workOrder = workOrder;
} }
//Changed by wasim on 24-11-2015 as it was missing on new code given [START]
public String getConsiderPartialAlt()
{
return considerPartialAlt;
}
public void setConsiderPartialAlt(String considerPartialAlt)
{
this.considerPartialAlt = considerPartialAlt;
}
//Changed by wasim on 24-11-2015 as it was missing on new code given [END]
......
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