|
|
|
|
@ -56,7 +56,7 @@ public class ErpTimesheetReportController {
|
|
|
|
|
/**
|
|
|
|
|
* 获取项目工时统计列表
|
|
|
|
|
*/
|
|
|
|
|
@SaCheckPermission("oa:erp:timesheetReport:projectManHour:list")
|
|
|
|
|
// @SaCheckPermission("oa:erp:timesheetReport:projectManHour:list")
|
|
|
|
|
@GetMapping("/projectManHourList")
|
|
|
|
|
public TableDataInfo<ProjectManHourReportVo> getProjectManHourList(ProjectManHourReportVo bo, String startTime,
|
|
|
|
|
String endTime) {
|
|
|
|
|
@ -66,7 +66,7 @@ public class ErpTimesheetReportController {
|
|
|
|
|
/**
|
|
|
|
|
* 获取项目工时人员统计报表
|
|
|
|
|
*/
|
|
|
|
|
@SaCheckPermission("oa:erp:timesheetReport:projectPersonnel:list")
|
|
|
|
|
// @SaCheckPermission("oa:erp:timesheetReport:projectPersonnel:list")
|
|
|
|
|
@GetMapping("/projectPersonnelReport")
|
|
|
|
|
public R<ProjectPersonnelReportVo> getProjectPersonnelReport(@RequestParam(required = true) Long deptId,
|
|
|
|
|
String startTime, String endTime) {
|
|
|
|
|
@ -79,7 +79,7 @@ public class ErpTimesheetReportController {
|
|
|
|
|
/**
|
|
|
|
|
* 导出项目工时统计列表
|
|
|
|
|
*/
|
|
|
|
|
@SaCheckPermission("oa/erp:timesheetInfo:export")
|
|
|
|
|
// @SaCheckPermission("oa/erp:timesheetInfo:export")
|
|
|
|
|
@Log(title = "项目工时统计报表", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/exportProjectManHour")
|
|
|
|
|
public void exportProjectManHour(ProjectManHourReportVo bo, String startTime, String endTime,
|
|
|
|
|
@ -145,7 +145,7 @@ public class ErpTimesheetReportController {
|
|
|
|
|
/**
|
|
|
|
|
* 导出项目人员工时统计报表
|
|
|
|
|
*/
|
|
|
|
|
@SaCheckPermission("oa/erp:timesheetInfo:export")
|
|
|
|
|
// @SaCheckPermission("oa/erp:timesheetInfo:export")
|
|
|
|
|
@Log(title = "项目人员工时统计报表", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/exportProjectPersonnel")
|
|
|
|
|
public void exportProjectPersonnel(Long deptId, String startTime, String endTime, HttpServletResponse response) {
|
|
|
|
|
|