店铺详情信息fix bug

This commit is contained in:
Jack 2025-12-29 20:50:51 +08:00
parent a929635bfc
commit db73ca67e9

View File

@ -714,15 +714,13 @@ public class ShopMchEntryServiceImpl extends BaseServiceImpl<ShopMchEntryMapper,
// 获取店铺信息
ShopStoreInfo storeInfo = shopStoreInfoService.getById(record.getStore_id());
if (storeInfo != null && retObj != null) {
// log.warn("店铺信息异常,找不到对应店铺: storeId={}", record.getStore_id());
// return CommonResult.success(null, "店铺信息异常!");
retObj.set("is_delivery_self", storeInfo.getIs_delivery_self());
return CommonResult.success(record);
}
}
return CommonResult.success(record);
} catch (Exception e) {
log.error("获取商家入驻申请详情异常: recordId={}, mobile={}", recordId, mobile, e);
return CommonResult.failed("系统异常,请稍后重试");