This commit is contained in:
Marsway 2026-07-17 15:30:03 +08:00
parent 6df400f31d
commit a0401db8ed
29 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@ -516,14 +516,14 @@ class SyncEhrToAdUserJob(BaseJob):
emp_res = ehr.get_all_employees_with_record_by_time_window( emp_res = ehr.get_all_employees_with_record_by_time_window(
stop_time=stop_time, stop_time=stop_time,
capacity=capacity, capacity=capacity,
with_disabled=False, with_disabled=True,
is_with_deleted=False, is_with_deleted=True,
) )
org_res = ehr.get_all_organizations_by_time_window( org_res = ehr.get_all_organizations_by_time_window(
stop_time=stop_time, stop_time=stop_time,
capacity=capacity, capacity=capacity,
with_disabled=False, with_disabled=True,
is_with_deleted=False, is_with_deleted=True,
) )
emp_rows = emp_res.get("data") or [] emp_rows = emp_res.get("data") or []
org_rows = org_res.get("data") or [] org_rows = org_res.get("data") or []