👍 修复本地规格报错

This commit is contained in:
2022-12-09 11:15:17 +08:00
parent 37fd40f6bc
commit caaa969acb
2 changed files with 3 additions and 3 deletions
@@ -761,7 +761,7 @@ public class YxStoreProductServiceImpl extends BaseServiceImpl<StoreProductMappe
YxStoreProductAttrValue storeProductAttrValue = yxStoreProductAttrValueService
.getOne(Wrappers.<YxStoreProductAttrValue>lambdaQuery()
.eq(YxStoreProductAttrValue::getProductId, id)
.eq(YxStoreProductAttrValue::getSku, sku));
.eq(YxStoreProductAttrValue::getSku, sku),false);
if (storeProductAttrValue != null) {
valueMap.put("sku",storeProductAttrValue.getSku());
valueMap.put("pic", storeProductAttrValue.getImage());