|
|
|
@ -101,10 +101,10 @@ public class IndexServiceImpl implements IndexService { |
|
|
|
Integer shelfCount = goodsMapper.goodsCount(xgmap); |
|
|
|
result.put("shelf_count", shelfCount == null ? 0 : shelfCount); |
|
|
|
|
|
|
|
//下架数量
|
|
|
|
// 委托期满的产品
|
|
|
|
Map ogmap = new HashMap(); |
|
|
|
ogmap.put("goods_status", "4"); |
|
|
|
ogmap.put("btwstr", "canceltime between " + yesterday_start + " and " + yesterday_end); |
|
|
|
// ogmap.put("goods_status", "4");
|
|
|
|
ogmap.put("btwstr", "contractualtime_end_time between " + yesterday_start + " and " + yesterday_end); |
|
|
|
Integer outCount = goodsMapper.goodsCount(ogmap); |
|
|
|
result.put("out_count", outCount == null ? 0 : outCount); |
|
|
|
|
|
|
|
|