|
@@ -865,6 +865,10 @@ public class CourseScheduleTeacherSalaryServiceImpl extends BaseServiceImpl<Long
|
|
|
dataList = new ArrayList<>();
|
|
|
}
|
|
|
pageInfo.setRows(dataList);
|
|
|
+ Map<String, Object> result=new HashMap<>();
|
|
|
+ result.put("pageInfo", pageInfo);
|
|
|
+ int i = courseScheduleTeacherSalaryDao.countOpenConfirmSalarysWithMonth(DateUtil.getMonth(DateUtil.addMonths(new Date(), -1)));
|
|
|
+ result.put("isOpenConfirm", i>0?1:0);
|
|
|
return pageInfo;
|
|
|
}
|
|
|
|
|
@@ -922,4 +926,9 @@ public class CourseScheduleTeacherSalaryServiceImpl extends BaseServiceImpl<Long
|
|
|
public void openSalaryConfirm(String month) {
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void closeSalaryConfirm(String month) {
|
|
|
+
|
|
|
+ }
|
|
|
}
|