Commit 98d367cc authored by shiyu's avatar shiyu

未寄出寄出方式不展示

parent 1647b3ff
...@@ -59,7 +59,7 @@ public enum ResultCode { ...@@ -59,7 +59,7 @@ public enum ResultCode {
USER_STOP_AI_ANSWER(30000, "该问题被用户要求停止回答,回复不会被发送"), USER_STOP_AI_ANSWER(30000, "该问题被用户要求停止回答,回复不会被发送"),
NOT_CONFIRM_PRICE_FOR_SEND(30005, "请先确认是否满意货品的初步估价,查看详情说明"), NOT_CONFIRM_PRICE_FOR_SEND(30005, "请先确认是否满意货品的初步估价"),
; ;
int code; int code;
......
...@@ -238,7 +238,7 @@ public class ConsignSaleServiceImpl implements ConsignSaleService { ...@@ -238,7 +238,7 @@ public class ConsignSaleServiceImpl implements ConsignSaleService {
consignSaleAppletVo.setLogisticsCode(consignSale.getLogisticsCode()); consignSaleAppletVo.setLogisticsCode(consignSale.getLogisticsCode());
consignSaleAppletVo.setLogisticsName(LogisticsEnum.getNameByCode(consignSale.getLogisticsCode())); consignSaleAppletVo.setLogisticsName(LogisticsEnum.getNameByCode(consignSale.getLogisticsCode()));
consignSaleAppletVo.setWaybill(consignSale.getWaybill()); consignSaleAppletVo.setWaybill(consignSale.getWaybill());
consignSaleAppletVo.setSendType("自行寄出"); consignSaleAppletVo.setSendType(StringUtils.isEmpty(consignSale.getWaybill()) ? null : "自行寄出");
consignSaleAppletVo.setCustomState(consignSale.getCustomState()); consignSaleAppletVo.setCustomState(consignSale.getCustomState());
consignSaleAppletVo.setCustomStateName(ConsignSaleEnum.SaleForUserStateEnum.getNameByCode(consignSale.getCustomState())); consignSaleAppletVo.setCustomStateName(ConsignSaleEnum.SaleForUserStateEnum.getNameByCode(consignSale.getCustomState()));
......
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