👍 修复本地规格报错
This commit is contained in:
@@ -191,8 +191,8 @@ logging:
|
|||||||
level:
|
level:
|
||||||
# 配置自己写的 MyBatis Mapper 打印日志
|
# 配置自己写的 MyBatis Mapper 打印日志
|
||||||
cn.iocoder.yudao: info
|
cn.iocoder.yudao: info
|
||||||
co.yixiang: debug
|
co.yixiang: info
|
||||||
org.quartz: error
|
org.quartz: info
|
||||||
|
|
||||||
mybatis-plus:
|
mybatis-plus:
|
||||||
configuration:
|
configuration:
|
||||||
|
|||||||
+1
-1
@@ -761,7 +761,7 @@ public class YxStoreProductServiceImpl extends BaseServiceImpl<StoreProductMappe
|
|||||||
YxStoreProductAttrValue storeProductAttrValue = yxStoreProductAttrValueService
|
YxStoreProductAttrValue storeProductAttrValue = yxStoreProductAttrValueService
|
||||||
.getOne(Wrappers.<YxStoreProductAttrValue>lambdaQuery()
|
.getOne(Wrappers.<YxStoreProductAttrValue>lambdaQuery()
|
||||||
.eq(YxStoreProductAttrValue::getProductId, id)
|
.eq(YxStoreProductAttrValue::getProductId, id)
|
||||||
.eq(YxStoreProductAttrValue::getSku, sku));
|
.eq(YxStoreProductAttrValue::getSku, sku),false);
|
||||||
if (storeProductAttrValue != null) {
|
if (storeProductAttrValue != null) {
|
||||||
valueMap.put("sku",storeProductAttrValue.getSku());
|
valueMap.put("sku",storeProductAttrValue.getSku());
|
||||||
valueMap.put("pic", storeProductAttrValue.getImage());
|
valueMap.put("pic", storeProductAttrValue.getImage());
|
||||||
|
|||||||
Reference in New Issue
Block a user