worker-automate-hub 0.4.435__py3-none-any.whl → 0.4.436__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.
@@ -180,7 +180,16 @@ async def entrada_de_notas_16(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
180
180
  )
181
181
  combo_box_natureza_operacao.click()
182
182
  await worker_sleep(4)
183
- set_combobox("||List", "1403 - COMPRA DE MERCADORIAS- 1.403")
183
+ try:
184
+ set_combobox("||List", "1403 - COMPRA DE MERCADORIAS- 1.403")
185
+ except:
186
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
187
+ pyautogui.write("1102")
188
+ await worker_sleep(2)
189
+ pyautogui.hotkey("enter")
190
+ await worker_sleep(2)
191
+ pyautogui.write("1403 - COMPRA DE MERCADORIAS- 1.403")
192
+
184
193
  await worker_sleep(3)
185
194
  elif nota.get("cfop") == "6910":
186
195
  combo_box_natureza_operacao = main_window.child_window(
@@ -188,9 +197,15 @@ async def entrada_de_notas_16(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
188
197
  )
189
198
  combo_box_natureza_operacao.click()
190
199
  await worker_sleep(4)
191
- set_combobox(
192
- "||List", "2910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 2910"
193
- )
200
+ try:
201
+ set_combobox("||List", "2910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 2910")
202
+ except:
203
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
204
+ pyautogui.write("1102")
205
+ await worker_sleep(2)
206
+ pyautogui.hotkey("enter")
207
+ await worker_sleep(2)
208
+ pyautogui.write("2910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 2910")
194
209
  await worker_sleep(4)
195
210
  else:
196
211
  combo_box_natureza_operacao = main_window.child_window(
@@ -198,10 +213,26 @@ async def entrada_de_notas_16(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
198
213
  )
199
214
  combo_box_natureza_operacao.click()
200
215
  await worker_sleep(4)
201
- set_combobox(
202
- "||List", "1910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 1910"
203
- )
216
+ try:
217
+ set_combobox("||List", "1910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 1910")
218
+ except:
219
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
220
+ pyautogui.write("1102")
221
+ await worker_sleep(2)
222
+ pyautogui.hotkey("enter")
223
+ await worker_sleep(2)
224
+ pyautogui.write("1910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 1910")
204
225
  await worker_sleep(3)
226
+
227
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
228
+ if "1910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 1910" in combo_box_natureza_operacao.window_text() or "2910-ENTRADA DE BONIFICACAO - COM ESTOQUE - 2910" in combo_box_natureza_operacao.window_text() or '1403 - COMPRA DE MERCADORIAS- 1.403' in combo_box_natureza_operacao.window_text():
229
+ console.log("CFOP informado com sucesso")
230
+ else:
231
+ return RpaRetornoProcessoDTO(
232
+ sucesso=False,
233
+ retorno="Não foi possivel selecionar o CFOP",
234
+ status=RpaHistoricoStatusEnum.Falha,
235
+ )
205
236
 
206
237
  # INTERAGINDO COM O CAMPO ALMOXARIFADO
207
238
  filial_empresa_origem = nota.get("filialEmpresaOrigem")
@@ -167,9 +167,16 @@ async def entrada_de_notas_207(task: RpaProcessoEntradaDTO) -> RpaRetornoProcess
167
167
  combo_box_natureza_operacao.click()
168
168
 
169
169
  await worker_sleep(3)
170
- set_combobox("||List", "1652-COMPRA DE MERCADORIAS- 1.652")
170
+ try:
171
+ set_combobox("||List", "1652-COMPRA DE MERCADORIAS- 1.652")
172
+ except:
173
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
174
+ pyautogui.write("1102")
175
+ await worker_sleep(2)
176
+ pyautogui.hotkey("enter")
177
+ await worker_sleep(2)
178
+ pyautogui.write("1652-COMPRA DE MERCADORIAS- 1.652")
171
179
  await worker_sleep(3)
172
-
173
180
  else:
174
181
  console.print(
175
182
  "Erro mapeado, CFOP diferente de 5655 ou 56, necessario ação manual ou ajuste no robo...\n"
@@ -179,6 +186,16 @@ async def entrada_de_notas_207(task: RpaProcessoEntradaDTO) -> RpaRetornoProcess
179
186
  retorno="Erro mapeado, CFOP diferente de 5655 ou 56, necessario ação manual ou ajuste no robo",
180
187
  status=RpaHistoricoStatusEnum.Falha,
181
188
  )
189
+
190
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
191
+ if "1652-COMPRA DE MERCADORIAS- 1.652" in combo_box_natureza_operacao.window_text():
192
+ console.log("CFOP informado com sucesso")
193
+ else:
194
+ return RpaRetornoProcessoDTO(
195
+ sucesso=False,
196
+ retorno="Não foi possivel selecionar o CFOP",
197
+ status=RpaHistoricoStatusEnum.Falha,
198
+ )
182
199
 
183
200
  # INTERAGINDO COM O CAMPO ALMOXARIFADO
184
201
  filialEmpresaOrigem = nota.get("filialEmpresaOrigem")
@@ -180,9 +180,27 @@ async def entrada_de_notas_32(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
180
180
  await worker_sleep(3)
181
181
 
182
182
  if str(cfop).startswith("6"):
183
- set_combobox("||List", "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
183
+ try:
184
+ set_combobox("||List", "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
185
+ except:
186
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
187
+ pyautogui.write("1102")
188
+ await worker_sleep(2)
189
+ pyautogui.hotkey("enter")
190
+ await worker_sleep(2)
191
+ pyautogui.write("2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
192
+ await worker_sleep(2)
184
193
  elif str(cfop).startswith("5"):
185
- set_combobox("||List", "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
194
+ try:
195
+ set_combobox("||List", "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
196
+ except:
197
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
198
+ pyautogui.write("1102")
199
+ await worker_sleep(2)
200
+ pyautogui.hotkey("enter")
201
+ await worker_sleep(2)
202
+ pyautogui.write("1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
203
+ await worker_sleep(2)
186
204
  else:
187
205
  console.print(
188
206
  "Erro mapeado, CFOP diferente de inicio com 540 ou 510, necessario ação manual ou ajuste no robo...\n"
@@ -192,6 +210,16 @@ async def entrada_de_notas_32(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
192
210
  retorno=f"Erro mapeado, CFOP diferente de inicio com 540 ou 510, necessario ação manual ou ajuste no robo.",
193
211
  status=RpaHistoricoStatusEnum.Falha,
194
212
  )
213
+
214
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
215
+ if "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556" in combo_box_natureza_operacao.window_text() or "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556" in combo_box_natureza_operacao.window_text():
216
+ console.log("CFOP informado com sucesso")
217
+ else:
218
+ return RpaRetornoProcessoDTO(
219
+ sucesso=False,
220
+ retorno="Não foi possivel selecionar o CFOP",
221
+ status=RpaHistoricoStatusEnum.Falha,
222
+ )
195
223
  await worker_sleep(3)
196
224
 
197
225
  # INTERAGINDO COM O CAMPO ALMOXARIFADO
@@ -176,9 +176,27 @@ async def entrada_de_notas_33(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
176
176
  await worker_sleep(3)
177
177
 
178
178
  if str(cfop).startswith("6"):
179
- set_combobox("||List", "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
179
+ try:
180
+ set_combobox("||List", "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
181
+ except:
182
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
183
+ pyautogui.write("1102")
184
+ await worker_sleep(2)
185
+ pyautogui.hotkey("enter")
186
+ await worker_sleep(2)
187
+ pyautogui.write("2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
188
+ await worker_sleep(2)
180
189
  elif str(cfop).startswith("5"):
181
- set_combobox("||List", "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
190
+ try:
191
+ set_combobox("||List", "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
192
+ except:
193
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
194
+ pyautogui.write("1102")
195
+ await worker_sleep(2)
196
+ pyautogui.hotkey("enter")
197
+ await worker_sleep(2)
198
+ pyautogui.write("1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
199
+ await worker_sleep(2)
182
200
  else:
183
201
  console.print(
184
202
  "Erro mapeado, CFOP diferente de inicio com 540 ou 510, necessario ação manual ou ajuste no robo...\n"
@@ -188,6 +206,16 @@ async def entrada_de_notas_33(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
188
206
  retorno=f"Erro mapeado, CFOP diferente de inicio com 540 ou 510, necessario ação manual ou ajuste no robo.",
189
207
  status=RpaHistoricoStatusEnum.Falha,
190
208
  )
209
+
210
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
211
+ if "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556" in combo_box_natureza_operacao.window_text() or "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556" in combo_box_natureza_operacao.window_text():
212
+ console.log("CFOP informado com sucesso")
213
+ else:
214
+ return RpaRetornoProcessoDTO(
215
+ sucesso=False,
216
+ retorno="Não foi possivel selecionar o CFOP",
217
+ status=RpaHistoricoStatusEnum.Falha,
218
+ )
191
219
 
192
220
  await worker_sleep(3)
193
221
 
@@ -176,9 +176,27 @@ async def entrada_de_notas_34(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
176
176
  await worker_sleep(3)
177
177
 
178
178
  if str(cfop).startswith("6"):
179
- set_combobox("||List", "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
179
+ try:
180
+ set_combobox("||List", "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
181
+ except:
182
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
183
+ pyautogui.write("1102")
184
+ await worker_sleep(2)
185
+ pyautogui.hotkey("enter")
186
+ await worker_sleep(2)
187
+ pyautogui.write("2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556")
188
+ await worker_sleep(2)
180
189
  elif str(cfop).startswith("5"):
181
- set_combobox("||List", "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
190
+ try:
191
+ set_combobox("||List", "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
192
+ except:
193
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
194
+ pyautogui.write("1102")
195
+ await worker_sleep(2)
196
+ pyautogui.hotkey("enter")
197
+ await worker_sleep(2)
198
+ pyautogui.write("1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556")
199
+ await worker_sleep(2)
182
200
  else:
183
201
  console.print(
184
202
  "Erro mapeado, CFOP diferente de inicio com 540 ou 510, necessario ação manual ou ajuste no robo...\n"
@@ -188,6 +206,16 @@ async def entrada_de_notas_34(task: RpaProcessoEntradaDTO) -> RpaRetornoProcesso
188
206
  retorno=f"Erro mapeado, CFOP diferente de inicio com 540 ou 510, necessario ação manual ou ajuste no robo.",
189
207
  status=RpaHistoricoStatusEnum.Falha,
190
208
  )
209
+
210
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
211
+ if "1556-COMPRA DE MERCADORIAS SEM ESTOQUE- 1.556" in combo_box_natureza_operacao.window_text() or "2556-COMPRA DE MERCADORIAS SEM ESTOQUE- 2.556" in combo_box_natureza_operacao.window_text():
212
+ console.log("CFOP informado com sucesso")
213
+ else:
214
+ return RpaRetornoProcessoDTO(
215
+ sucesso=False,
216
+ retorno="Não foi possivel selecionar o CFOP",
217
+ status=RpaHistoricoStatusEnum.Falha,
218
+ )
191
219
 
192
220
  await worker_sleep(3)
193
221
 
@@ -167,17 +167,36 @@ async def entrada_de_notas_505(task: RpaProcessoEntradaDTO) -> RpaRetornoProcess
167
167
  combo_box_natureza_operacao.click()
168
168
 
169
169
  await worker_sleep(3)
170
- set_combobox("||List", "1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102")
171
- await worker_sleep(3)
170
+ try:
171
+ set_combobox("||List", "1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102")
172
+ await worker_sleep(3)
173
+ except:
174
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
175
+ pyautogui.write("1102")
176
+ await worker_sleep(2)
177
+ pyautogui.hotkey("enter")
178
+ await worker_sleep(2)
179
+ pyautogui.write("1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102")
180
+ await worker_sleep(2)
181
+
172
182
  elif cfop == 6102 or str(cfop).startswith("61"):
173
183
  combo_box_natureza_operacao = main_window.child_window(
174
184
  class_name="TDBIComboBox", found_index=0
175
185
  )
176
186
  combo_box_natureza_operacao.click()
177
-
178
- await worker_sleep(3)
179
- set_combobox("||List", "2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102")
180
187
  await worker_sleep(3)
188
+
189
+ try:
190
+ set_combobox("||List", "2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102")
191
+ await worker_sleep(3)
192
+ except:
193
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
194
+ pyautogui.write("1102")
195
+ await worker_sleep(2)
196
+ pyautogui.hotkey("enter")
197
+ await worker_sleep(2)
198
+ pyautogui.write("2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102")
199
+ await worker_sleep(2)
181
200
  else:
182
201
  console.print(
183
202
  "Erro mapeado, CFOP diferente de 6102 ou 5104/51, necessario ação manual ou ajuste no robo...\n"
@@ -187,6 +206,17 @@ async def entrada_de_notas_505(task: RpaProcessoEntradaDTO) -> RpaRetornoProcess
187
206
  retorno="Erro mapeado, CFOP diferente de 5655 ou 56, necessario ação manual ou ajuste no robo",
188
207
  status=RpaHistoricoStatusEnum.Falha,
189
208
  )
209
+
210
+
211
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
212
+ if "1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102" in combo_box_natureza_operacao.window_text() or "2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102" in combo_box_natureza_operacao.window_text():
213
+ console.log("CFOP informado com sucesso")
214
+ else:
215
+ return RpaRetornoProcessoDTO(
216
+ sucesso=False,
217
+ retorno="Não foi possivel selecionar o CFOP",
218
+ status=RpaHistoricoStatusEnum.Falha,
219
+ )
190
220
 
191
221
  # INTERAGINDO COM O CAMPO ALMOXARIFADO
192
222
  filialEmpresaOrigem = nota.get("filialEmpresaOrigem")
@@ -165,7 +165,16 @@ async def entrada_de_notas_7139(task: RpaProcessoEntradaDTO) -> RpaRetornoProces
165
165
  combo_box_natureza_operacao.click()
166
166
 
167
167
  await worker_sleep(3)
168
- set_combobox("||List", "1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102")
168
+ try:
169
+ set_combobox("||List", "1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102")
170
+ except:
171
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
172
+ pyautogui.write("1102")
173
+ await worker_sleep(2)
174
+ pyautogui.hotkey("enter")
175
+ await worker_sleep(2)
176
+ pyautogui.write("1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102")
177
+ await worker_sleep(2)
169
178
  await worker_sleep(3)
170
179
  elif cfop == 6102 or str(cfop).startswith("61"):
171
180
  combo_box_natureza_operacao = main_window.child_window(
@@ -174,8 +183,16 @@ async def entrada_de_notas_7139(task: RpaProcessoEntradaDTO) -> RpaRetornoProces
174
183
  combo_box_natureza_operacao.click()
175
184
 
176
185
  await worker_sleep(3)
177
- set_combobox("||List", "2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102")
178
- await worker_sleep(3)
186
+ try:
187
+ set_combobox("||List", "2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102")
188
+ except:
189
+ console.log("Não foi possivel selecionar o tipo de documento via set combobox, realizando a alteração utilizando pyautogui write")
190
+ pyautogui.write("1102")
191
+ await worker_sleep(2)
192
+ pyautogui.hotkey("enter")
193
+ await worker_sleep(2)
194
+ pyautogui.write("2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102")
195
+ await worker_sleep(2)
179
196
  else:
180
197
  console.print(
181
198
  "Erro mapeado, CFOP diferente de 6102 ou 5104/51, necessario ação manual ou ajuste no robo...\n"
@@ -186,6 +203,16 @@ async def entrada_de_notas_7139(task: RpaProcessoEntradaDTO) -> RpaRetornoProces
186
203
  status=RpaHistoricoStatusEnum.Falha,
187
204
  )
188
205
 
206
+ combo_box_natureza_operacao = main_window.child_window(class_name="TDBIComboBox", found_index=0)
207
+ if "1102-COMPRA DE MERCADORIA ADQ. TERCEIROS - 1.102" in combo_box_natureza_operacao.window_text() or "2102-COMPRA DE MERCADORIAS SEM DIFAL - 2.102" in combo_box_natureza_operacao.window_text():
208
+ console.log("CFOP informado com sucesso")
209
+ else:
210
+ return RpaRetornoProcessoDTO(
211
+ sucesso=False,
212
+ retorno="Não foi possivel selecionar o CFOP",
213
+ status=RpaHistoricoStatusEnum.Falha,
214
+ )
215
+
189
216
  # INTERAGINDO COM O CAMPO ALMOXARIFADO
190
217
  filialEmpresaOrigem = nota.get("filialEmpresaOrigem")
191
218
  console.print(
@@ -2229,7 +2229,7 @@ async def select_documento_type(document_type: str) -> RpaRetornoProcessoDTO:
2229
2229
  else:
2230
2230
  return RpaRetornoProcessoDTO(
2231
2231
  sucesso=False,
2232
- retorno=f"Não foi possivel selecionar o tipo do documento, erro: {e} ",
2232
+ retorno=f"Não foi possivel selecionar o tipo do documento",
2233
2233
  status=RpaHistoricoStatusEnum.Falha,
2234
2234
  )
2235
2235
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: worker-automate-hub
3
- Version: 0.4.435
3
+ Version: 0.4.436
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
@@ -39,16 +39,16 @@ worker_automate_hub/tasks/jobs/ecac_estadual_sc.py,sha256=ZTjc4rS8J7VfWHPFLkJBcS
39
39
  worker_automate_hub/tasks/jobs/ecac_estadual_sp.py,sha256=iS6za_nGCzBRVCXYYuUTIyMWJznHp8l6BPahqwzc_5c,29102
40
40
  worker_automate_hub/tasks/jobs/ecac_federal.py,sha256=ORQbA4DCfyHJqjfvOCenc97QHvBCBlA3oMSzl59K6vg,55316
41
41
  worker_automate_hub/tasks/jobs/entrada_de_notas_15.py,sha256=5Rqz_kf-399nEA3s1_69MGOAn6Mk0GbdAP_0EFzAcYw,16570
42
- worker_automate_hub/tasks/jobs/entrada_de_notas_16.py,sha256=qP60VQmRB-2NkMwsHMQz8K9X75w0nr084pRJcaWkpqo,19654
43
- worker_automate_hub/tasks/jobs/entrada_de_notas_207.py,sha256=TfvGmH1__OGRx5oYordEJt-gpcETKA9OFhwHQD3yqs4,24928
44
- worker_automate_hub/tasks/jobs/entrada_de_notas_32.py,sha256=0cneKY6bQU5neo3TKlGynney_CoOB_J_dctFMYf26WM,32388
45
- worker_automate_hub/tasks/jobs/entrada_de_notas_33.py,sha256=ktXc_kdMhlz9cbb7XjfMJhME29mgMFd_FnatxSZZU_s,31457
46
- worker_automate_hub/tasks/jobs/entrada_de_notas_34.py,sha256=iaSmtWTWlazHDtGp22yTV5J5rHDhUCbEaCAnpU7UWyM,31808
42
+ worker_automate_hub/tasks/jobs/entrada_de_notas_16.py,sha256=dHyqR4-E9QnlEoz07WOYC-thiEj6oo1mvFZcCR6KihQ,21670
43
+ worker_automate_hub/tasks/jobs/entrada_de_notas_207.py,sha256=LhdMXfSPZEyl7GCF-z__BrBLzzx0C2ldKB8LeTOqXPw,25840
44
+ worker_automate_hub/tasks/jobs/entrada_de_notas_32.py,sha256=UFHJjPWcy9LBf_7RdWVQFsGUf-asx5nFkxXzfz9sB1c,33930
45
+ worker_automate_hub/tasks/jobs/entrada_de_notas_33.py,sha256=-Fb6_F9Allzgqnukhj4ri8H0LrAoAzd8D1BUoGtGTTU,32999
46
+ worker_automate_hub/tasks/jobs/entrada_de_notas_34.py,sha256=u4Wmb1VXMaW9qLr8HNi3H0ihiB0m3rDSmaOnj5KTBgM,33350
47
47
  worker_automate_hub/tasks/jobs/entrada_de_notas_36.py,sha256=vFkDcgJ9uxrMMLYdeONCMxh6_evnhgF1Sun5HEHAWa4,22716
48
48
  worker_automate_hub/tasks/jobs/entrada_de_notas_39.py,sha256=Kv1Ttgq477Xtp17QDymcOgWtuozFAexUqhcThPV9GTI,32767
49
49
  worker_automate_hub/tasks/jobs/entrada_de_notas_500.py,sha256=MYPaYAP2iwdBYDZUf39f7yGibTME9uObEash_QTCmFA,32231
50
- worker_automate_hub/tasks/jobs/entrada_de_notas_505.py,sha256=jIml8gjXPdI6_x7S9VVV8IrKZRF7_PTNOMnhNmYMDTU,14490
51
- worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=8XP9G3n0PUeshbRWkWKOMnyUGRWspIolPZVqQTR3SMI,14184
50
+ worker_automate_hub/tasks/jobs/entrada_de_notas_505.py,sha256=56USegQfvkGEBuqlMiLohzgkZFrFB0hr9kkIk3yRLiw,16056
51
+ worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=jObVKdybpRgbdXihPdyGxKJxHxgzK0uZD1YJQNPEiXc,15695
52
52
  worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=Urt_7dZNuyUkSyG9fYb2ArBXzEONXlrqWIesoXeL1EI,50984
53
53
  worker_automate_hub/tasks/jobs/exemplo_processo.py,sha256=3-zxbb-9YHPmSA_K1Qgxp_FwSqg2QDjGBRCLxDZ8QoQ,3451
54
54
  worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py,sha256=mZ6mCaz1lYmyFxwC8MVLXPsgynE1VkNKlEzYGsciDiY,10179
@@ -65,10 +65,10 @@ worker_automate_hub/utils/get_creds_gworkspace.py,sha256=ZJ0IIEjM4IXIV9rwfbOZ1V1
65
65
  worker_automate_hub/utils/logger.py,sha256=FYV9fg0_RAYJF_ZOCJEbqQAiCXlXk2gMpvUU1rzT_xs,671
66
66
  worker_automate_hub/utils/toast.py,sha256=xPHc5r5uOxB_cZlCzm13Kt2qSKLLFZALncU6Qg3Ft68,1162
67
67
  worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbVlwDl49Y,7972
68
- worker_automate_hub/utils/util.py,sha256=nR3tADb5Rpfn8L1kScLhszEPGKjW3dQMdvIvriIA3tY,121109
68
+ worker_automate_hub/utils/util.py,sha256=u26dN2l07nohdbDgcZEexcSMSK8I3aQOmszDi8h8ogk,121097
69
69
  worker_automate_hub/utils/utils_nfe_entrada.py,sha256=7ju688sD52y30taGSm5rPMGdQyByUUwveLeKV4ImEiE,28401
70
70
  worker_automate_hub/worker.py,sha256=KDBU3L2kVobndrnN5coRZFTwVmBLKmPJjRv20sCo5Hc,4697
71
- worker_automate_hub-0.4.435.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
72
- worker_automate_hub-0.4.435.dist-info/METADATA,sha256=VM2UFlESB-HbfXaO3YV42VJSEl1Vuj1UWXsP4ACB6_E,2895
73
- worker_automate_hub-0.4.435.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
74
- worker_automate_hub-0.4.435.dist-info/RECORD,,
71
+ worker_automate_hub-0.4.436.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
72
+ worker_automate_hub-0.4.436.dist-info/METADATA,sha256=RhZcoa1nqSTh7OFZCfYjQ-oGItMmSDTLoHGBfF4ovtQ,2895
73
+ worker_automate_hub-0.4.436.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
74
+ worker_automate_hub-0.4.436.dist-info/RECORD,,