Commit 1911810d authored by msalla's avatar msalla

Channel partner - Missing items in PO to consider and show confirmed status of...

Channel partner - Missing items in PO to consider and show confirmed status of PO, also to show quantity of the PO line

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@205542 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 904a07d3
...@@ -16,8 +16,30 @@ public class MissingItemBean implements Serializable{ ...@@ -16,8 +16,30 @@ public class MissingItemBean implements Serializable{
private String itemCode; private String itemCode;
private String itemDesc; private String itemDesc;
private double itemQuantity;
private String status;
public double getItemQuantity() {
return itemQuantity;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public void setItemQuantity(double totqty) {
this.itemQuantity = totqty;
}
public String getItemCode() { public String getItemCode() {
return itemCode; return itemCode;
} }
......
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