worker-automate-hub 0.5.741__py3-none-any.whl → 0.5.743__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.
@@ -593,7 +593,18 @@ async def entrada_de_notas_15(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
593
593
  )
594
594
 
595
595
  await worker_sleep(8)
596
- await emsys.incluir_registro()
596
+ try:
597
+ retorno = await emsys.incluir_registro(chave_nfe=nota.get("nfe"))
598
+ if retorno.sucesso == True:
599
+ return RpaRetornoProcessoDTO(
600
+ sucesso=retorno.sucesso,
601
+ retorno=retorno.retorno,
602
+ status=retorno.status,
603
+ )
604
+ except:
605
+ console.print(
606
+ "A Nota fiscal ainda não foi incluída, continuando o processo..."
607
+ )
597
608
  await worker_sleep(5)
598
609
 
599
610
  # await emsys.verify_warning_and_error("Warning", "No")
@@ -713,7 +713,16 @@ async def entrada_de_notas_39(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
713
713
  pyautogui.write(nota["valorNota"])
714
714
  await worker_sleep(3)
715
715
 
716
- await emsys.incluir_registro()
716
+ try:
717
+ retorno = await emsys.incluir_registro()
718
+ if retorno.sucesso == True:
719
+ return RpaRetornoProcessoDTO(
720
+ sucesso=retorno.sucesso,
721
+ retorno=retorno.retorno,
722
+ status=retorno.status,
723
+ )
724
+ except:
725
+ console.print("A Nota fiscal ainda não foi incluída, continuando o processo...")
717
726
  await worker_sleep(25)
718
727
 
719
728
  console.print(
@@ -775,8 +784,16 @@ async def entrada_de_notas_39(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
775
784
  status=RpaHistoricoStatusEnum.Falha,
776
785
  tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
777
786
  )
778
-
779
- await emsys.incluir_registro()
787
+ try:
788
+ retorno = await emsys.incluir_registro()
789
+ if retorno.sucesso == True:
790
+ return RpaRetornoProcessoDTO(
791
+ sucesso=retorno.sucesso,
792
+ retorno=retorno.retorno,
793
+ status=retorno.status,
794
+ )
795
+ except:
796
+ console.print("A Nota fiscal ainda não foi incluída, continuando o processo...")
780
797
  await worker_sleep(25)
781
798
 
782
799
  console.print("Verificando a existencia de POP-UP de Itens que Ultrapassam a Variação Máxima de Custo ...\n")
@@ -710,7 +710,18 @@ async def entrada_de_notas_503(task: RpaProcessoEntradaDTO) -> RpaRetornoProcess
710
710
  pyautogui.write(nota["valorNota"])
711
711
  await worker_sleep(3)
712
712
 
713
- await emsys.incluir_registro()
713
+ try:
714
+ retorno = await emsys.incluir_registro(chave_nfe=nota.get("nfe"))
715
+ if retorno.sucesso == True:
716
+ return RpaRetornoProcessoDTO(
717
+ sucesso=retorno.sucesso,
718
+ retorno=retorno.retorno,
719
+ status=retorno.status,
720
+ )
721
+ except:
722
+ console.print(
723
+ "A Nota fiscal ainda não foi incluída, continuando o processo..."
724
+ )
714
725
  await worker_sleep(25)
715
726
 
716
727
  console.print(
@@ -773,7 +784,18 @@ async def entrada_de_notas_503(task: RpaProcessoEntradaDTO) -> RpaRetornoProcess
773
784
  tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
774
785
  )
775
786
 
776
- await emsys.incluir_registro()
787
+ try:
788
+ retorno = await emsys.incluir_registro(chave_nfe=nota.get("nfe"))
789
+ if retorno.sucesso == True:
790
+ return RpaRetornoProcessoDTO(
791
+ sucesso=retorno.sucesso,
792
+ retorno=retorno.retorno,
793
+ status=retorno.status,
794
+ )
795
+ except:
796
+ console.print(
797
+ "A Nota fiscal ainda não foi incluída, continuando o processo..."
798
+ )
777
799
  await worker_sleep(25)
778
800
 
779
801
  console.print("Verificando a existencia de POP-UP de Itens que Ultrapassam a Variação Máxima de Custo ...\n")
@@ -1172,9 +1172,9 @@ async def entrada_de_notas_9(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoD
1172
1172
  retorno = await emsys.incluir_registro(chave_nfe=nota.get("nfe"))
1173
1173
  if retorno.sucesso == True:
1174
1174
  return RpaRetornoProcessoDTO(
1175
- sucesso=error_work.sucesso,
1176
- retorno=error_work.retorno,
1177
- status=error_work.status,
1175
+ sucesso=retorno.sucesso,
1176
+ retorno=retorno.retorno,
1177
+ status=retorno.status,
1178
1178
  )
1179
1179
  except:
1180
1180
  console.print("A Nota fiscal ainda não foi incluída, continuando o processo...")
@@ -1190,9 +1190,9 @@ async def entrada_de_notas_9000(task: RpaProcessoEntradaDTO) -> RpaRetornoProces
1190
1190
  retorno = await emsys.incluir_registro(chave_nfe=nota.get("nfe"))
1191
1191
  if retorno.sucesso == True:
1192
1192
  return RpaRetornoProcessoDTO(
1193
- sucesso=error_work.sucesso,
1194
- retorno=error_work.retorno,
1195
- status=error_work.status,
1193
+ sucesso=retorno.sucesso,
1194
+ retorno=retorno.retorno,
1195
+ status=retorno.status,
1196
1196
  )
1197
1197
  except:
1198
1198
  console.print("A Nota fiscal ainda não foi incluída, continuando o processo...")
@@ -0,0 +1,232 @@
1
+ import asyncio
2
+ import os
3
+ from datetime import datetime
4
+ from pywinauto import Application, timings, findwindows
5
+ import sys
6
+ import io
7
+ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..')))
8
+
9
+ from worker_automate_hub.models.dto.rpa_historico_request_dto import (
10
+ RpaHistoricoStatusEnum,
11
+ RpaRetornoProcessoDTO,
12
+ RpaTagDTO,
13
+ RpaTagEnum,
14
+ )
15
+ from worker_automate_hub.models.dto.rpa_processo_entrada_dto import (
16
+ RpaProcessoEntradaDTO,
17
+ )
18
+ from rich.console import Console
19
+ import re
20
+ from pywinauto.keyboard import send_keys
21
+ import warnings
22
+ from pywinauto.application import Application
23
+ from worker_automate_hub.api.client import get_config_by_name, send_file
24
+ from worker_automate_hub.utils.util import (
25
+ kill_all_emsys,
26
+ login_emsys,
27
+ set_variable,
28
+ type_text_into_field,
29
+ worker_sleep,
30
+ )
31
+ from pywinauto_recorder.player import set_combobox
32
+
33
+ from datetime import timedelta
34
+ import pyautogui
35
+ from worker_automate_hub.utils.logger import logger
36
+ from worker_automate_hub.utils.utils_nfe_entrada import EMSys
37
+
38
+ emsys = EMSys()
39
+
40
+ console = Console()
41
+ pyautogui.PAUSE = 0.5
42
+ pyautogui.FAILSAFE = False
43
+
44
+
45
+ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
46
+ try:
47
+ config = await get_config_by_name("login_emsys")
48
+ periodo = task.configEntrada['periodo']
49
+ periodo_format = periodo.replace("/","")
50
+ filial = task.configEntrada['filialEmpresaOrigem']
51
+ historico_id = task.historico_id
52
+ await kill_all_emsys()
53
+
54
+ app = Application(backend="win32").start("C:\\Rezende\\EMSys3\\EMSys3_35.exe")
55
+ warnings.filterwarnings(
56
+ "ignore",
57
+ category=UserWarning,
58
+ message="32-bit application should be automated using 32-bit Python",
59
+ )
60
+ console.print("\nEMSys iniciando...", style="bold green")
61
+ return_login = await login_emsys(
62
+ config.conConfiguracao, app, task, filial_origem=filial
63
+ )
64
+
65
+ if return_login.sucesso == True:
66
+ type_text_into_field(
67
+ "Rel. Saldo Estoque ", app["TFrmMenuPrincipal"]["Edit"], True, "50"
68
+ )
69
+ pyautogui.press("enter")
70
+ await worker_sleep(2)
71
+ pyautogui.press("enter")
72
+
73
+ else:
74
+ logger.info(f"\nError Message: {return_login.retorno}")
75
+ console.print(f"\nError Message: {return_login.retorno}", style="bold red")
76
+ return return_login
77
+
78
+ await worker_sleep(2)
79
+
80
+ ##### Janela Relatório Saldos do Estoque #####
81
+ # Marcar check box data
82
+ app = Application().connect(class_name="TFrmRelSaldoEstoque", timeout=60)
83
+ main_window = app["TFrmRelSaldoEstoque"]
84
+ main_window.set_focus()
85
+
86
+ # Captura o campo de data
87
+ data_chk = main_window.child_window(
88
+ class_name="TCheckBox", found_index=3
89
+ ).click_input()
90
+
91
+ await worker_sleep(2)
92
+ # Insere a data
93
+ data_input = main_window.child_window(
94
+ class_name="TDBIEditDate", found_index=0
95
+ )
96
+
97
+ data_input.set_edit_text(periodo)
98
+
99
+ # Clicar em gerar relatório
100
+ btn_gerar = main_window.child_window(
101
+ class_name="TBitBtn", found_index=0
102
+ ).click_input()
103
+
104
+ # Aguarda até 60 segundos para a janela aparecer
105
+ timings.wait_until_passes(
106
+ timeout=1800,
107
+ retry_interval=1,
108
+ func=lambda: Application().connect(class_name="TFrmPreviewRelatorio")
109
+ )
110
+
111
+ await worker_sleep(2)
112
+
113
+ # Conecta à janela Preview Relatorio
114
+ app = Application().connect(class_name="TFrmPreviewRelatorio")
115
+ main_window = app["TFrmPreviewRelatorio"]
116
+ main_window.set_focus()
117
+
118
+ # Clicar em salvar
119
+ caminho = r"assets\\extracao_realtorios\\btn_salvar.png"
120
+ # Verifica se o arquivo existe
121
+ if os.path.isfile(caminho):
122
+ print("A imagem existe:", caminho)
123
+
124
+ # Procura a imagem na tela
125
+ pos = pyautogui.locateCenterOnScreen(caminho, confidence=0.9) # ajuste o confidence se necessário
126
+ if pos:
127
+ pyautogui.click(pos) # clica no centro da imagem
128
+ print("Clique realizado na imagem.")
129
+ else:
130
+ print("Imagem encontrada no disco, mas não está visível na tela.")
131
+ else:
132
+ print("A imagem NÃO existe:", caminho)
133
+
134
+ await worker_sleep(2)
135
+
136
+ # Conecta na janela Configuração para Salvar Arquivo
137
+ app = Application().connect(class_name="TFrmRelatorioFormato")
138
+ main_window = app["TFrmRelatorioFormato"]
139
+ main_window.set_focus()
140
+ # Acessa o ComboBox pelo identificador conhecido
141
+ combo = main_window.ComboBox
142
+
143
+ # Garante que existe "Excel" na lista
144
+ itens = combo.texts()
145
+ print("Itens do ComboBox:", itens)
146
+
147
+ # Seleciona o Excel correto (o segundo da lista, índice 8)
148
+ combo.select(8)
149
+
150
+ await worker_sleep(2)
151
+
152
+ # Clicar em Salvar
153
+ btn_salvar = main_window.child_window(
154
+ class_name="TBitBtn", found_index=1
155
+ ).click_input()
156
+
157
+ await worker_sleep(5)
158
+
159
+ # Conecta na janela "Salvar para arquivo"
160
+ app = Application().connect(title_re="Salvar para arquivo", timeout=30)
161
+ main_window = app.window(title_re="Salvar para arquivo")
162
+
163
+ # Campo Nome (Edit) - use set_edit_text para evitar problemas de escape
164
+ campo_nome = main_window.child_window(class_name="Edit", control_id=1148).wrapper_object()
165
+ caminho_arquivo = rf"C:\Users\automatehub\Downloads\saldo_estoque_{periodo_format}_{filial}.xlsx"
166
+ campo_nome.set_focus()
167
+ campo_nome.set_edit_text(caminho_arquivo)
168
+
169
+ print("✅ Texto inserido no campo Nome")
170
+
171
+ await worker_sleep(2)
172
+
173
+ # Clicar em ok para salvar
174
+ btn_ok = main_window.child_window(
175
+ class_name="Button", found_index=0
176
+ ).click_input()
177
+
178
+ await worker_sleep(5)
179
+
180
+ caminho_img = r"assets\\extracao_realtorios\\janela_printing.png"
181
+
182
+ # Aguarda até a janela com título "Printing" (ou "Salvando...") fechar
183
+ try:
184
+ app = Application().connect(title_re="Printing") # conecta se existir
185
+ janela = app.window(title_re="Printing")
186
+
187
+ print("⏳ Aguardando a janela 'Printing' sumir...")
188
+ janela.wait_not("visible", timeout=60) # espera até 60 segundos
189
+ print("✅ Janela 'Printing' fechada.")
190
+
191
+ except findwindows.ElementNotFoundError:
192
+ print("⚠️ Janela 'Printing' não estava aberta.")
193
+
194
+ nome_com_extensao = f'saldo_estoque_{periodo_format}_{filial}.xlsx'
195
+ # lê o arquivo
196
+ with open(f"{caminho_arquivo}", "rb") as file:
197
+ file_bytes = io.BytesIO(file.read())
198
+
199
+ console.print("Enviar Excel para o BOF")
200
+ try:
201
+ await send_file(
202
+ historico_id,
203
+ nome_com_extensao,
204
+ "xlsx",
205
+ file_bytes,
206
+ file_extension="xlsx",
207
+ )
208
+ console.print("Removendo arquivo XLS da pasta downloads")
209
+ os.remove(f"{caminho_arquivo}")
210
+
211
+ except Exception as e:
212
+ console.print(f"Erro ao enviar o arquivo: {e}", style="bold red")
213
+ return RpaRetornoProcessoDTO(
214
+ sucesso=False,
215
+ retorno=f"Erro ao enviar o arquivo: {e}",
216
+ status=RpaHistoricoStatusEnum.Falha,
217
+ tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
218
+ )
219
+
220
+ print("")
221
+
222
+ except Exception as ex:
223
+ retorno = f"Erro Processo Fechamento Balancete: {str(ex)}"
224
+ logger.error(retorno)
225
+ console.print(retorno, style="bold red")
226
+ return RpaRetornoProcessoDTO(
227
+ sucesso=False,
228
+ retorno=retorno,
229
+ status=RpaHistoricoStatusEnum.Falha,
230
+ tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
231
+ )
232
+
@@ -31,6 +31,7 @@ from worker_automate_hub.tasks.jobs.entrada_de_notas_9000 import entrada_de_nota
31
31
  from worker_automate_hub.tasks.jobs.entrada_de_notas_7139 import entrada_de_notas_7139
32
32
  from worker_automate_hub.tasks.jobs.entrada_de_notas_36 import entrada_de_notas_36
33
33
  from worker_automate_hub.tasks.jobs.entrada_de_notas_503 import entrada_de_notas_503
34
+ from worker_automate_hub.tasks.jobs.extracao_saldo_estoque import extracao_saldo_estoque
34
35
  from worker_automate_hub.tasks.jobs.fidc_remessa_cobranca_cnab240 import (
35
36
  remessa_cobranca_cnab240,
36
37
  )
@@ -198,6 +199,7 @@ task_definitions = {
198
199
  "58de6a65-68cd-4e68-ab28-31b543b6de02": transferencias, # Logistica reverse
199
200
  "ca7ac373-e8e7-4ac2-aa7e-298070e0d9a0": extracao_fechamento_contabil,
200
201
  "8c28726d-458d-4119-afa0-202695b79a8f": extracao_fechamento_emsys,
202
+ "16debe45-3520-4f63-acfe-ef0e8784fcab": extracao_saldo_estoque
201
203
  }
202
204
 
203
205
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: worker-automate-hub
3
- Version: 0.5.741
3
+ Version: 0.5.743
4
4
  Summary: Worker Automate HUB é uma aplicação para automatizar rotinas de RPA nos ambientes Argenta.
5
5
  Author: Joel Paim
6
6
  Requires-Python: >=3.12,<4.0
@@ -53,23 +53,24 @@ worker_automate_hub/tasks/jobs/ecac_estadual_sp.py,sha256=AqSsn0SlK_nok4AhMCNUlA
53
53
  worker_automate_hub/tasks/jobs/ecac_federal.py,sha256=VFOrbMuMHL3ac1sJ-z-N1p1WYtP-e-JJHbvUfgmfgNw,55748
54
54
  worker_automate_hub/tasks/jobs/entrada_cte_1353.py,sha256=knwPbjZZsnvHKurs7O7gv7bFpQIAmv4qPB1rZa3zBsY,12102
55
55
  worker_automate_hub/tasks/jobs/entrada_cte_333.py,sha256=FvpU_bsdPB2ANQ_i63Jlkdo5yZM4zJdr2mm41KTrJtE,13285
56
- worker_automate_hub/tasks/jobs/entrada_de_notas_15.py,sha256=k0sRpKOCtyld1mPEu0n6HUncZYcX8wAsKAIYKGVacSs,30487
56
+ worker_automate_hub/tasks/jobs/entrada_de_notas_15.py,sha256=Lb-19OLyOVM_EV9h4A7ylkHeilnf4G1aBfdbBdNoJXk,30928
57
57
  worker_automate_hub/tasks/jobs/entrada_de_notas_16.py,sha256=XgCaZTn0lTxio9yLTYIf0J-PA8e80dSDa7wsUnZiffI,37783
58
58
  worker_automate_hub/tasks/jobs/entrada_de_notas_207.py,sha256=A5HM2Eh2bGZueVefnQL9KiCWW95j8zX1v2MslgbDcUE,36871
59
59
  worker_automate_hub/tasks/jobs/entrada_de_notas_32.py,sha256=lku233FqwOknXF14HHC6fZ75WubE69Jp32bAUhKPtGQ,34575
60
60
  worker_automate_hub/tasks/jobs/entrada_de_notas_33.py,sha256=ODp82BkWaiF40t6uZLJYxG2nGGnvDyeQBHhkkh9ZgPI,35994
61
61
  worker_automate_hub/tasks/jobs/entrada_de_notas_34.py,sha256=AXUL8DakrDeTxWW8dn36W830XfIuO47MFUusbUkrnUc,33586
62
62
  worker_automate_hub/tasks/jobs/entrada_de_notas_36.py,sha256=z494n0SUyxorjhvpbat2ELnj7lbhtWPb9JOIsattwA8,35216
63
- worker_automate_hub/tasks/jobs/entrada_de_notas_39.py,sha256=0SdsXZzIZoLdEzW9HXyFjo5oYwQioDVYSDeevouEKZQ,47831
63
+ worker_automate_hub/tasks/jobs/entrada_de_notas_39.py,sha256=cuIKcQJctyFhfm9vjxA8kIPAqUxMaitu8Uj9vIvJ46I,48693
64
64
  worker_automate_hub/tasks/jobs/entrada_de_notas_500.py,sha256=WBsCRbH7ANiCjEn0aEDc5AqGf6grEFhxyBoAIh3zJ40,44160
65
- worker_automate_hub/tasks/jobs/entrada_de_notas_503.py,sha256=q4_PeGrMqMs1EzBp7hGtpAuteqmvzDg-Q796pTlF8KI,47395
65
+ worker_automate_hub/tasks/jobs/entrada_de_notas_503.py,sha256=bcNKy6X1aaVe6lxW-TMyUKJ_GXzHEK-8V6x9SOzOshw,48365
66
66
  worker_automate_hub/tasks/jobs/entrada_de_notas_505.py,sha256=xXeNipdXTSll8yAtAmN7v0sjN3oMlWU4THu30mKDddc,30339
67
67
  worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=7POfKc7nisc8-ysgqazrK8kT7kmFIq8irGwCMixPAE0,37948
68
- worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=ZYE2YmQJ9954Uuc9fiSykGi0ws_NPXs8ex244y20P44,64642
69
- worker_automate_hub/tasks/jobs/entrada_de_notas_9000.py,sha256=cDMzDGcylhg9pwtCPmZ82YItPS05PWcPtfeeC2WGrpA,65507
68
+ worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=qV-XS8K099BySDBfkCjXoMeyCVdLYvFnpTFF6VXLlXA,64633
69
+ worker_automate_hub/tasks/jobs/entrada_de_notas_9000.py,sha256=0mOmS28tQKF5m7vMzInblDuWH48_qIgrohOU5UwYZ10,65498
70
70
  worker_automate_hub/tasks/jobs/exemplo_processo.py,sha256=nV0iLoip2FH2-FhLmhX3nPqsfl_MPufZ3E5Q5krJvdc,3544
71
71
  worker_automate_hub/tasks/jobs/extracao_fechamento_contabil.py,sha256=6Kr5DKjKLqtFvGzyiXtt7xrQsuU898l8pQXDq9C6AX8,19567
72
72
  worker_automate_hub/tasks/jobs/extracao_fechamento_emsys.py,sha256=-T2nZUDiFrUGm_KLxJd_4qcrageDxVpWW3KAAniLFC4,21448
73
+ worker_automate_hub/tasks/jobs/extracao_saldo_estoque.py,sha256=EIPmA73cOaiw3hGQ6ZG4BGfGzV_InufAMZUZuXBuIq8,8219
73
74
  worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py,sha256=UWAKCS2dbfgDlSQOBdjmVJXfD1MMuUrOi3weDgB0CAc,5718
74
75
  worker_automate_hub/tasks/jobs/fidc_exportacao_docs_portal_b2b.py,sha256=tWUmYy3Zhi3JEt8AoqTsWpU-wbf5-OxhCrTOooh1WH4,15616
75
76
  worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py,sha256=FAmcCqKVjedf7wIped8XRLIZ9S3oWc6fakF-r1Zm0kg,12637
@@ -88,7 +89,7 @@ worker_automate_hub/tasks/jobs/opex_capex.py,sha256=8iOhWY0BUXugitJa-a0jtsPh656L
88
89
  worker_automate_hub/tasks/jobs/playground.py,sha256=7vWDg9DwToHwGJ6_XOa8TQ6LmfRV5Qz2TaOV3q3P9sA,1918
89
90
  worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=Zsq-IwKxA0b2tikO6Rri4WXVj10jK-Jd0-gxk8yVBH0,31064
90
91
  worker_automate_hub/tasks/jobs/transferencias.py,sha256=X-hbz0GSsdeUHOZlz_wZ1XvNfWiQI0Ms2bD7VP-mcbE,45539
91
- worker_automate_hub/tasks/task_definitions.py,sha256=oadXjZkmUge5Gek3ChCM-qriHRBMOrKW3u5HOXBNUQU,11957
92
+ worker_automate_hub/tasks/task_definitions.py,sha256=BKDgrkN0z6gq5V6R5pku6tIZeHQhNlDggNH3faunRH0,12115
92
93
  worker_automate_hub/tasks/task_executor.py,sha256=9dmLUlMpJOI7FhbaFE593TcWnDxBvuXbGVecs1aaJxE,5728
93
94
  worker_automate_hub/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
95
  worker_automate_hub/utils/env.py,sha256=TacQjGRO7PUNpttrhTAc5Gnegaiysl2Knsv1P8qfkfs,57
@@ -99,7 +100,7 @@ worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbV
99
100
  worker_automate_hub/utils/util.py,sha256=nV09AF8lu5poiMzWMAAgVS_VWvEuIRfNDmx46V7Nvzk,207279
100
101
  worker_automate_hub/utils/utils_nfe_entrada.py,sha256=TOXKSHOPxy8N3-ROpTGjNIHstX0i2b8qekcj1tRvjG8,38174
101
102
  worker_automate_hub/worker.py,sha256=uhZ3f-iaQ1i8cANbljp50vkYl-Xm0_sHtjwwF_2y72o,7191
102
- worker_automate_hub-0.5.741.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
103
- worker_automate_hub-0.5.741.dist-info/METADATA,sha256=l9VoHC52pq2DvxKfUYi7pk1UyePmTaukkaOoYXBl3Fw,3049
104
- worker_automate_hub-0.5.741.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
105
- worker_automate_hub-0.5.741.dist-info/RECORD,,
103
+ worker_automate_hub-0.5.743.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
104
+ worker_automate_hub-0.5.743.dist-info/METADATA,sha256=YyURTHvjrhqWu0Dz5M-vnYuvB1g_xd0wZXtivVAGTGg,3049
105
+ worker_automate_hub-0.5.743.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
106
+ worker_automate_hub-0.5.743.dist-info/RECORD,,