|
|
@@ -50,8 +50,38 @@ public class PurchaseDetail {
|
|
|
private Float pd_purctaxrate;
|
|
|
//终端币别
|
|
|
private String pd_purccurrency;
|
|
|
+ //税收分类编码
|
|
|
+ private String pd_taxcode;
|
|
|
+ //开票名称
|
|
|
+ private String pd_billname;
|
|
|
+ //开票型号
|
|
|
+ private String pd_orispeccode;
|
|
|
private List<Attach> attaches;
|
|
|
|
|
|
+ public String getPd_taxcode() {
|
|
|
+ return pd_taxcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_taxcode(String pd_taxcode) {
|
|
|
+ this.pd_taxcode = pd_taxcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPd_billname() {
|
|
|
+ return pd_billname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_billname(String pd_billname) {
|
|
|
+ this.pd_billname = pd_billname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPd_orispeccode() {
|
|
|
+ return pd_orispeccode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_orispeccode(String pd_orispeccode) {
|
|
|
+ this.pd_orispeccode = pd_orispeccode;
|
|
|
+ }
|
|
|
+
|
|
|
public Float getPd_purcprice() {
|
|
|
return pd_purcprice;
|
|
|
}
|
|
|
@@ -265,6 +295,9 @@ public class PurchaseDetail {
|
|
|
item.setPurcCurrency(this.pd_purccurrency);
|
|
|
item.setPurcPrice(this.pd_purcprice);
|
|
|
item.setPurcTaxRate(this.pd_purctaxrate);
|
|
|
+ item.setTaxCode(this.pd_taxcode);
|
|
|
+ item.setBillName(this.pd_billname);
|
|
|
+ item.setOriSpecCode(this.pd_orispeccode);
|
|
|
if (!CollectionUtils.isEmpty(this.attaches)) {
|
|
|
Set<com.uas.platform.b2b.model.Attach> b2bAttaches = new HashSet<com.uas.platform.b2b.model.Attach>();
|
|
|
for(Attach attach : this.attaches) {
|