|
@@ -133,14 +133,16 @@ public class PlatformPresentDataUtil {
|
|
|
platformSummary.setStoreNum(storeCount);
|
|
|
platformSummary.setWebSiteStoreNum(storeCount);
|
|
|
platformSummary.setSaleGoodsNum(goodsCount);
|
|
|
- platformSummary.setWebSiteStoreNum(webSiteGoodsCount);
|
|
|
+ platformSummary.setWebSiteSaleGoodsNum(webSiteGoodsCount);
|
|
|
|
|
|
//商品总数
|
|
|
+ goodsExample.setWebSite(webSite);
|
|
|
goodsExample.setState(null);
|
|
|
goodsExample.setStateNotEquals(GoodsConst.GOODS_STATE_DELETE);
|
|
|
platformSummary.setGoodsTotalNum(goodsModel.getGoodsCount(goodsExample));
|
|
|
|
|
|
//下架商品数
|
|
|
+ goodsExample.setWebSite(webSite);
|
|
|
goodsExample.setOnlineTimeAfter(DateUtil.beginOfDay(new Date()));
|
|
|
goodsExample.setStateIn(GoodsConst.GOODS_STATE_LOWER_BY_STORE + "," + GoodsConst.GOODS_STATE_LOWER_BY_SYSTEM);
|
|
|
platformSummary.setShelfGoodsNum(goodsModel.getGoodsCount(goodsExample));
|