worker-automate-hub 0.5.813__py3-none-any.whl → 0.5.815__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/tasks/jobs/abertura_livros_fiscais.py +40 -23
- worker_automate_hub/tasks/jobs/integracao_contabil_generica.py +57 -81
- worker_automate_hub/tasks/jobs/sped_fiscal.py +8 -8
- worker_automate_hub/utils/util.py +1 -1
- {worker_automate_hub-0.5.813.dist-info → worker_automate_hub-0.5.815.dist-info}/METADATA +1 -1
- {worker_automate_hub-0.5.813.dist-info → worker_automate_hub-0.5.815.dist-info}/RECORD +8 -8
- {worker_automate_hub-0.5.813.dist-info → worker_automate_hub-0.5.815.dist-info}/WHEEL +0 -0
- {worker_automate_hub-0.5.813.dist-info → worker_automate_hub-0.5.815.dist-info}/entry_points.txt +0 -0
@@ -81,11 +81,11 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
81
81
|
message="32-bit application should be automated using 32-bit Python",
|
82
82
|
)
|
83
83
|
|
84
|
-
await worker_sleep(
|
84
|
+
await worker_sleep(8)
|
85
85
|
|
86
86
|
try:
|
87
87
|
app = Application(backend="win32").connect(
|
88
|
-
class_name="TFrmLoginModulo", timeout=
|
88
|
+
class_name="TFrmLoginModulo", timeout=120
|
89
89
|
)
|
90
90
|
except:
|
91
91
|
return RpaRetornoProcessoDTO(
|
@@ -331,8 +331,8 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
331
331
|
console.print("Aguardar o término de carregar")
|
332
332
|
# imagem = r"C:\Users\automatehub\Documents\GitHub\worker-automate-hub\assets\abertura_livros\livros_incluidos.png"
|
333
333
|
imagem = "assets\\abertura_livros\\livros_incluidos.png"
|
334
|
-
|
335
|
-
tempo_limite = 6600
|
334
|
+
|
335
|
+
tempo_limite = 6600 # 1h
|
336
336
|
intervalo = 2 # segundos entre as verificações
|
337
337
|
|
338
338
|
inicio = time.time()
|
@@ -375,7 +375,9 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
375
375
|
# img_dialog = r"C:\Users\automatehub\Documents\GitHub\worker-automate-hub\assets\abertura_livros\notas_rejeitadas.png"
|
376
376
|
img_dialog = "assets\\abertura_livros\\notas_rejeitadas.png"
|
377
377
|
if os.path.exists(img_dialog):
|
378
|
-
caixa = pyautogui.locateOnScreen(
|
378
|
+
caixa = pyautogui.locateOnScreen(
|
379
|
+
img_dialog, confidence=0.9, grayscale=True
|
380
|
+
)
|
379
381
|
if caixa:
|
380
382
|
print("Janela 'notas rejeitadas' detectada por imagem.")
|
381
383
|
region = (caixa.left, caixa.top, caixa.width, caixa.height)
|
@@ -384,9 +386,13 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
384
386
|
class_name="TMessageForm", timeout=2
|
385
387
|
)
|
386
388
|
form = app_msg["TMessageForm"]
|
387
|
-
console.print(
|
389
|
+
console.print(
|
390
|
+
"Janela de confirmação 'TMessageForm' encontrada."
|
391
|
+
)
|
388
392
|
form.set_focus()
|
389
|
-
form.child_window(
|
393
|
+
form.child_window(
|
394
|
+
class_name="TButton", found_index=1
|
395
|
+
).click_input()
|
390
396
|
print("Clicou no botão de sim.")
|
391
397
|
|
392
398
|
await worker_sleep(5)
|
@@ -394,18 +400,31 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
394
400
|
# img_dialog = r"C:\Users\automatehub\Documents\GitHub\worker-automate-hub\assets\abertura_livros\gerar_rel_notas_rejeitadas.png"
|
395
401
|
img_dialog = "assets\\abertura_livros\\gerar_rel_notas_rejeitadas.png"
|
396
402
|
if os.path.exists(img_dialog):
|
397
|
-
caixa = pyautogui.locateOnScreen(
|
403
|
+
caixa = pyautogui.locateOnScreen(
|
404
|
+
img_dialog, confidence=0.9, grayscale=True
|
405
|
+
)
|
398
406
|
if caixa:
|
399
|
-
print(
|
400
|
-
|
407
|
+
print(
|
408
|
+
"Janela 'notas relatorios rejeitadas' detectada por imagem."
|
409
|
+
)
|
410
|
+
region = (
|
411
|
+
caixa.left,
|
412
|
+
caixa.top,
|
413
|
+
caixa.width,
|
414
|
+
caixa.height,
|
415
|
+
)
|
401
416
|
|
402
417
|
app_msg = Application().connect(
|
403
418
|
class_name="TMessageForm", timeout=2
|
404
419
|
)
|
405
420
|
form = app_msg["TMessageForm"]
|
406
|
-
console.print(
|
421
|
+
console.print(
|
422
|
+
"Janela de confirmação 'TMessageForm' encontrada."
|
423
|
+
)
|
407
424
|
form.set_focus()
|
408
|
-
form.child_window(
|
425
|
+
form.child_window(
|
426
|
+
class_name="TButton", found_index=0
|
427
|
+
).click_input()
|
409
428
|
print("Clicou no botão de não.")
|
410
429
|
except:
|
411
430
|
pass
|
@@ -421,7 +440,6 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
421
440
|
except:
|
422
441
|
pass
|
423
442
|
|
424
|
-
|
425
443
|
# Se encontrou a janela de relatório, sai
|
426
444
|
if janela_aberta:
|
427
445
|
print("Relatório carregado. Saindo do loop.")
|
@@ -457,19 +475,19 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
457
475
|
|
458
476
|
# Verificando se a foi confirmado os livres
|
459
477
|
console.print("Verificando se os livros foram confirmados")
|
460
|
-
|
478
|
+
|
461
479
|
# imagem = r"C:\Users\automatehub\Documents\GitHub\worker-automate-hub\assets\abertura_livros\confirmado_livros.png"
|
462
480
|
imagem = "assets\\abertura_livros\\confirmado_livros.png"
|
463
481
|
if os.path.exists(imagem):
|
464
|
-
caixa = pyautogui.locateOnScreen(imagem, confidence=0.9, grayscale=True)
|
482
|
+
caixa = pyautogui.locateOnScreen(imagem, confidence=0.9, grayscale=True)
|
465
483
|
else:
|
466
484
|
console.print("Imagem confirmada não encontrada")
|
467
485
|
return RpaRetornoProcessoDTO(
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
486
|
+
sucesso=False,
|
487
|
+
retorno=f"Erro na Abertura de Livro Fiscal: Imagem confirmada não encontrada",
|
488
|
+
status=RpaHistoricoStatusEnum.Falha,
|
489
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
|
490
|
+
)
|
473
491
|
|
474
492
|
# Clicar em fechar
|
475
493
|
main_window.close()
|
@@ -581,9 +599,9 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
581
599
|
class_name="TDBIEditDate", found_index=0
|
582
600
|
)
|
583
601
|
data_input.click_input()
|
584
|
-
|
602
|
+
|
585
603
|
await worker_sleep(5)
|
586
|
-
|
604
|
+
|
587
605
|
data_input.set_edit_text("") # Limpa o campo
|
588
606
|
|
589
607
|
# Define a competência
|
@@ -606,7 +624,6 @@ async def abertura_livros_fiscais(task: RpaProcessoEntradaDTO) -> RpaRetornoProc
|
|
606
624
|
|
607
625
|
await worker_sleep(2)
|
608
626
|
|
609
|
-
|
610
627
|
# === 5) Se não houve 'Aviso' com erro mapeado, considera sucesso ===
|
611
628
|
console.print("Nenhum erro confirmado. Fluxo OK.")
|
612
629
|
try:
|
@@ -202,7 +202,7 @@ async def integracao_contabil_generica(
|
|
202
202
|
|
203
203
|
# console.print("Selecionando item do campo origem...")
|
204
204
|
uuid_processo = task.uuidProcesso
|
205
|
-
caminho_imagem =
|
205
|
+
caminho_imagem = f"assets\\integracao_contabil\\{uuid_processo}.png"
|
206
206
|
|
207
207
|
await metodo_selecao_origem_especial()
|
208
208
|
await localizar_e_clicar(caminho_imagem) # main_window.set_focus()
|
@@ -258,7 +258,7 @@ async def integracao_contabil_generica(
|
|
258
258
|
console.print("Verificar se existem lotes")
|
259
259
|
try:
|
260
260
|
# Verifica mensagem sem lote pra integrar
|
261
|
-
imagem_alvo =
|
261
|
+
imagem_alvo = "assets\\integracao_contabil\\sem_lote.png"
|
262
262
|
|
263
263
|
localizacao = pyautogui.locateOnScreen(imagem_alvo, confidence=0.9)
|
264
264
|
|
@@ -297,7 +297,7 @@ async def integracao_contabil_generica(
|
|
297
297
|
await worker_sleep(5)
|
298
298
|
|
299
299
|
try:
|
300
|
-
imagem_finalizada =
|
300
|
+
imagem_finalizada = "assets\\integracao_contabil\\pesquisa_finalizada.png"
|
301
301
|
|
302
302
|
if not os.path.exists(imagem_finalizada):
|
303
303
|
raise FileNotFoundError(
|
@@ -399,9 +399,9 @@ async def integracao_contabil_generica(
|
|
399
399
|
total_debito = numeros[1].window_text()
|
400
400
|
total_credito = numeros[2].window_text()
|
401
401
|
|
402
|
-
|
403
|
-
|
404
|
-
|
402
|
+
print("Diferença:", diferenca)
|
403
|
+
print("Total Débito:", total_debito)
|
404
|
+
print("Total Crédito:", total_credito)
|
405
405
|
|
406
406
|
if diferenca > "0,00":
|
407
407
|
clicou = True
|
@@ -433,16 +433,19 @@ async def integracao_contabil_generica(
|
|
433
433
|
|
434
434
|
await worker_sleep(5)
|
435
435
|
|
436
|
-
|
437
|
-
assets_int_cont = os.path.join(ASSETS_PATH_BASE, "integracao_contabil")
|
436
|
+
assets_int_cont = "assets\\integracao_contabil\\"
|
438
437
|
err_dict = {
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
438
|
+
assets_int_cont
|
439
|
+
+ "erro_duplicidade.png": "Integração não realizada. Erro de Duplicidade localizado enquanto finalizava a integração, contate o suporte do Emsys.",
|
440
|
+
assets_int_cont
|
441
|
+
+ "conta_indefinida_error.png": "Integração não realizada. Conta contábil indefinida no sistema.",
|
442
|
+
assets_int_cont
|
443
|
+
+ "lote_sem_complemento_error.png": "Integração não realizada. Lote encontrado sem complemento obrigatório.",
|
444
|
+
assets_int_cont
|
445
|
+
+ "diferenca_cred_deb.png": "Integração não realizada. Existem diferença em lotes consistentes, por favor verificar.",
|
446
|
+
assets_int_cont
|
447
|
+
+ "integracao_sucesso.png": "Integração Finalizada com Sucesso.",
|
444
448
|
}
|
445
|
-
|
446
449
|
# Aguardar finalizar
|
447
450
|
while True:
|
448
451
|
try:
|
@@ -451,56 +454,23 @@ async def integracao_contabil_generica(
|
|
451
454
|
)
|
452
455
|
msg_box = app["TMsgBox"]
|
453
456
|
|
454
|
-
#
|
457
|
+
# Antes de qualquer coisa, verifica por imagem de erro
|
455
458
|
for img_path, mensagem in err_dict.items():
|
456
459
|
try:
|
457
|
-
|
458
|
-
except
|
459
|
-
|
460
|
+
err = pyautogui.locateOnScreen(img_path, confidence=0.90)
|
461
|
+
except:
|
462
|
+
continue
|
460
463
|
|
461
|
-
if
|
462
|
-
|
463
|
-
if img_path.endswith("integracao_sucesso.png"):
|
464
|
+
if err:
|
465
|
+
if "integracao_sucesso.png" in img_path:
|
464
466
|
console.print(f"[green]{mensagem}[/green]")
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
# Se integrou com 'Lotes Consistentes' marcados, é FALHA
|
472
|
-
if lotesMarcados:
|
473
|
-
try:
|
474
|
-
# busca novamente o checkbox para garantir escopo
|
475
|
-
cb = dlg.child_window(title="Lotes Consistentes", class_name="TCheckBox")
|
476
|
-
if cb.exists() and cb.is_enabled() and cb.is_visible():
|
477
|
-
cb.click_input()
|
478
|
-
print("Checkbox 'Lotes Consistentes' desmarcado com sucesso.")
|
479
|
-
except Exception as e:
|
480
|
-
print(f"Não foi possível desmarcar checkbox: {e}")
|
481
|
-
|
482
|
-
time.sleep(5)
|
483
|
-
return RpaRetornoProcessoDTO(
|
484
|
-
sucesso=False,
|
485
|
-
retorno="Integração realizada, porém, existem LOTES INCONSISTENTES.",
|
486
|
-
status=RpaHistoricoStatusEnum.Falha,
|
487
|
-
tags=[RpaTagDTO(descricao=RpaTagEnum.Negocio)],
|
488
|
-
)
|
489
|
-
|
490
|
-
# Se não estava marcado, aí sim é sucesso
|
491
|
-
return RpaRetornoProcessoDTO(
|
492
|
-
sucesso=True,
|
493
|
-
retorno=mensagem,
|
494
|
-
status=RpaHistoricoStatusEnum.Sucesso,
|
495
|
-
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
|
496
|
-
)
|
497
|
-
|
498
|
-
# Demais imagens tratadas como ERRO
|
467
|
+
msg_box.child_window(
|
468
|
+
class_name="TBitBtn", found_index=0
|
469
|
+
).click_input()
|
470
|
+
break
|
471
|
+
|
499
472
|
console.print(f"[red]Erro encontrado:[/red] {mensagem}")
|
500
|
-
|
501
|
-
msg_box.child_window(class_name="TBitBtn", found_index=0).click_input()
|
502
|
-
except:
|
503
|
-
pass
|
473
|
+
|
504
474
|
return RpaRetornoProcessoDTO(
|
505
475
|
sucesso=False,
|
506
476
|
retorno=mensagem,
|
@@ -510,16 +480,19 @@ async def integracao_contabil_generica(
|
|
510
480
|
|
511
481
|
await worker_sleep(1)
|
512
482
|
|
513
|
-
# Se nenhuma imagem foi encontrada, tenta só fechar a TMsgBox (se existir) e sai
|
514
483
|
try:
|
515
484
|
app = Application(backend="win32").connect(
|
516
485
|
class_name="TMsgBox", found_index=0
|
517
486
|
)
|
518
487
|
main_window = app["TMsgBox"]
|
519
|
-
main_window.child_window(
|
488
|
+
main_window.child_window(
|
489
|
+
class_name="TBitBtn", found_index=0
|
490
|
+
).click_input()
|
520
491
|
break
|
521
492
|
except ElementNotFoundError:
|
522
|
-
console.print(
|
493
|
+
console.print(
|
494
|
+
"[yellow]Janela TMsgBox ainda não visível.[/yellow]"
|
495
|
+
)
|
523
496
|
break
|
524
497
|
|
525
498
|
except ElementNotFoundError:
|
@@ -530,23 +503,6 @@ async def integracao_contabil_generica(
|
|
530
503
|
|
531
504
|
await worker_sleep(1)
|
532
505
|
|
533
|
-
try:
|
534
|
-
app = Application(backend="win32").connect(
|
535
|
-
class_name="TMsgBox", found_index=0
|
536
|
-
)
|
537
|
-
main_window = app["TMsgBox"]
|
538
|
-
main_window.child_window(class_name="TBitBtn", found_index=0).click_input()
|
539
|
-
time.sleep(5)
|
540
|
-
break
|
541
|
-
except ElementNotFoundError:
|
542
|
-
console.print("[yellow]Janela TMsgBox ainda não visível.[/yellow]")
|
543
|
-
|
544
|
-
except Exception as e:
|
545
|
-
print(f"Erro inesperado ao verificar janela de confirmação: {e}")
|
546
|
-
break
|
547
|
-
|
548
|
-
await worker_sleep(1)
|
549
|
-
|
550
506
|
try:
|
551
507
|
app = Application(backend="win32").connect(
|
552
508
|
class_name="TMsgBox", found_index=0
|
@@ -560,7 +516,28 @@ async def integracao_contabil_generica(
|
|
560
516
|
except ElementNotFoundError:
|
561
517
|
console.print("[yellow]Janela TMsgBox ainda não visível.[/yellow]")
|
562
518
|
|
563
|
-
|
519
|
+
if lotesMarcados:
|
520
|
+
if (
|
521
|
+
checkbox.exists()
|
522
|
+
and checkbox.is_enabled()
|
523
|
+
and checkbox.is_visible()
|
524
|
+
):
|
525
|
+
checkbox.click_input()
|
526
|
+
print("Checkbox 'Lotes Consistentes' desmarcado com sucesso.")
|
527
|
+
time.sleep(5)
|
528
|
+
return RpaRetornoProcessoDTO(
|
529
|
+
sucesso=False,
|
530
|
+
retorno=f"Integração realizada, porém, existem LOTES INCONSISTENTES.",
|
531
|
+
status=RpaHistoricoStatusEnum.Falha,
|
532
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Negocio)],
|
533
|
+
)
|
534
|
+
else:
|
535
|
+
return RpaRetornoProcessoDTO(
|
536
|
+
sucesso=True,
|
537
|
+
retorno=f"Sucesso ao executar processo de integracao contabil",
|
538
|
+
status=RpaHistoricoStatusEnum.Sucesso,
|
539
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
|
540
|
+
)
|
564
541
|
except Exception as erro:
|
565
542
|
return RpaRetornoProcessoDTO(
|
566
543
|
sucesso=False,
|
@@ -576,4 +553,3 @@ async def integracao_contabil_generica(
|
|
576
553
|
status=RpaHistoricoStatusEnum.Falha,
|
577
554
|
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
|
578
555
|
)
|
579
|
-
|
@@ -108,11 +108,11 @@ async def sped_fiscal(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
|
|
108
108
|
message="32-bit application should be automated using 32-bit Python",
|
109
109
|
)
|
110
110
|
|
111
|
-
await worker_sleep(
|
111
|
+
await worker_sleep(8)
|
112
112
|
|
113
113
|
try:
|
114
114
|
app = Application(backend="win32").connect(
|
115
|
-
class_name="TFrmLoginModulo", timeout=
|
115
|
+
class_name="TFrmLoginModulo", timeout=120
|
116
116
|
)
|
117
117
|
except:
|
118
118
|
return RpaRetornoProcessoDTO(
|
@@ -131,12 +131,12 @@ async def sped_fiscal(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
|
|
131
131
|
await worker_sleep(10)
|
132
132
|
console.print(f"Verificando a presença de Confirm...")
|
133
133
|
confirm_pop_up = await is_window_open("Confirm")
|
134
|
-
if confirm_pop_up["IsOpened"] == True:
|
134
|
+
if confirm_pop_up["IsOpened"] == True:
|
135
135
|
app = Application().connect(class_name="TMessageForm")
|
136
136
|
main_window = app["TMessageForm"]
|
137
137
|
main_window.set_focus()
|
138
138
|
main_window.child_window(title="&No").click()
|
139
|
-
pyautogui.click(120,173)
|
139
|
+
pyautogui.click(120, 173)
|
140
140
|
pyautogui.press("enter")
|
141
141
|
await worker_sleep(2)
|
142
142
|
pyautogui.press("enter")
|
@@ -298,7 +298,7 @@ async def sped_fiscal(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
|
|
298
298
|
)
|
299
299
|
periodo_btn_buscar.click()
|
300
300
|
await worker_sleep(2)
|
301
|
-
#As vezes o click de cima não funciona
|
301
|
+
# As vezes o click de cima não funciona
|
302
302
|
pyautogui.click(915, 664)
|
303
303
|
await worker_sleep(2)
|
304
304
|
periodo_btn_buscar = main_window.child_window(
|
@@ -307,7 +307,7 @@ async def sped_fiscal(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
|
|
307
307
|
rect = periodo_btn_buscar.rectangle()
|
308
308
|
center_x = (rect.left + rect.right) // 2
|
309
309
|
center_y = (rect.top + rect.bottom) // 2
|
310
|
-
double_click(coords=(center_x, center_y))
|
310
|
+
double_click(coords=(center_x, center_y))
|
311
311
|
elif gerar_inventario:
|
312
312
|
mes_atual = datetime.now().month
|
313
313
|
if mes_atual == 1:
|
@@ -336,7 +336,7 @@ async def sped_fiscal(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
|
|
336
336
|
)
|
337
337
|
periodo_btn_buscar.click()
|
338
338
|
await worker_sleep(2)
|
339
|
-
#As vezes o click de cima não funciona
|
339
|
+
# As vezes o click de cima não funciona
|
340
340
|
pyautogui.click(915, 664)
|
341
341
|
await worker_sleep(2)
|
342
342
|
try:
|
@@ -707,4 +707,4 @@ async def sped_fiscal(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
|
|
707
707
|
retorno=observacao,
|
708
708
|
status=RpaHistoricoStatusEnum.Falha,
|
709
709
|
tags=[RpaTagDTO(descricao=RpaTagEnum.Negocio)],
|
710
|
-
)
|
710
|
+
)
|
@@ -36,7 +36,7 @@ worker_automate_hub/models/dto/rpa_sap_dto.py,sha256=eovdvKCtVIhRct3PL98KjsdlngL
|
|
36
36
|
worker_automate_hub/models/dto/rpa_sistema_dto.py,sha256=sLkmJei8x6sl-1-IXUKDmYQuKx0sotYQREPyhQqPmRg,161
|
37
37
|
worker_automate_hub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
38
|
worker_automate_hub/tasks/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
-
worker_automate_hub/tasks/jobs/abertura_livros_fiscais.py,sha256=
|
39
|
+
worker_automate_hub/tasks/jobs/abertura_livros_fiscais.py,sha256=Xn6RfouH3H2yhhxynp80MClcfVGV9c0CwmbOErPo5w4,25857
|
40
40
|
worker_automate_hub/tasks/jobs/coleta_dje_process.py,sha256=UkLWTC5Ub2qBb0yY-8IZ0DLLOVJOfNTq_z9krx_t25Q,29476
|
41
41
|
worker_automate_hub/tasks/jobs/conexao_rdp.py,sha256=S6QC4xhuo0pB5FjaUJZNMm1LIgEjpjifReCTBDqxH-U,11719
|
42
42
|
worker_automate_hub/tasks/jobs/cte_manual.py,sha256=JucHpRMjMiy-QEJ0wtFnytLpN53tKXgCDI05nGLGclU,603
|
@@ -82,7 +82,7 @@ worker_automate_hub/tasks/jobs/fidc_retorno_cobranca.py,sha256=mmBW7KetUeRjiZkjn
|
|
82
82
|
worker_automate_hub/tasks/jobs/geracao_aprovacao_pedidos.py,sha256=QzK2aG5d9pmFbb8cTaNm3LWf5NMkmCvBkgo70gcLu0c,14781
|
83
83
|
worker_automate_hub/tasks/jobs/geracao_aprovacao_pedidos_novo.py,sha256=4Rtm2uCfA6tZ-KW6aunKug7reTqbBX69CCBZCBnwbYc,21856
|
84
84
|
worker_automate_hub/tasks/jobs/integracao_contabil.py,sha256=psoIU0tjtTJq2W8aGXjXrfkAOYlIpUtHZyNolI7dp-0,16263
|
85
|
-
worker_automate_hub/tasks/jobs/integracao_contabil_generica.py,sha256=
|
85
|
+
worker_automate_hub/tasks/jobs/integracao_contabil_generica.py,sha256=cA41rQlqTkNo9XD1QM0xtSDhJQoWJenvNuA_WePW4OM,22048
|
86
86
|
worker_automate_hub/tasks/jobs/lancamento_pis_cofins.py,sha256=0mlu-oPwRd9qCocB-6tWsEI0-wd48mkBJn5juYqOAX8,40788
|
87
87
|
worker_automate_hub/tasks/jobs/lancamento_rateio.py,sha256=0cvbpuJiHl5mca5gpZudX7uQY5Rqe5xzwt6juQcMhjo,15875
|
88
88
|
worker_automate_hub/tasks/jobs/login_emsys.py,sha256=dO9S027qRTtjOfytF6IWO-m6hDld8kZqOVAsn91l1YA,5684
|
@@ -90,7 +90,7 @@ worker_automate_hub/tasks/jobs/login_emsys_versao_especifica.py,sha256=_6CFh79ea
|
|
90
90
|
worker_automate_hub/tasks/jobs/notas_faturamento_sap.py,sha256=p6tVE027FHHXBxt2sIDxqLInpf_0wS-8TcACnS34p7w,13961
|
91
91
|
worker_automate_hub/tasks/jobs/opex_capex.py,sha256=KnZymjtYtRO0EmNAk12xA9Hx9XlShxT5voFFJ6MPeZc,36879
|
92
92
|
worker_automate_hub/tasks/jobs/playground.py,sha256=7vWDg9DwToHwGJ6_XOa8TQ6LmfRV5Qz2TaOV3q3P9sA,1918
|
93
|
-
worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=
|
93
|
+
worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=rinyHCF7QYHUc6oWACJgnQiAv0S-_Fel9Z0bImiHUoM,31064
|
94
94
|
worker_automate_hub/tasks/jobs/transferencias.py,sha256=5TIktufkvUPnVTR2gf7GFQJ5KQP6PWnmoWiE08WiVDQ,46191
|
95
95
|
worker_automate_hub/tasks/task_definitions.py,sha256=AKzuSb5CiNu97-9V_Ykb2jmXXNenOLiTFeBT3Pw9chI,12815
|
96
96
|
worker_automate_hub/tasks/task_executor.py,sha256=F5ngJLGz7vbUrX-batUlt3FFwiCE8denFmtTTLaE77I,6044
|
@@ -100,10 +100,10 @@ worker_automate_hub/utils/get_creds_gworkspace.py,sha256=ZJ0IIEjM4IXIV9rwfbOZ1V1
|
|
100
100
|
worker_automate_hub/utils/logger.py,sha256=FYV9fg0_RAYJF_ZOCJEbqQAiCXlXk2gMpvUU1rzT_xs,671
|
101
101
|
worker_automate_hub/utils/toast.py,sha256=xPHc5r5uOxB_cZlCzm13Kt2qSKLLFZALncU6Qg3Ft68,1162
|
102
102
|
worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbVlwDl49Y,7972
|
103
|
-
worker_automate_hub/utils/util.py,sha256=
|
103
|
+
worker_automate_hub/utils/util.py,sha256=p15z2pqyV-fPD8lL6ulurecsWQw9XpKPFf_xEr4U5lM,210781
|
104
104
|
worker_automate_hub/utils/utils_nfe_entrada.py,sha256=F7jk95LpDwl5WfaQXahCA5yDdnySnWdctDqczHXwGqE,38195
|
105
105
|
worker_automate_hub/worker.py,sha256=zEnYUrm5kY2cHbbee15QJkwkx4euD2SB2zRvUIbjS90,6850
|
106
|
-
worker_automate_hub-0.5.
|
107
|
-
worker_automate_hub-0.5.
|
108
|
-
worker_automate_hub-0.5.
|
109
|
-
worker_automate_hub-0.5.
|
106
|
+
worker_automate_hub-0.5.815.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
|
107
|
+
worker_automate_hub-0.5.815.dist-info/METADATA,sha256=OrtUVWxNu_6_tsaoS3JTHEkxvj0nGcMKMSl9pBWuq04,3100
|
108
|
+
worker_automate_hub-0.5.815.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
109
|
+
worker_automate_hub-0.5.815.dist-info/RECORD,,
|
File without changes
|
{worker_automate_hub-0.5.813.dist-info → worker_automate_hub-0.5.815.dist-info}/entry_points.txt
RENAMED
File without changes
|