Commit 8402e3a8 by leialin

Merge branch 'lal'

parents 781330d0 98bad0f6
......@@ -4045,9 +4045,12 @@ public class ClockInController {
if(Arrays.binarySearch(needfig, String.valueOf(ClockInTool.dateToWeek(num))) >= 0) {//对比排班应打卡时间
String[] ycqtst = new String[ycqts.length + zj];
System.arraycopy(ycqts, 0, ycqtst, 0, ycqts.length);
ycqtst[w] = num;
ycqts = ycqtst;
w++;
if(ycqtst.length != w) {
ycqtst[w] = num;
ycqts = ycqtst;
w++;
}
}else {
String[] xxtst = new String[xxts.length + zj];
System.arraycopy(xxts, 0, xxtst, 0, xxts.length);
......
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