## 订单详情导出添加商品类型;
This commit is contained in:
parent
eaa1f6f80d
commit
80f27bbec8
|
@ -301,6 +301,8 @@ public class SaOrderController extends ParentOrderController {
|
|||
if (StringUtils.isNotBlank(waresOrderVo.getOperateScope())) {
|
||||
waresOrderVo.setOperateScope(ESupplyWay.getLabelByVal(Integer.parseInt(waresOrderVo.getOperateScope())));
|
||||
}
|
||||
// 商品类型
|
||||
waresOrderVo.setIsMakerGiftVal(EWaresType.getLabelByValue(waresOrderVo.getIsMakerGift()));
|
||||
// 发货类型
|
||||
waresOrderVo.setShippingChannelStr(EShippingChannel.getLabelByValue(waresOrderVo.getShippingChannel()));
|
||||
}
|
||||
|
|
|
@ -292,6 +292,13 @@ public class WaresOrderInfoVo implements Serializable {
|
|||
*/
|
||||
private Integer systemType;
|
||||
|
||||
/**
|
||||
* 商品类型
|
||||
*/
|
||||
private Integer isMakerGift;
|
||||
@Excel(name = "商品类型")
|
||||
private String isMakerGiftVal;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue