|
@@ -785,7 +785,7 @@ public class OrderController {
|
|
|
ExcelExport ee = new ExcelExport("订单信息");
|
|
|
|
|
|
String[] header = new String[]{"订单编号","商户订单编号", "所属门店", "供应商", "供应商第三方商户代码", "订单状态", "SKU", "商品名称", "数量", "销售价", "实际支付金额", "保税模式", "快递公司名称", "快递单编号", "海关清单编号", "收货人姓名", "收件人手机", "收件人省份", "收件人城市", "收件人区县", "收件人地址", "下单时间", "支付流水号","身份证号"
|
|
|
- ,"原产国","规格型号","品牌","单位","毛重(kg)","净重"};
|
|
|
+ ,"原产国","规格型号","品牌","单位","毛重(kg)","净重","零售价","促销价","成交价"};
|
|
|
|
|
|
List<Map<String, Object>> list = new ArrayList<>();
|
|
|
if (orderList != null && orderList.size() != 0) {
|
|
@@ -827,12 +827,18 @@ public class OrderController {
|
|
|
map.put("GrossWeight", orderEntity.getGrossWeight());
|
|
|
map.put("NetWeight", orderEntity.getNetWeight());
|
|
|
|
|
|
+ // 零售价\促销价\成交价
|
|
|
+ map.put("SellPrice",orderEntity.getRetailPrice());
|
|
|
+ map.put("TopicPrice",orderEntity.getTopicPrice());
|
|
|
+ map.put("FinalPrice",orderEntity.getActualPrice());
|
|
|
+
|
|
|
list.add(map);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
ee.addSheetByMap("订单信息", list, header);
|
|
|
ee.export(response);
|
|
|
+
|
|
|
return R.ok();
|
|
|
}
|
|
|
|