Commit 6b67fcb8cf825d367a00ded9d567d315fa2ba932

Authored by yeqianyong
1 parent ae985a7f

楚江ERP-发货明细增加运费字段

@@ -84,6 +84,12 @@ public class ShipmentsPlanDetailBo extends BaseBo<ShipmentsPlanDetail> { @@ -84,6 +84,12 @@ public class ShipmentsPlanDetailBo extends BaseBo<ShipmentsPlanDetail> {
84 private String packagingFee; 84 private String packagingFee;
85 85
86 /** 86 /**
  87 + * 运费
  88 + */
  89 + @ApiModelProperty("运费")
  90 + private String shippingCost;
  91 +
  92 + /**
87 * 合同类型 93 * 合同类型
88 */ 94 */
89 @ApiModelProperty("合同类型") 95 @ApiModelProperty("合同类型")
@@ -76,6 +76,12 @@ public class ShipmentsPlanDetail extends BaseEntity implements BaseDto { @@ -76,6 +76,12 @@ public class ShipmentsPlanDetail extends BaseEntity implements BaseDto {
76 private String packagingFee; 76 private String packagingFee;
77 77
78 /** 78 /**
  79 + * 运费
  80 + */
  81 + @TableField(exist = false)
  82 + private String shippingCost;
  83 +
  84 + /**
79 * 合同类型 85 * 合同类型
80 */ 86 */
81 @TableField(exist = false) 87 @TableField(exist = false)
@@ -47,6 +47,7 @@ @@ -47,6 +47,7 @@
47 END AS order_type, 47 END AS order_type,
48 o.ordering_unit AS customer_id, 48 o.ordering_unit AS customer_id,
49 o.packaging_fee, 49 o.packaging_fee,
  50 + o.shipping_cost,
50 c.name AS customer_name, 51 c.name AS customer_name,
51 tb.order_spec_id, 52 tb.order_spec_id,
52 ol.brand, 53 ol.brand,
@@ -204,6 +205,7 @@ @@ -204,6 +205,7 @@
204 o.delivery_method, 205 o.delivery_method,
205 o.settlement_terms, 206 o.settlement_terms,
206 o.packaging_fee, 207 o.packaging_fee,
  208 + o.shipping_cost,
207 sc.type as contract_type, 209 sc.type as contract_type,
208 CASE 210 CASE
209 WHEN sc.type IN ('DISTRIB_STD', 'DIST_STOCK_CONTRACT', 'DRAFT_DIST_AGMT') THEN '经销' 211 WHEN sc.type IN ('DISTRIB_STD', 'DIST_STOCK_CONTRACT', 'DRAFT_DIST_AGMT') THEN '经销'