Employees with no attendance show up as blank
This commit is contained in:
parent
c2268caaf7
commit
de7e760788
@ -26,8 +26,8 @@ def execute(filters=None):
|
|||||||
|
|
||||||
total_p = total_a = 0.0
|
total_p = total_a = 0.0
|
||||||
for day in range(filters["total_days_in_month"]):
|
for day in range(filters["total_days_in_month"]):
|
||||||
status = att_map.get(emp).get(day + 1, "Absent")
|
status = att_map.get(emp).get(day + 1, "None")
|
||||||
status_map = {"Present": "P", "Absent": "A", "Half Day": "H"}
|
status_map = {"Present": "P", "Absent": "A", "Half Day": "H", "None":" "}
|
||||||
row.append(status_map[status])
|
row.append(status_map[status])
|
||||||
|
|
||||||
if status == "Present":
|
if status == "Present":
|
||||||
|
Loading…
Reference in New Issue
Block a user