工资单确认反馈sql

This commit is contained in:
Harryxzy 2024-02-19 14:01:30 +08:00
parent 7fe03ac7a1
commit c64e9b4b76
9 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,3 @@
alter table hrsa_salary_template add feedback_status int;
/

View File

@ -0,0 +1,3 @@
alter table hrsa_salary_template add feedback_status int;
/

View File

@ -0,0 +1,3 @@
alter table hrsa_salary_template add feedback_status int;
/

View File

@ -0,0 +1 @@
alter table hrsa_salary_template add feedback_status int;

View File

@ -0,0 +1,2 @@
alter table hrsa_salary_template add feedback_status int
/

View File

@ -0,0 +1 @@
alter table hrsa_salary_template add feedback_status int;

View File

@ -0,0 +1,2 @@
alter table hrsa_salary_template add feedback_status int
go

View File

@ -0,0 +1,3 @@
alter table hrsa_salary_template add feedback_status int;
/

View File

@ -725,7 +725,9 @@ public class SalarySendServiceImpl extends Service implements SalarySendService
throw new SalaryRunTimeException("请先设置工资单模板");
}
Integer ackFeedbackStatus = salaryTemplates.get(0).getAckFeedbackStatus();
if (ackFeedbackStatus != null && NumberUtils.compare(ackFeedbackStatus, 1) == 0) {
Integer feedbackStatus = salaryTemplates.get(0).getFeedbackStatus();
if ( (ackFeedbackStatus != null && NumberUtils.compare(ackFeedbackStatus, 1) == 0)
|| (feedbackStatus != null && NumberUtils.compare(feedbackStatus, 1) == 0)) {
// 默认为空时未读未确认
pageInfo.getList().stream().forEach(obj -> {
SalarySendInfoListDTO dto = (SalarySendInfoListDTO) obj;