## 订单详情导出添加商品类型;

This commit is contained in:
cabbage 2025-08-27 09:05:59 +08:00
parent eaa1f6f80d
commit 80f27bbec8
2 changed files with 9 additions and 0 deletions

View File

@ -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()));
}

View File

@ -292,6 +292,13 @@ public class WaresOrderInfoVo implements Serializable {
*/
private Integer systemType;
/**
* 商品类型
*/
private Integer isMakerGift;
@Excel(name = "商品类型")
private String isMakerGiftVal;
/**
* 创建时间
*/