|
|
|
@ -1028,13 +1028,13 @@ public class AttendanceSummaryServiceImpl extends Service implements AttendanceS
|
|
|
|
|
itemMap.put("gzbm", gsbm);
|
|
|
|
|
itemMap.put("lc", String.valueOf(num));
|
|
|
|
|
if (accountUnit.equals("0")) {
|
|
|
|
|
itemMap.put("lt", String.valueOf(time));
|
|
|
|
|
itemMap.put("lt", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("1")) {
|
|
|
|
|
itemMap.put("ls", String.valueOf(time));
|
|
|
|
|
itemMap.put("ls", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("2")) {
|
|
|
|
|
itemMap.put("lf", String.valueOf((int) time));
|
|
|
|
|
itemMap.put("lf", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
cqAddList.add(itemMap);
|
|
|
|
|
}
|
|
|
|
@ -1140,13 +1140,13 @@ public class AttendanceSummaryServiceImpl extends Service implements AttendanceS
|
|
|
|
|
itemMap.put("gzbm", gsbm);
|
|
|
|
|
itemMap.put("lc", String.valueOf(num));
|
|
|
|
|
if (accountUnit.equals("0")) {
|
|
|
|
|
itemMap.put("lt", String.valueOf(time));
|
|
|
|
|
itemMap.put("lt", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("1")) {
|
|
|
|
|
itemMap.put("ls", String.valueOf(time));
|
|
|
|
|
itemMap.put("ls", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("2")) {
|
|
|
|
|
itemMap.put("lf", String.valueOf((int) time));
|
|
|
|
|
itemMap.put("lf", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
cqjtAddList.add(itemMap);
|
|
|
|
|
}
|
|
|
|
@ -1431,13 +1431,13 @@ public class AttendanceSummaryServiceImpl extends Service implements AttendanceS
|
|
|
|
|
itemMap.put("gzbm", gsbm);
|
|
|
|
|
itemMap.put("lc", String.valueOf(num));
|
|
|
|
|
if (accountUnit.equals("0")) {
|
|
|
|
|
itemMap.put("lt", String.valueOf(time));
|
|
|
|
|
itemMap.put("lt", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("1")) {
|
|
|
|
|
itemMap.put("ls", String.valueOf(time));
|
|
|
|
|
itemMap.put("ls", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("2")) {
|
|
|
|
|
itemMap.put("lf", String.valueOf(time));
|
|
|
|
|
itemMap.put("lf", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
cqAddList.add(itemMap);
|
|
|
|
|
}
|
|
|
|
@ -1620,13 +1620,13 @@ public class AttendanceSummaryServiceImpl extends Service implements AttendanceS
|
|
|
|
|
itemMap.put("gzbm", gsbm);
|
|
|
|
|
itemMap.put("lc", String.valueOf(num));
|
|
|
|
|
if (accountUnit.equals("0")) {
|
|
|
|
|
itemMap.put("lt", String.valueOf(time));
|
|
|
|
|
itemMap.put("lt", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("1")) {
|
|
|
|
|
itemMap.put("ls", String.valueOf(time));
|
|
|
|
|
itemMap.put("ls", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
if (accountUnit.equals("2")) {
|
|
|
|
|
itemMap.put("lf", String.valueOf(time));
|
|
|
|
|
itemMap.put("lf", String.format("%.2f", time));
|
|
|
|
|
}
|
|
|
|
|
cqjtAddList.add(itemMap);
|
|
|
|
|
}
|
|
|
|
|