Browse Source

Merge branch 'refs/heads/feat-hr-psms_1.0'

wyc 6 days ago
parent
commit
36529236b7

+ 1 - 1
code/swc/nckd-jxccl-swc/src/main/java/nckd/jxccl/swc/mas/plugin/form/empmgt/TenurePersonListListPlugin.java

@@ -223,7 +223,7 @@ public class TenurePersonListListPlugin extends AbstractListPlugin implements Pl
                     .filter(record -> {
                         Date startDate = record.getDate(MasConstant.STARTDATE);
                         Date endDate = record.getDate(MasConstant.ENDDATE);
-                        // 判断记录是否在当年范围内
+
                         return startDate != null && !startDate.after(endOfYear) &&
                                 (endDate == null || !endDate.before(startOfYear));
                     })