|
@@ -794,11 +794,11 @@ public class KuaishouItemCollectSamplesServiceImpl implements IKuaishouItemColle
|
|
|
List<JSONObject> today = new ArrayList<>();
|
|
|
List<JSONObject> yesterday = new ArrayList<>();
|
|
|
if ("1".equals(type)) { // 渠道
|
|
|
- today = supplyChainService.getKsChannelGmvHourByDate(userList, nowDate);
|
|
|
- yesterday = supplyChainService.getKsChannelGmvHourByDate(userList, lastDate);
|
|
|
+ today = supplyChainService.getKsChannelGmvHourByDate(userList, DateUtils.getIntegerTime(nowDate));
|
|
|
+ yesterday = supplyChainService.getKsChannelGmvHourByDate(userList, DateUtils.getIntegerTime(lastDate));
|
|
|
} else if ("2".equals(type)) {
|
|
|
- today = supplyChainService.getKsCourtshipGmvHourByDate(userList, nowDate);
|
|
|
- yesterday = supplyChainService.getKsCourtshipGmvHourByDate(userList, lastDate);
|
|
|
+ today = supplyChainService.getKsCourtshipGmvHourByDate(userList, DateUtils.getIntegerTime(nowDate));
|
|
|
+ yesterday = supplyChainService.getKsCourtshipGmvHourByDate(userList, DateUtils.getIntegerTime(lastDate));
|
|
|
}
|
|
|
completionTime(today, nowDate);
|
|
|
completionTime(yesterday, lastDate);
|