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

This commit is contained in:
woody 2025-04-29 15:56:15 +08:00 committed by cabbage
parent 359b93a6fe
commit c189da7609
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);
if (null != acPickExt) {
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()
.pkProduct(acPickExt.getPkDataId().intValue())

View File

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