|
|
@ -2313,11 +2313,11 @@ public class DailyReportService extends MybatisBaseService<DailyReportMapper, Da |
|
|
|
ResultBean<DailyReportAppVo> rb = ResultBean.fireFail(); |
|
|
|
DailyReportAppVo dailyReportAppVo = new DailyReportAppVo(); |
|
|
|
dailyReportAppVo.setTitle("集团(事业部)" + date + "日报"); |
|
|
|
List<BrandVo> rows1 = baseMapper.list2(date); |
|
|
|
rows1.removeAll(Collections.singleton(null)); |
|
|
|
dailyReportAppVo.setRow1(rows1); |
|
|
|
String startDate = date + " 00:00:00"; |
|
|
|
String endDate = date + " 23:59:59"; |
|
|
|
List<BrandVo> rows1 = baseMapper.list2New(startDate,endDate); |
|
|
|
rows1.removeAll(Collections.singleton(null)); |
|
|
|
dailyReportAppVo.setRow1(rows1); |
|
|
|
List<DailyReportVo> dailyReportVoList = baseMapper.selectReport2New(startDate, endDate); |
|
|
|
List<String> row4 = dailyReportVoList.stream().map(v -> { |
|
|
|
String saleOfStockRatio = ""; |
|
|
|