项目库-项目详情-统计导出接口修改.
This commit is contained in:
+2
-1
@@ -192,8 +192,9 @@ public class ProjectLibraryBaseController extends JeroController<ProjectLibraryB
|
||||
* @param params
|
||||
*/
|
||||
@RequestMapping(value = "/exportProjectDetailsStatisticsGroupByTerritoryXls")
|
||||
public void exportProjectDetailsStatisticsGroupByTerritoryXls(HttpServletResponse response,HttpServletRequest request, Map<String,Object> params) {
|
||||
public void exportProjectDetailsStatisticsGroupByTerritoryXls(HttpServletResponse response,HttpServletRequest request, @RequestParam Map<String,Object> params) {
|
||||
projectLibraryBaseService.exportProjectDetailsStatisticsGroupByTerritoryXls(response,request, params);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -449,7 +449,7 @@ public class ProjectLibraryBaseServiceImpl extends ServiceImpl<ProjectLibraryBas
|
||||
String[] titleArr = title.split(",");
|
||||
Row firstRow = sheet.createRow(0);
|
||||
|
||||
for (int i = 0; i <= 2; i++){
|
||||
for (int i = 0; i < 2; i++){
|
||||
Cell cell = firstRow.createCell(i);
|
||||
cell.setCellValue(titleArr[i]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user