Browse Source

采美sku bugfix

zhijiezhao 2 years ago
parent
commit
31078f3f32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/resources/mapper/PageMapper.xml

+ 1 - 1
src/main/resources/mapper/PageMapper.xml

@@ -636,7 +636,7 @@
                (select unit from cm_sku where productId=csp.productId order by price asc limit 1)as unit,
                p.productCode     as code,
                p.priceFlag,
-               (select unit from cm_sku where productId=csp.productId order by price asc limit 1)as price,
+               (select price from cm_sku where productId=csp.productId order by price asc limit 1)as price,
                p.shopID          as shopId,
                p.searchKey       as keyword,
                (select minBuyNumber from cm_sku where productId=csp.productId order by price asc limit 1)as minBuyNumber,