|
@@ -118,6 +118,10 @@ public class FsStoreAfterSalesScrmController extends BaseController
|
|
|
// user.setPhone(ParseUtils.parsePhone(user.getPhone()));
|
|
// user.setPhone(ParseUtils.parsePhone(user.getPhone()));
|
|
|
FsStoreOrderScrm order=fsStoreOrderService.selectFsStoreOrderByOrderCode(afterSales.getOrderCode());
|
|
FsStoreOrderScrm order=fsStoreOrderService.selectFsStoreOrderByOrderCode(afterSales.getOrderCode());
|
|
|
FsStoreScrm storeScrm = storeScrmService.selectFsStoreByStoreId(order.getStoreId());
|
|
FsStoreScrm storeScrm = storeScrmService.selectFsStoreByStoreId(order.getStoreId());
|
|
|
|
|
+ if(storeScrm == null){
|
|
|
|
|
+ storeScrm = new FsStoreScrm();
|
|
|
|
|
+ storeScrm.setStoreName("暂无店铺");
|
|
|
|
|
+ }
|
|
|
afterSales.setVerifyCode(order.getVerifyCode() != null?order.getVerifyCode():null);
|
|
afterSales.setVerifyCode(order.getVerifyCode() != null?order.getVerifyCode():null);
|
|
|
afterSales.setBatchNumber(order.getBatchNumber() != null?order.getBatchNumber():null);
|
|
afterSales.setBatchNumber(order.getBatchNumber() != null?order.getBatchNumber():null);
|
|
|
//获取溯源码相关数据
|
|
//获取溯源码相关数据
|