|
@@ -439,6 +439,9 @@ public class AdvertiserController {
|
|
@ResponseBody
|
|
@ResponseBody
|
|
public void exportXxl(HttpServletRequest request, HttpServletResponse response, Long projectId, String systemType) throws Exception {
|
|
public void exportXxl(HttpServletRequest request, HttpServletResponse response, Long projectId, String systemType) throws Exception {
|
|
List<SheetInfoVo> sheets = new ArrayList<>();
|
|
List<SheetInfoVo> sheets = new ArrayList<>();
|
|
|
|
+ if (null == systemType || systemType.trim().equals("")) {
|
|
|
|
+ systemType = null;
|
|
|
|
+ }
|
|
//查询总的消耗信息
|
|
//查询总的消耗信息
|
|
SheetInfoVo totalSheetVo = advertiserService.getXxlStatisticInfo(projectId, systemType, null, null, "汇总表");
|
|
SheetInfoVo totalSheetVo = advertiserService.getXxlStatisticInfo(projectId, systemType, null, null, "汇总表");
|
|
sheets.add(totalSheetVo);
|
|
sheets.add(totalSheetVo);
|