shish 5 anni fa
parent
commit
d39e474b4f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      biz-ghs/product/services/ProductService.php

+ 1 - 1
biz-ghs/product/services/ProductService.php

@@ -23,7 +23,7 @@ class ProductService extends BaseService
         if($itemInfoData){
             foreach ($itemInfoData as $v){
                 $v['classId'] = self::ALL_CLASS_ID;
-                if($v['price'] > $v['discountPrice'] && $v['discountPrice'] > 0){
+                if($v['discountPrice'] > 0){
                     $saleItem[] = $v;
                 }
             }