worker-automate-hub 0.5.598__py3-none-any.whl → 0.5.600__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- worker_automate_hub/api/client.py +2 -0
- worker_automate_hub/tasks/jobs/devolucao_ctf.py +1100 -1101
- worker_automate_hub/tasks/jobs/extracao_fechamento_emsys.py +506 -0
- worker_automate_hub/tasks/task_definitions.py +4 -0
- {worker_automate_hub-0.5.598.dist-info → worker_automate_hub-0.5.600.dist-info}/METADATA +1 -1
- {worker_automate_hub-0.5.598.dist-info → worker_automate_hub-0.5.600.dist-info}/RECORD +8 -7
- {worker_automate_hub-0.5.598.dist-info → worker_automate_hub-0.5.600.dist-info}/WHEEL +0 -0
- {worker_automate_hub-0.5.598.dist-info → worker_automate_hub-0.5.600.dist-info}/entry_points.txt +0 -0
@@ -614,8 +614,10 @@ async def send_file(
|
|
614
614
|
elif file_extension == "001":
|
615
615
|
content_type = "text/plain"
|
616
616
|
elif file_extension == "xls":
|
617
|
+
filename = desArquivo
|
617
618
|
content_type = "application/vnd.ms-excel"
|
618
619
|
elif file_extension == "xlsx":
|
620
|
+
filename = desArquivo
|
619
621
|
content_type = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
|
620
622
|
else:
|
621
623
|
raise ValueError(f"Extensão de arquivo não suportada: {file_extension}")
|