Commit 4525cd23 by 周晓航

【【云打印】老的订单聚合层支付成功发打印消费者商品对象新增productSpuQuantity字段】

https://www.tapd.cn/43862731/prong/stories/view/1143862731001052628
parent ea2fefaa
......@@ -2359,6 +2359,7 @@ public class OrderAdapter {
productBean1.setParentType(productBean.getProductType());
productBean1.setSonProducts(new ArrayList<>());
productBean1.setUnit(productBean.getUnit());
productBean1.setProductSpuQuantity(productBean.getProductSpuQuantity());
return productBean1;
}
......
......@@ -132,6 +132,11 @@ public class OrderPrintDto {
private List<ProductsBean> materialProducts;
// 商品单位
private String unit;
/**
* 订单新增商品SPU数量字段 https://cf.freemudvip.com/pages/viewpage.action?pageId=209356052
*/
private Integer productSpuQuantity;
}
}
......@@ -352,6 +352,7 @@ public class OrderCenterSdkAdapter {
productBean.setProductForeignProperty(orderItemResp.getProductForeignProperty());
productBean.setExtInfo(orderItemResp.getExtInfo());
productBean.setNote(orderItemResp.getNote());
productBean.setProductSpuQuantity(orderItemResp.getProductSpuQuantity());
// 套餐
productBean.setParentProductId(orderItemResp.getParentProductId());
......
......@@ -188,4 +188,8 @@ public class ProductBeanV1 {
*/
private Boolean isSendGoods;
/**
* 订单新增商品SPU数量字段 https://cf.freemudvip.com/pages/viewpage.action?pageId=209356052
*/
private Integer productSpuQuantity;
}
......@@ -130,4 +130,9 @@ public class OrderItemResp {
//加购人包装费
private Long packPrice;
/**
* 订单新增商品SPU数量字段 https://cf.freemudvip.com/pages/viewpage.action?pageId=209356052
*/
private Integer productSpuQuantity;
}
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