Skip to content

Commit

Permalink
fix ftp_senddeirection getcount
Browse files Browse the repository at this point in the history
  • Loading branch information
urchinpro committed Nov 28, 2024
1 parent 1b367b2 commit c804e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ftp_orders/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def process_push_orders():
directions = []
directions_external_executor = []
if ftp_connection.hospital.is_auto_transfer_hl7_file:
directions = Napravleniya.objects.filter(hospital=ftp_connection.hospital, need_order_redirection=True)[:50]
directions = Napravleniya.objects.filter(hospital=ftp_connection.hospital, need_order_redirection=True)[:450]
else:
directions_external_executor = Napravleniya.objects.filter(external_executor_hospital=ftp_connection.hospital, need_order_redirection=True)[:50]
for dir_external in directions_external_executor:
Expand Down

0 comments on commit c804e2b

Please sign in to comment.