Commit e2a0289f authored by hongguangwu's avatar hongguangwu

MVP1.7.9-改为deptId

parent 4eb91595
......@@ -267,11 +267,11 @@ public class TSalaryAccountController {
if (Common.isNotNull(deptNo)) {
queryWrapperSa.eq("DEPT_NO", deptNo);
}
if (Common.isNotNull(deptName)) {
queryWrapperSa.like("DEPT_NAME", deptName);
if (Common.isNotNull(settleDepartId)) {
queryWrapperSa.eq("DEPT_ID", settleDepartId);
}
if (Common.isNotNull(settlementMonth) && settlementMonth.length() < 6) {
queryWrapperSa.like("SETTLEMENT_MONTH", settlementMonth);
queryWrapperSa.eq("SETTLEMENT_MONTH", settlementMonth);
}
queryWrapperSa.orderByAsc("SETTLEMENT_MONTH");
List<TSalaryAccount> salaryAccountList = tSalaryAccountService.list(queryWrapperSa);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment