|
@@ -19,6 +19,7 @@ public class SaleDownChange {
|
|
|
|
|
|
|
|
private long b2b_pc_id;
|
|
private long b2b_pc_id;
|
|
|
private String sc_code;
|
|
private String sc_code;
|
|
|
|
|
+ private String sc_sacode;
|
|
|
private Date sc_indate;
|
|
private Date sc_indate;
|
|
|
private String sc_recorder;
|
|
private String sc_recorder;
|
|
|
private String sc_newpayments;
|
|
private String sc_newpayments;
|
|
@@ -100,6 +101,14 @@ public class SaleDownChange {
|
|
|
this.sc_description = sc_description;
|
|
this.sc_description = sc_description;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public String getSc_sacode() {
|
|
|
|
|
+ return sc_sacode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSc_sacode(String sc_sacode) {
|
|
|
|
|
+ this.sc_sacode = sc_sacode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public List<SaleDownChangeDetail> getChangeDetails() {
|
|
public List<SaleDownChangeDetail> getChangeDetails() {
|
|
|
return changeDetails;
|
|
return changeDetails;
|
|
|
}
|
|
}
|
|
@@ -120,6 +129,7 @@ public class SaleDownChange {
|
|
|
public SaleDownChange(PurchaseOrderChange orderChange) {
|
|
public SaleDownChange(PurchaseOrderChange orderChange) {
|
|
|
this.b2b_pc_id = orderChange.getId();
|
|
this.b2b_pc_id = orderChange.getId();
|
|
|
this.sc_code = orderChange.getCode();
|
|
this.sc_code = orderChange.getCode();
|
|
|
|
|
+ this.sc_sacode = orderChange.getOrder().getCode();
|
|
|
this.sc_indate = orderChange.getDate();
|
|
this.sc_indate = orderChange.getDate();
|
|
|
this.sc_remark = orderChange.getRemark();
|
|
this.sc_remark = orderChange.getRemark();
|
|
|
this.sc_description = orderChange.getDescription();
|
|
this.sc_description = orderChange.getDescription();
|