Authored by chenchao

fix bug :overflow price tips key

... ... @@ -190,7 +190,7 @@ public class SellerOrderListService extends AbsOrderListService implements IOrde
private String overFlowPriceKey(Integer storageId, BigDecimal salePrice){
return new StringBuilder(storageId).append(salePrice).toString();
return new StringBuilder().append(storageId).append("_").append(salePrice).toString();
}
/**
* TODO 需要商品提供批量接口,减少db net IO, 目前的工期太短,后期再优化
... ...