worker-automate-hub 0.5.16__py3-none-any.whl → 0.5.18__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of worker-automate-hub might be problematic. Click here for more details.
- worker_automate_hub/tasks/jobs/coleta_dje_process.py +12 -0
- worker_automate_hub/tasks/jobs/conexao_rdp.py +4 -4
- worker_automate_hub/tasks/jobs/descartes.py +21 -18
- worker_automate_hub/tasks/jobs/ecac_estadual_go.py +8 -6
- worker_automate_hub/tasks/jobs/ecac_estadual_main.py +4 -2
- worker_automate_hub/tasks/jobs/ecac_estadual_mt.py +8 -6
- worker_automate_hub/tasks/jobs/ecac_estadual_sc.py +5 -3
- worker_automate_hub/tasks/jobs/ecac_estadual_sp.py +9 -7
- worker_automate_hub/tasks/jobs/ecac_federal.py +11 -8
- worker_automate_hub/tasks/jobs/entrada_de_notas_15.py +14 -12
- worker_automate_hub/tasks/jobs/entrada_de_notas_16.py +19 -11
- worker_automate_hub/tasks/jobs/entrada_de_notas_207.py +23 -11
- worker_automate_hub/tasks/jobs/entrada_de_notas_32.py +63 -32
- worker_automate_hub/tasks/jobs/entrada_de_notas_33.py +56 -28
- worker_automate_hub/tasks/jobs/entrada_de_notas_34.py +54 -38
- worker_automate_hub/tasks/jobs/entrada_de_notas_36.py +35 -21
- worker_automate_hub/tasks/jobs/entrada_de_notas_39.py +53 -28
- worker_automate_hub/tasks/jobs/entrada_de_notas_500.py +40 -14
- worker_automate_hub/tasks/jobs/entrada_de_notas_505.py +28 -14
- worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py +18 -12
- worker_automate_hub/tasks/jobs/entrada_de_notas_9.py +40 -13
- worker_automate_hub/tasks/jobs/exemplo_processo.py +3 -0
- worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py +3 -3
- worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py +9 -7
- worker_automate_hub/tasks/jobs/login_emsys.py +2 -1
- worker_automate_hub/tasks/jobs/playground.py +4 -0
- worker_automate_hub/tasks/jobs/sped_fiscal.py +24 -0
- worker_automate_hub/tasks/jobs/transferencias.py +28 -26
- worker_automate_hub/tasks/task_executor.py +3 -0
- worker_automate_hub/utils/util.py +148 -141
- worker_automate_hub/utils/utils_nfe_entrada.py +10 -0
- {worker_automate_hub-0.5.16.dist-info → worker_automate_hub-0.5.18.dist-info}/METADATA +1 -1
- {worker_automate_hub-0.5.16.dist-info → worker_automate_hub-0.5.18.dist-info}/RECORD +35 -35
- {worker_automate_hub-0.5.16.dist-info → worker_automate_hub-0.5.18.dist-info}/WHEEL +0 -0
- {worker_automate_hub-0.5.16.dist-info → worker_automate_hub-0.5.18.dist-info}/entry_points.txt +0 -0
@@ -18,6 +18,8 @@ from worker_automate_hub.models.dao.rpa_configuracao import RpaConfiguracao
|
|
18
18
|
from worker_automate_hub.models.dto.rpa_historico_request_dto import (
|
19
19
|
RpaHistoricoStatusEnum,
|
20
20
|
RpaRetornoProcessoDTO,
|
21
|
+
RpaTagDTO,
|
22
|
+
RpaTagEnum,
|
21
23
|
)
|
22
24
|
from worker_automate_hub.utils.get_creds_gworkspace import GetCredsGworkspace
|
23
25
|
from worker_automate_hub.utils.logger import logger
|
@@ -68,6 +70,7 @@ class EMSys:
|
|
68
70
|
sucesso=False,
|
69
71
|
retorno="Não foi possivel acessar a aba de 'Itens da nota'",
|
70
72
|
status=RpaHistoricoStatusEnum.Falha,
|
73
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
|
71
74
|
)
|
72
75
|
else:
|
73
76
|
return True
|
@@ -255,6 +258,7 @@ class EMSys:
|
|
255
258
|
sucesso=False,
|
256
259
|
retorno=f"O valor da nota não pode ser {valor}",
|
257
260
|
status=RpaHistoricoStatusEnum.Falha,
|
261
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Negocio)]
|
258
262
|
)
|
259
263
|
|
260
264
|
emission_date = datetime.strptime(data_emissao, '%d/%m/%Y')
|
@@ -435,6 +439,7 @@ class EMSys:
|
|
435
439
|
sucesso=False,
|
436
440
|
retorno=observacao,
|
437
441
|
status=RpaHistoricoStatusEnum.Falha,
|
442
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Negocio)]
|
438
443
|
)
|
439
444
|
else:
|
440
445
|
console.print(
|
@@ -464,6 +469,7 @@ class EMSys:
|
|
464
469
|
sucesso=False,
|
465
470
|
retorno=observacao,
|
466
471
|
status=RpaHistoricoStatusEnum.Falha,
|
472
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
|
467
473
|
)
|
468
474
|
|
469
475
|
return RpaRetornoProcessoDTO(
|
@@ -548,6 +554,7 @@ class EMSys:
|
|
548
554
|
sucesso=False,
|
549
555
|
retorno=error_msg,
|
550
556
|
status=RpaHistoricoStatusEnum.Falha,
|
557
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
|
551
558
|
)
|
552
559
|
|
553
560
|
# Inicializando o serviço do Google Drive
|
@@ -577,6 +584,7 @@ class EMSys:
|
|
577
584
|
sucesso=False,
|
578
585
|
retorno=error_msg,
|
579
586
|
status=RpaHistoricoStatusEnum.Falha,
|
587
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
|
580
588
|
)
|
581
589
|
|
582
590
|
|
@@ -612,6 +620,7 @@ class EMSys:
|
|
612
620
|
sucesso=False,
|
613
621
|
retorno=error_msg,
|
614
622
|
status=RpaHistoricoStatusEnum.Falha,
|
623
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
|
615
624
|
)
|
616
625
|
|
617
626
|
async def get_xml(self, xml_file):
|
@@ -698,6 +707,7 @@ class EMSys:
|
|
698
707
|
sucesso=False,
|
699
708
|
retorno=observacao,
|
700
709
|
status=RpaHistoricoStatusEnum.Falha,
|
710
|
+
tags=[RpaTagDTO(descricao=RpaTagEnum.Negocio)]
|
701
711
|
)
|
702
712
|
except:
|
703
713
|
console.print("Falha ao alterar o NOP")
|
@@ -33,47 +33,47 @@ worker_automate_hub/models/dto/rpa_processo_rdp_dto.py,sha256=2TKA9CzFGj_9tWXfN8
|
|
33
33
|
worker_automate_hub/models/dto/rpa_sistema_dto.py,sha256=sLkmJei8x6sl-1-IXUKDmYQuKx0sotYQREPyhQqPmRg,161
|
34
34
|
worker_automate_hub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
worker_automate_hub/tasks/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
-
worker_automate_hub/tasks/jobs/coleta_dje_process.py,sha256=
|
37
|
-
worker_automate_hub/tasks/jobs/conexao_rdp.py,sha256=
|
38
|
-
worker_automate_hub/tasks/jobs/descartes.py,sha256=
|
39
|
-
worker_automate_hub/tasks/jobs/ecac_estadual_go.py,sha256=
|
40
|
-
worker_automate_hub/tasks/jobs/ecac_estadual_main.py,sha256=
|
41
|
-
worker_automate_hub/tasks/jobs/ecac_estadual_mt.py,sha256=
|
42
|
-
worker_automate_hub/tasks/jobs/ecac_estadual_sc.py,sha256=
|
43
|
-
worker_automate_hub/tasks/jobs/ecac_estadual_sp.py,sha256=
|
44
|
-
worker_automate_hub/tasks/jobs/ecac_federal.py,sha256=
|
45
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_15.py,sha256=
|
46
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_16.py,sha256=
|
47
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_207.py,sha256=
|
48
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_32.py,sha256=
|
49
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_33.py,sha256=
|
50
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_34.py,sha256=
|
51
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_36.py,sha256=
|
52
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_39.py,sha256=
|
53
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_500.py,sha256=
|
54
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_505.py,sha256=
|
55
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=
|
56
|
-
worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=
|
57
|
-
worker_automate_hub/tasks/jobs/exemplo_processo.py,sha256=
|
58
|
-
worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py,sha256=
|
59
|
-
worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py,sha256=
|
36
|
+
worker_automate_hub/tasks/jobs/coleta_dje_process.py,sha256=UkLWTC5Ub2qBb0yY-8IZ0DLLOVJOfNTq_z9krx_t25Q,29476
|
37
|
+
worker_automate_hub/tasks/jobs/conexao_rdp.py,sha256=lNjD-JxpPTXdvFEJAkajC_Ltyw81rIEJeu7FUfRf2qI,9586
|
38
|
+
worker_automate_hub/tasks/jobs/descartes.py,sha256=0bMCJ0xIcK8TLSgjF6taAbGFLMU-sGDVFIhUYSRtrbg,41092
|
39
|
+
worker_automate_hub/tasks/jobs/ecac_estadual_go.py,sha256=dKkf22nH5gp3RErq5u0UzRsKyJ81fc6ZZ4vLtUuMwHA,21002
|
40
|
+
worker_automate_hub/tasks/jobs/ecac_estadual_main.py,sha256=8WmKe4-MRtzHobXz2S4YBDNN8alfawkC-BBlRY-mn1g,1726
|
41
|
+
worker_automate_hub/tasks/jobs/ecac_estadual_mt.py,sha256=C26zmpGQGUq6sP9lU9nanM3Fje-rkyx5tjwmRy4lyL8,25300
|
42
|
+
worker_automate_hub/tasks/jobs/ecac_estadual_sc.py,sha256=fZD67poalpANlbJoMgnAvO-APp84oicvXEFnbeyulEk,13851
|
43
|
+
worker_automate_hub/tasks/jobs/ecac_estadual_sp.py,sha256=AqSsn0SlK_nok4AhMCNUlApQ-LwHYNXeUwOrMLyWmNU,29418
|
44
|
+
worker_automate_hub/tasks/jobs/ecac_federal.py,sha256=VFOrbMuMHL3ac1sJ-z-N1p1WYtP-e-JJHbvUfgmfgNw,55748
|
45
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_15.py,sha256=cmPeHxR293K1l9i2b_6BWf3hLnJQ6PQaxRc4xx7IRxs,15023
|
46
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_16.py,sha256=SYBM3UtmPYXJqDf5B3h-1wQ-xB1FbB1AlyxLk9bS2bY,20258
|
47
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_207.py,sha256=JJ1jtExQRXsI2UvxklX7jJDtzim54QyGSQ5U54E7jbg,25609
|
48
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_32.py,sha256=MZpLWZEvk1voQ-jVedmzyr-NcMDtgBxGMa0FrjK8Kzg,33989
|
49
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_33.py,sha256=30Kx_VlyXQmrjyVPdSKN_c6DZ8Ggueee9hz5GYX-1mo,32841
|
50
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_34.py,sha256=rF7zk4SVAO6Ba5EPZQ_80phNruD_b3mjxkR6VHlP2Hs,32548
|
51
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_36.py,sha256=eoWaIlg0BUWQEQY5L5qoK7Ye7zeeazjuTxUbmM-37O0,23485
|
52
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_39.py,sha256=xwGL9XISm6TA-jga3-D8pp_tla4y_vGILrXPdMSF4s0,34928
|
53
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_500.py,sha256=m8jau-sljkoezbu1KxLuaLmnF_wvjpM8yw6_yPrI5wc,33936
|
54
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_505.py,sha256=ieROuyLMQ3bUrAuriuUYcFqsEJYn08_lesEhh-o3g3U,15160
|
55
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=MEgy5XE7B9L3r7K44fGX4Eq8Xw0x9MKZM-1VRv-Nba0,15861
|
56
|
+
worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=QLwxMPVBPp6_RMIJ6os05S4edX8Uzq77yjkQyQaRvX4,52823
|
57
|
+
worker_automate_hub/tasks/jobs/exemplo_processo.py,sha256=nV0iLoip2FH2-FhLmhX3nPqsfl_MPufZ3E5Q5krJvdc,3544
|
58
|
+
worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py,sha256=8GVImU7EnncCSxbbuEC4-EBE8oGTk6CJ-HFNqJ5OiMs,5564
|
59
|
+
worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py,sha256=tUU5-xbwQtpp4HcEGYaYPW7i4y3raKC0IgjWpT0338c,10548
|
60
60
|
worker_automate_hub/tasks/jobs/fidc_remessa_cobranca_cnab240.py,sha256=QBGm6eS5JghgNWNqZlk1g2a2iV8LnBLiOTBBL3Giet0,4181
|
61
|
-
worker_automate_hub/tasks/jobs/login_emsys.py,sha256=
|
62
|
-
worker_automate_hub/tasks/jobs/playground.py,sha256=
|
63
|
-
worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=
|
64
|
-
worker_automate_hub/tasks/jobs/transferencias.py,sha256=
|
61
|
+
worker_automate_hub/tasks/jobs/login_emsys.py,sha256=scdKsseFOL-7UQ5D743VaZZzWBKaEfq0XzYNmROUOgE,5703
|
62
|
+
worker_automate_hub/tasks/jobs/playground.py,sha256=7vWDg9DwToHwGJ6_XOa8TQ6LmfRV5Qz2TaOV3q3P9sA,1918
|
63
|
+
worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=zJjyvMUTeIGrjczdIDxckx5J-FGRt5L3hg_ErqM66d4,28208
|
64
|
+
worker_automate_hub/tasks/jobs/transferencias.py,sha256=i3fCanHZ_pSwPW03THpQPqlzrDjbV4QbKkXpUqV3dxM,39272
|
65
65
|
worker_automate_hub/tasks/task_definitions.py,sha256=KG84tDaTlCpthdYmdR1193BOudELGcoglmIpQpd2PLQ,4606
|
66
|
-
worker_automate_hub/tasks/task_executor.py,sha256=
|
66
|
+
worker_automate_hub/tasks/task_executor.py,sha256=DUN2-Bi8Zxv0J_QUoV1vt7KgfbmYtixuA6i3Uzt67bA,5256
|
67
67
|
worker_automate_hub/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
68
|
worker_automate_hub/utils/env.py,sha256=TacQjGRO7PUNpttrhTAc5Gnegaiysl2Knsv1P8qfkfs,57
|
69
69
|
worker_automate_hub/utils/get_creds_gworkspace.py,sha256=ZJ0IIEjM4IXIV9rwfbOZ1V1wiaMoJAGZeSy0D37sYdU,2212
|
70
70
|
worker_automate_hub/utils/logger.py,sha256=FYV9fg0_RAYJF_ZOCJEbqQAiCXlXk2gMpvUU1rzT_xs,671
|
71
71
|
worker_automate_hub/utils/toast.py,sha256=xPHc5r5uOxB_cZlCzm13Kt2qSKLLFZALncU6Qg3Ft68,1162
|
72
72
|
worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbVlwDl49Y,7972
|
73
|
-
worker_automate_hub/utils/util.py,sha256=
|
74
|
-
worker_automate_hub/utils/utils_nfe_entrada.py,sha256=
|
73
|
+
worker_automate_hub/utils/util.py,sha256=Eyy0mLLt_xd_zVXWoHAb-GK0PU1xZdWPvh-IndajxDk,128815
|
74
|
+
worker_automate_hub/utils/utils_nfe_entrada.py,sha256=jWhLVwEovorHvQha9u6EQn5njsnz6sbMpPPreYhhIyw,29594
|
75
75
|
worker_automate_hub/worker.py,sha256=CT-poyP1ZYvubArYsnnNd9oJ53SPaDwgr6p6keS3nI4,6248
|
76
|
-
worker_automate_hub-0.5.
|
77
|
-
worker_automate_hub-0.5.
|
78
|
-
worker_automate_hub-0.5.
|
79
|
-
worker_automate_hub-0.5.
|
76
|
+
worker_automate_hub-0.5.18.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
|
77
|
+
worker_automate_hub-0.5.18.dist-info/METADATA,sha256=8rfv4XMCI7skC5bChXmJmJKdYjv_KFsIDUUU9e6fr9k,2894
|
78
|
+
worker_automate_hub-0.5.18.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
79
|
+
worker_automate_hub-0.5.18.dist-info/RECORD,,
|
File without changes
|
{worker_automate_hub-0.5.16.dist-info → worker_automate_hub-0.5.18.dist-info}/entry_points.txt
RENAMED
File without changes
|