master:后台管理系统档口首页编辑完善;

pull/1121/head
liujiang 2025-12-03 15:40:26 +08:00
parent b0788408d2
commit 0c707d59e3
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ public class StoreHomepageServiceImpl implements IStoreHomepageService {
? storeProdMap.get(x.getStoreProdId()).getProdArtNum() : "");
// 跳转到档口首页
} else if (Objects.equals(x.getDisplayType(), HomepageJumpType.JUMP_STORE.getValue())) {
decorationDTO.setStoreId(x.getJumpStoreId())
.setBizName(ObjectUtils.isEmpty(x.getStoreProdId()) ? "" : store.getStoreName());
Store jumpStore = this.storeMapper.selectById(x.getJumpStoreId());
decorationDTO.setStoreId(x.getJumpStoreId()).setBizName(ObjectUtils.isNotEmpty(jumpStore) ? jumpStore.getStoreName() : "");
}
return decorationDTO;
}).collect(Collectors.toList());