|
|
@@ -1771,13 +1771,14 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void listAssistExprot(InputListAssist in, HttpServletResponse response) {
|
|
|
+ public Object listAssistExprot(InputListAssist in) {
|
|
|
List<OutListAssist> list = (List<OutListAssist>) findList("findAssistList", in);
|
|
|
for (OutListAssist e : list) {
|
|
|
pushTypeName(e);
|
|
|
}
|
|
|
NewExcelUtil<OutListAssist> excelExport = new NewExcelUtil<>(OutListAssist.class);
|
|
|
- excelExport.exportExcel(list, "协单统计列表",response);
|
|
|
+
|
|
|
+ return excelExport.exportExcel(list, "协单统计列表");
|
|
|
}
|
|
|
|
|
|
private void pushTypeName(OutListAssist e) {
|