工资单确认反馈sql
This commit is contained in:
parent
7fe03ac7a1
commit
c64e9b4b76
|
|
@ -0,0 +1,3 @@
|
|||
alter table hrsa_salary_template add feedback_status int;
|
||||
/
|
||||
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
alter table hrsa_salary_template add feedback_status int;
|
||||
/
|
||||
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
alter table hrsa_salary_template add feedback_status int;
|
||||
/
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
alter table hrsa_salary_template add feedback_status int;
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
alter table hrsa_salary_template add feedback_status int
|
||||
/
|
||||
|
|
@ -0,0 +1 @@
|
|||
alter table hrsa_salary_template add feedback_status int;
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
alter table hrsa_salary_template add feedback_status int
|
||||
go
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
alter table hrsa_salary_template add feedback_status int;
|
||||
/
|
||||
|
||||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue