feat(BdWaresSpecsSkuMapper.xml):商品发布-规格明细隐藏sku字段

This commit is contained in:
woody 2025-04-29 15:56:15 +08:00
parent f89695cf9f
commit 991144c680
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ public class AcPickController extends BaseController {
AcPickExt acPickExt = iAcPickService.queryDetail(pkId, pkCountry); AcPickExt acPickExt = iAcPickService.queryDetail(pkId, pkCountry);
if (null != acPickExt) { if (null != acPickExt) {
acPickQueryVO = BeanUtil.copyProperties(acPickExt, AcPickQueryVO.class); acPickQueryVO = BeanUtil.copyProperties(acPickExt, AcPickQueryVO.class);
if (EPickType.PICK_PRODUCT.getValue() == acPickExt.getPickType()) { if (EPickType.PICK_PRODUCT.getValue() == acPickExt.getPickType() || EPickType.COUPON.getValue() == acPickExt.getPickType()) {
// 产品处理 // 产品处理
acPickQueryVO.setDetailList(Collections.singletonList(AcPickQueryDetailVO.builder() acPickQueryVO.setDetailList(Collections.singletonList(AcPickQueryDetailVO.builder()
.pkProduct(acPickExt.getPkDataId().intValue()) .pkProduct(acPickExt.getPkDataId().intValue())

View File

@ -273,7 +273,7 @@
cm.member_code, cm.member_code,
cm.member_name, cm.member_name,
case case
when ap.pick_type = 0 then when ap.pick_type in (0, 8) then
(select bp.product_name (select bp.product_name
from bd_product bp from bd_product bp
where bp.pk_id = PK_DATA_ID) where bp.pk_id = PK_DATA_ID)