feat(BdWaresSpecsSkuMapper.xml):商品发布-规格明细隐藏sku字段
This commit is contained in:
parent
f89695cf9f
commit
991144c680
|
@ -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())
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue