|
|
|
@ -17,7 +17,7 @@ public class OutStoreSubmit extends BaseObservable {
|
|
|
|
|
|
|
|
|
|
private String locationCode;
|
|
|
|
|
private String searchText;
|
|
|
|
|
private int outstockAmount = 1;
|
|
|
|
|
private String outstockAmount = "1";
|
|
|
|
|
private String instockBatch;
|
|
|
|
|
private Long rawOutstockDetailId;
|
|
|
|
|
|
|
|
|
@ -38,11 +38,11 @@ public class OutStoreSubmit extends BaseObservable {
|
|
|
|
|
notifyChange();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getOutstockAmount() {
|
|
|
|
|
public String getOutstockAmount() {
|
|
|
|
|
return outstockAmount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOutstockAmount(int outstockAmount) {
|
|
|
|
|
public void setOutstockAmount(String outstockAmount) {
|
|
|
|
|
this.outstockAmount = outstockAmount;
|
|
|
|
|
notifyChange();
|
|
|
|
|
}
|
|
|
|
@ -66,7 +66,7 @@ public class OutStoreSubmit extends BaseObservable {
|
|
|
|
|
|
|
|
|
|
public void subClear() {
|
|
|
|
|
locationCode = null;
|
|
|
|
|
outstockAmount = 1;
|
|
|
|
|
outstockAmount = "1";
|
|
|
|
|
instockBatch = null;
|
|
|
|
|
notifyChange();
|
|
|
|
|
}
|
|
|
|
|