Commit fe01938b authored by shiyu's avatar shiyu

用户发货承运商记录更新寄售单

parent 1c9e7179
...@@ -511,6 +511,8 @@ public class ConsignSaleServiceImpl implements ConsignSaleService { ...@@ -511,6 +511,8 @@ public class ConsignSaleServiceImpl implements ConsignSaleService {
//用户寄出商品,状态改为已寄出,后台为待收货 //用户寄出商品,状态改为已寄出,后台为待收货
ConsignSale consignSale = new ConsignSale(); ConsignSale consignSale = new ConsignSale();
consignSale.setSaleId(dto.getSaleId()); consignSale.setSaleId(dto.getSaleId());
consignSale.setLogisticsCode(dto.getLogisticsCode());
consignSale.setWaybill(dto.getWaybill());
consignSale.setCustomState(ConsignSaleEnum.SaleForUserStateEnum.CONSIGNED.getCode()); consignSale.setCustomState(ConsignSaleEnum.SaleForUserStateEnum.CONSIGNED.getCode());
consignSale.setSystemState(ConsignSaleEnum.SaleForSysStateEnum.WAIT_TAKE.getCode()); consignSale.setSystemState(ConsignSaleEnum.SaleForSysStateEnum.WAIT_TAKE.getCode());
consignSaleDao.update(consignSale); consignSaleDao.update(consignSale);
......
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