Authored by mali

订单类型

... ... @@ -2394,6 +2394,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService {
resp.setStatusStr(Constant.convertOrderStatusStr(item.getStatus()));
resp.setChannel(Objects.equals(item.getAttributes(), 2) ? 2 : 1); //1,线上订单; 2,门店订单
resp.setProductNum(1);//目前固定为1
resp.setAttributesStr(OrderConfigConstant.getOrderAttributeStr(item.getAttributes()));
if(null==sellerGoodsMap.get(skup)){
LOGGER.warn("convertToResp not correct data,sellerGoodsMap get sku p {} is empty ,buyer order {}",skup,item);
}else{
... ...
... ... @@ -454,7 +454,7 @@ function getOrderInfo(orderCode){
attributesStr = '预售';
}else if("5" == attributes){
attributesStr = '全新瑕疵';
}else if("4" == attributes){
}else if("6" == attributes){
attributesStr = '二手';
}
$("#preSellOrNormal").html(attributesStr);
... ...
... ... @@ -236,6 +236,11 @@ function getOrderList(){
return rowData.orderCode;
}
}, {
title: "订单类型",
field: "attributesStr",
width: 20,
align: "center"
}, {
title: "买家UID",
field: "uid",
width: 20,
... ...