Authored by caoyan

Merge branch 'dev_order' into test6.8.2

... ... @@ -596,7 +596,7 @@ public class ProductServiceImpl implements ProductService{
for (Storage storage : storageList) {
StoragePrice storagePrice = storagePriceMap.get(storage.getId());
//高于建议价,不展示skup
if(null != storagePrice && storagePrice.getPrice().compareTo(storage.getSuggestHighPrice()) > 0) {
if(null != storagePrice && null != storage.getSuggestHighPrice() && storagePrice.getPrice().compareTo(storage.getSuggestHighPrice()) > 0) {
continue;
}
... ...