worker-automate-hub 0.5.820__py3-none-any.whl → 0.5.912__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 +121 -10
- worker_automate_hub/api/rpa_historico_service.py +1 -0
- worker_automate_hub/tasks/jobs/abertura_livros_fiscais.py +11 -14
- worker_automate_hub/tasks/jobs/descartes.py +8 -8
- worker_automate_hub/tasks/jobs/devolucao_produtos.py +1386 -0
- worker_automate_hub/tasks/jobs/extracao_dados_nielsen.py +504 -0
- worker_automate_hub/tasks/jobs/extracao_saldo_estoque_fiscal.py +90 -11
- worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py +2 -2
- worker_automate_hub/tasks/jobs/fidc_remessa_cobranca_cnab240.py +24 -15
- worker_automate_hub/tasks/jobs/importacao_extratos.py +538 -0
- worker_automate_hub/tasks/jobs/importacao_extratos_748.py +800 -0
- worker_automate_hub/tasks/jobs/inclusao_pedidos_ipiranga.py +222 -0
- worker_automate_hub/tasks/jobs/inclusao_pedidos_raizen.py +174 -0
- worker_automate_hub/tasks/jobs/inclusao_pedidos_vibra.py +327 -0
- worker_automate_hub/tasks/jobs/notas_faturamento_sap.py +438 -157
- worker_automate_hub/tasks/jobs/opex_capex.py +523 -384
- worker_automate_hub/tasks/task_definitions.py +30 -2
- worker_automate_hub/utils/util.py +20 -10
- {worker_automate_hub-0.5.820.dist-info → worker_automate_hub-0.5.912.dist-info}/METADATA +2 -1
- {worker_automate_hub-0.5.820.dist-info → worker_automate_hub-0.5.912.dist-info}/RECORD +22 -15
- {worker_automate_hub-0.5.820.dist-info → worker_automate_hub-0.5.912.dist-info}/WHEEL +0 -0
- {worker_automate_hub-0.5.820.dist-info → worker_automate_hub-0.5.912.dist-info}/entry_points.txt +0 -0
|
@@ -17,6 +17,9 @@ from worker_automate_hub.tasks.jobs.geracao_aprovacao_pedidos import (
|
|
|
17
17
|
geracao_aprovacao_pedidos_171,
|
|
18
18
|
geracao_aprovacao_pedidos_34,
|
|
19
19
|
)
|
|
20
|
+
from worker_automate_hub.tasks.jobs.inclusao_pedidos_raizen import inclusao_pedidos_raizen
|
|
21
|
+
from worker_automate_hub.tasks.jobs.inclusao_pedidos_vibra import inclusao_pedidos_vibra
|
|
22
|
+
from worker_automate_hub.tasks.jobs.inclusao_pedidos_ipiranga import inclusao_pedidos_ipiranga
|
|
20
23
|
from worker_automate_hub.tasks.jobs.notas_faturamento_sap import notas_faturamento_sap
|
|
21
24
|
from worker_automate_hub.tasks.jobs.descartes import descartes
|
|
22
25
|
from worker_automate_hub.tasks.jobs.ecac_estadual_main import (
|
|
@@ -33,7 +36,9 @@ from worker_automate_hub.tasks.jobs.entrada_de_notas_36 import entrada_de_notas_
|
|
|
33
36
|
from worker_automate_hub.tasks.jobs.entrada_de_notas_37 import entrada_de_notas_37
|
|
34
37
|
from worker_automate_hub.tasks.jobs.entrada_de_notas_503 import entrada_de_notas_503
|
|
35
38
|
from worker_automate_hub.tasks.jobs.extracao_saldo_estoque import extracao_saldo_estoque
|
|
36
|
-
from worker_automate_hub.tasks.jobs.extracao_saldo_estoque_fiscal import
|
|
39
|
+
from worker_automate_hub.tasks.jobs.extracao_saldo_estoque_fiscal import (
|
|
40
|
+
extracao_saldo_estoque_fiscal,
|
|
41
|
+
)
|
|
37
42
|
from worker_automate_hub.tasks.jobs.fidc_remessa_cobranca_cnab240 import (
|
|
38
43
|
remessa_cobranca_cnab240,
|
|
39
44
|
)
|
|
@@ -109,6 +114,21 @@ from worker_automate_hub.tasks.jobs.geracao_balancetes_filial import (
|
|
|
109
114
|
geracao_balancetes_filial,
|
|
110
115
|
)
|
|
111
116
|
|
|
117
|
+
from worker_automate_hub.tasks.jobs.devolucao_produtos import (
|
|
118
|
+
devolucao_produtos,
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
from worker_automate_hub.tasks.jobs.importacao_extratos import (
|
|
122
|
+
importacao_extratos,
|
|
123
|
+
)
|
|
124
|
+
|
|
125
|
+
from worker_automate_hub.tasks.jobs.importacao_extratos_748 import (
|
|
126
|
+
importacao_extratos_748,
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
from worker_automate_hub.tasks.jobs.extracao_dados_nielsen import (
|
|
130
|
+
extracao_dados_nielsen,
|
|
131
|
+
)
|
|
112
132
|
|
|
113
133
|
task_definitions = {
|
|
114
134
|
"5b295021-8df7-40a1-a45e-fe7109ae3902": exemplo_processo,
|
|
@@ -216,7 +236,15 @@ task_definitions = {
|
|
|
216
236
|
"9cbc6016-7c0e-4a3a-8ee9-fb9dc4b35e33": extracao_saldo_estoque_fiscal,
|
|
217
237
|
"07072711-c9d0-49e4-b180-530cecbe0728": opex_capex,
|
|
218
238
|
"98bc6679-2e6b-4757-9fdc-b27eebd98f54": entrada_de_notas_22,
|
|
219
|
-
"
|
|
239
|
+
"2ebcc2e5-2fa1-4130-a92a-3af349a1920c": devolucao_produtos,
|
|
240
|
+
"d7794924-0330-453c-b79b-74f3c8991562": geracao_balancetes_filial,
|
|
241
|
+
"75ba49a7-4ffa-44bb-9b47-9bad07ae9ede": inclusao_pedidos_vibra, # Pedidos Vibra
|
|
242
|
+
"2187af6d-6b34-439b-9a62-3e10d9a24f9c": inclusao_pedidos_ipiranga, # Pedidos Ipiranga
|
|
243
|
+
"dda9dace-7ead-4e6c-a78f-4cd7a5780c8d": inclusao_pedidos_raizen, # Pedidos Raizen
|
|
244
|
+
"153a7bf9-8cab-41fd-b6d3-63d881ac1cf9": importacao_extratos,
|
|
245
|
+
"80345c74-29af-4a6a-8438-86061acf2531": importacao_extratos_748,
|
|
246
|
+
"e8ca47cf-c49b-437c-9028-50bcfa5fe021": extracao_dados_nielsen,
|
|
247
|
+
|
|
220
248
|
}
|
|
221
249
|
|
|
222
250
|
|
|
@@ -722,10 +722,23 @@ async def login_emsys_old(
|
|
|
722
722
|
)
|
|
723
723
|
|
|
724
724
|
#Login novo
|
|
725
|
-
async def login_emsys(config: dict, app, task: RpaProcessoEntradaDTO, **kwargs):
|
|
726
|
-
#
|
|
727
|
-
|
|
728
|
-
|
|
725
|
+
async def login_emsys(config: dict, app, task: RpaProcessoEntradaDTO, filial_origem=None, **kwargs):
|
|
726
|
+
# Fonte de verdade: param explícito > kwargs > task.configEntrada
|
|
727
|
+
filial_origem = (
|
|
728
|
+
filial_origem
|
|
729
|
+
or kwargs.get("filial_origem")
|
|
730
|
+
or kwargs.get("descricaoFilial")
|
|
731
|
+
or (getattr(task, "configEntrada", {}) or {}).get("descricaoFilial")
|
|
732
|
+
or (getattr(task, "configEntrada", {}) or {}).get("codigoEmpresa")
|
|
733
|
+
or (getattr(task, "configEntrada", {}) or {}).get("filialEmpresaOrigem")
|
|
734
|
+
)
|
|
735
|
+
|
|
736
|
+
# Extrai só o número (ex.: "69" de "69 - Gravataí Free Way")
|
|
737
|
+
if filial_origem:
|
|
738
|
+
m = re.search(r"\d+", str(filial_origem))
|
|
739
|
+
if m:
|
|
740
|
+
filial_origem = m.group(0)
|
|
741
|
+
|
|
729
742
|
warnings.filterwarnings(
|
|
730
743
|
"ignore",
|
|
731
744
|
category=UserWarning,
|
|
@@ -2047,7 +2060,7 @@ async def faturar_pre_venda(task: RpaProcessoEntradaDTO) -> dict:
|
|
|
2047
2060
|
logger.info(log_msg)
|
|
2048
2061
|
console.print(log_msg, style="bold yellow")
|
|
2049
2062
|
|
|
2050
|
-
await worker_sleep(
|
|
2063
|
+
await worker_sleep(13)
|
|
2051
2064
|
|
|
2052
2065
|
# Seleciona Modelo
|
|
2053
2066
|
console.log("Selecionando o modelo...\n", style="bold green")
|
|
@@ -2058,11 +2071,8 @@ async def faturar_pre_venda(task: RpaProcessoEntradaDTO) -> dict:
|
|
|
2058
2071
|
combo_box_model = main_window.child_window(
|
|
2059
2072
|
class_name="TDBIComboBox", found_index=1
|
|
2060
2073
|
)
|
|
2061
|
-
combo_box_model.
|
|
2062
|
-
|
|
2063
|
-
await worker_sleep(3)
|
|
2064
|
-
set_combobox("||List", "NFe - NOTA FISCAL ELETRONICA PROPRIA - DANFE SERIE 077")
|
|
2065
|
-
await worker_sleep(3)
|
|
2074
|
+
combo_box_model.select("NFe - NOTA FISCAL ELETRONICA PROPRIA - DANFE SERIE 077")
|
|
2075
|
+
|
|
2066
2076
|
|
|
2067
2077
|
except Exception as e:
|
|
2068
2078
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: worker-automate-hub
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.912
|
|
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
|
|
@@ -50,6 +50,7 @@ Requires-Dist: timedelta (>=2020.12.3,<2021.0.0)
|
|
|
50
50
|
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
|
51
51
|
Requires-Dist: torch (>=2.4.0,<3.0.0)
|
|
52
52
|
Requires-Dist: typer (>=0.12.3,<0.13.0)
|
|
53
|
+
Requires-Dist: unidecode (>=1.4.0,<2.0.0)
|
|
53
54
|
Requires-Dist: webdriver-manager (>=4.0.2,<5.0.0)
|
|
54
55
|
Requires-Dist: win10toast (>=0.9,<0.10)
|
|
55
56
|
Requires-Dist: xhtml2pdf (>=0.2.16,<0.3.0)
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
worker_automate_hub/__init__.py,sha256=LV28uQvBfpPIqudGIMJmVB8E941MjXHcu8DMoX5n8AM,25
|
|
2
2
|
worker_automate_hub/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
worker_automate_hub/api/ahead_service.py,sha256=QbNrZf9q7fS0s-S5fZVytqC7dINi9u2f6aB6SDrGVVA,2231
|
|
4
|
-
worker_automate_hub/api/client.py,sha256=
|
|
4
|
+
worker_automate_hub/api/client.py,sha256=qSOa_pLTPoUZKf3hTPnsdCCMvLaObtPdLA9gNUdQtK8,36481
|
|
5
5
|
worker_automate_hub/api/datalake_service.py,sha256=qw_N_OOgDKDuPbI-fdYkWWTlT4CUtFTl0VVlZ0fLM-M,3001
|
|
6
6
|
worker_automate_hub/api/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
worker_automate_hub/api/helpers/api_helpers.py,sha256=SkheO2fXexeh-a4shr8Qzsz_kZhuSG0DJ7kbODctRbM,3696
|
|
8
8
|
worker_automate_hub/api/rdp_service.py,sha256=L7orr60FkJr6zjETtA4me8tRYCW9m1g-i5pq6AILUFo,1647
|
|
9
9
|
worker_automate_hub/api/rpa_fila_service.py,sha256=Oa7w61NrCMgVxPZjNfJn4GYBl7aU2lRIoKpFmmajuvM,1955
|
|
10
|
-
worker_automate_hub/api/rpa_historico_service.py,sha256=
|
|
10
|
+
worker_automate_hub/api/rpa_historico_service.py,sha256=6vXedNPJSn82YSpShRzprKzRp-ItXsRT8REglMv9fBQ,10129
|
|
11
11
|
worker_automate_hub/api/webhook_service.py,sha256=S1a8IIS5LYY16I5E2pPPczaUnUz-_CwmD9_1QBdQD2g,1879
|
|
12
12
|
worker_automate_hub/cli.py,sha256=W_nDVre9XQ3msWncivBahAMfzpgSOdhE9MOkXT1ETQ8,6077
|
|
13
13
|
worker_automate_hub/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -36,15 +36,16 @@ 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=CUHo_flhSp3wJklrhopZvhukyYv1CiIwY6q_suE6v8w,25130
|
|
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
|
|
43
43
|
worker_automate_hub/tasks/jobs/cte_xml.py,sha256=m4BkJDgp95Vr3oqEh6wXeeb31qzZhRF2Sw0h_wsoL_k,15565
|
|
44
|
-
worker_automate_hub/tasks/jobs/descartes.py,sha256
|
|
44
|
+
worker_automate_hub/tasks/jobs/descartes.py,sha256=-w6DCCVAonccYNNPOuAQ_zd6T5wP5Fx5AQww63Hs7-0,45491
|
|
45
45
|
worker_automate_hub/tasks/jobs/devolucao_ctf.py,sha256=7tdUihaDqjIf7POjM79EqKG0w-qqXbhC6jq6hteavkw,250822
|
|
46
46
|
worker_automate_hub/tasks/jobs/devolucao_ctf_35.py,sha256=e9t5k2mtZcUcEGKPWysbWzsH_gqrK-6aBXjWe2jWfTg,253948
|
|
47
47
|
worker_automate_hub/tasks/jobs/devolucao_prazo_a_faturar.py,sha256=kzPJazDRbz2CLn8tKja2Lg1N4UzTRF1V4Nc1elIqTGY,272145
|
|
48
|
+
worker_automate_hub/tasks/jobs/devolucao_produtos.py,sha256=7YtcjVI24Ws6EDH9PQr6zlOMzqOQSFIctWCwrTldm6k,53844
|
|
48
49
|
worker_automate_hub/tasks/jobs/ecac_estadual_go.py,sha256=dKkf22nH5gp3RErq5u0UzRsKyJ81fc6ZZ4vLtUuMwHA,21002
|
|
49
50
|
worker_automate_hub/tasks/jobs/ecac_estadual_main.py,sha256=8WmKe4-MRtzHobXz2S4YBDNN8alfawkC-BBlRY-mn1g,1726
|
|
50
51
|
worker_automate_hub/tasks/jobs/ecac_estadual_mt.py,sha256=C26zmpGQGUq6sP9lU9nanM3Fje-rkyx5tjwmRy4lyL8,25300
|
|
@@ -70,30 +71,36 @@ worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=7POfKc7nisc8-ysgq
|
|
|
70
71
|
worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=Lcx4HCnDL0vV5XIWnvXm7k6eKeBBuXL3IqNw9u0JzoQ,67683
|
|
71
72
|
worker_automate_hub/tasks/jobs/entrada_de_notas_9000.py,sha256=0mOmS28tQKF5m7vMzInblDuWH48_qIgrohOU5UwYZ10,65498
|
|
72
73
|
worker_automate_hub/tasks/jobs/exemplo_processo.py,sha256=nV0iLoip2FH2-FhLmhX3nPqsfl_MPufZ3E5Q5krJvdc,3544
|
|
74
|
+
worker_automate_hub/tasks/jobs/extracao_dados_nielsen.py,sha256=wC8liWtrJjfBu7jNCNTXg_Qtnc1GPhQPZ3B8vvMzM1o,18945
|
|
73
75
|
worker_automate_hub/tasks/jobs/extracao_fechamento_contabil.py,sha256=6Kr5DKjKLqtFvGzyiXtt7xrQsuU898l8pQXDq9C6AX8,19567
|
|
74
76
|
worker_automate_hub/tasks/jobs/extracao_fechamento_emsys.py,sha256=-T2nZUDiFrUGm_KLxJd_4qcrageDxVpWW3KAAniLFC4,21448
|
|
75
77
|
worker_automate_hub/tasks/jobs/extracao_saldo_estoque.py,sha256=Pviu3Tt5VTx6LzM1Xl8YOXOMwPH2uIbsRlch7aZVN8g,15747
|
|
76
|
-
worker_automate_hub/tasks/jobs/extracao_saldo_estoque_fiscal.py,sha256=
|
|
78
|
+
worker_automate_hub/tasks/jobs/extracao_saldo_estoque_fiscal.py,sha256=_mAey2urQo7BlXxKnDrw7uXkURV55lMdcxWEfvy2vC4,26858
|
|
77
79
|
worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py,sha256=UWAKCS2dbfgDlSQOBdjmVJXfD1MMuUrOi3weDgB0CAc,5718
|
|
78
80
|
worker_automate_hub/tasks/jobs/fidc_exportacao_docs_portal_b2b.py,sha256=tWUmYy3Zhi3JEt8AoqTsWpU-wbf5-OxhCrTOooh1WH4,15616
|
|
79
|
-
worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py,sha256=
|
|
80
|
-
worker_automate_hub/tasks/jobs/fidc_remessa_cobranca_cnab240.py,sha256=
|
|
81
|
+
worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py,sha256=Yms8eOEAygy6oOhKSwZpgN3jcpdjecBR8B-bd8vDYB8,12664
|
|
82
|
+
worker_automate_hub/tasks/jobs/fidc_remessa_cobranca_cnab240.py,sha256=yTlFHuyw0yR-4cZm8XCRRV5K9zESUiK4n_w9l9Vddfg,16348
|
|
81
83
|
worker_automate_hub/tasks/jobs/fidc_retorno_cobranca.py,sha256=mmBW7KetUeRjiZkjnrxMKGX32io3YLZ8KGaY5_o7new,11891
|
|
82
84
|
worker_automate_hub/tasks/jobs/geracao_aprovacao_pedidos.py,sha256=QzK2aG5d9pmFbb8cTaNm3LWf5NMkmCvBkgo70gcLu0c,14781
|
|
83
85
|
worker_automate_hub/tasks/jobs/geracao_aprovacao_pedidos_novo.py,sha256=4Rtm2uCfA6tZ-KW6aunKug7reTqbBX69CCBZCBnwbYc,21856
|
|
84
86
|
worker_automate_hub/tasks/jobs/geracao_balancetes_filial.py,sha256=UfYFkoVLEjpe6TOds__-izgi3TEnK6zwJCBmhrfqNGA,12567
|
|
87
|
+
worker_automate_hub/tasks/jobs/importacao_extratos.py,sha256=dY3UCSDhEnzT-L4y4KymtQt6JWr6V1qqYoKoZP9ngXw,21307
|
|
88
|
+
worker_automate_hub/tasks/jobs/importacao_extratos_748.py,sha256=SAITOlKXxmT9KLdT5F-7pme5k1kHTf1ZPK1vDW0b5BQ,33059
|
|
89
|
+
worker_automate_hub/tasks/jobs/inclusao_pedidos_ipiranga.py,sha256=jbEDPt0LHNYkY-3lBqLRdHQa4he28AM8ZZN7IGpHhro,10284
|
|
90
|
+
worker_automate_hub/tasks/jobs/inclusao_pedidos_raizen.py,sha256=jRt2QdEIRpM7DEm4i7Z2RnlfBuJEGYRU8r7CFl2tttc,8621
|
|
91
|
+
worker_automate_hub/tasks/jobs/inclusao_pedidos_vibra.py,sha256=fAFq6cj2K2IAiw2DhQ5IY0WtvGCRv3XrU-73HXQlUIM,18807
|
|
85
92
|
worker_automate_hub/tasks/jobs/integracao_contabil.py,sha256=psoIU0tjtTJq2W8aGXjXrfkAOYlIpUtHZyNolI7dp-0,16263
|
|
86
93
|
worker_automate_hub/tasks/jobs/integracao_contabil_generica.py,sha256=cA41rQlqTkNo9XD1QM0xtSDhJQoWJenvNuA_WePW4OM,22048
|
|
87
94
|
worker_automate_hub/tasks/jobs/lancamento_pis_cofins.py,sha256=0mlu-oPwRd9qCocB-6tWsEI0-wd48mkBJn5juYqOAX8,40788
|
|
88
95
|
worker_automate_hub/tasks/jobs/lancamento_rateio.py,sha256=0cvbpuJiHl5mca5gpZudX7uQY5Rqe5xzwt6juQcMhjo,15875
|
|
89
96
|
worker_automate_hub/tasks/jobs/login_emsys.py,sha256=dO9S027qRTtjOfytF6IWO-m6hDld8kZqOVAsn91l1YA,5684
|
|
90
97
|
worker_automate_hub/tasks/jobs/login_emsys_versao_especifica.py,sha256=_6CFh79eaW9KdPGR6FMV01ASPjJzNzzBK1MvC_uiSOo,5625
|
|
91
|
-
worker_automate_hub/tasks/jobs/notas_faturamento_sap.py,sha256=
|
|
92
|
-
worker_automate_hub/tasks/jobs/opex_capex.py,sha256=
|
|
98
|
+
worker_automate_hub/tasks/jobs/notas_faturamento_sap.py,sha256=tmneJrvOZ48RoYk1y02O4DDMnVMrWMR65f1brTOSimg,24891
|
|
99
|
+
worker_automate_hub/tasks/jobs/opex_capex.py,sha256=_nkWWsWAtKvpbjBOV6qW2CojvObMfg0L90iAyoHfbTI,53833
|
|
93
100
|
worker_automate_hub/tasks/jobs/playground.py,sha256=7vWDg9DwToHwGJ6_XOa8TQ6LmfRV5Qz2TaOV3q3P9sA,1918
|
|
94
101
|
worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=rinyHCF7QYHUc6oWACJgnQiAv0S-_Fel9Z0bImiHUoM,31064
|
|
95
102
|
worker_automate_hub/tasks/jobs/transferencias.py,sha256=5TIktufkvUPnVTR2gf7GFQJ5KQP6PWnmoWiE08WiVDQ,46191
|
|
96
|
-
worker_automate_hub/tasks/task_definitions.py,sha256=
|
|
103
|
+
worker_automate_hub/tasks/task_definitions.py,sha256=FBtfucINNdx8Ci34eCovQwaciZ1mTXE8Mv3EuvTYwhE,14221
|
|
97
104
|
worker_automate_hub/tasks/task_executor.py,sha256=F5ngJLGz7vbUrX-batUlt3FFwiCE8denFmtTTLaE77I,6044
|
|
98
105
|
worker_automate_hub/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
106
|
worker_automate_hub/utils/env.py,sha256=TacQjGRO7PUNpttrhTAc5Gnegaiysl2Knsv1P8qfkfs,57
|
|
@@ -101,10 +108,10 @@ worker_automate_hub/utils/get_creds_gworkspace.py,sha256=ZJ0IIEjM4IXIV9rwfbOZ1V1
|
|
|
101
108
|
worker_automate_hub/utils/logger.py,sha256=FYV9fg0_RAYJF_ZOCJEbqQAiCXlXk2gMpvUU1rzT_xs,671
|
|
102
109
|
worker_automate_hub/utils/toast.py,sha256=xPHc5r5uOxB_cZlCzm13Kt2qSKLLFZALncU6Qg3Ft68,1162
|
|
103
110
|
worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbVlwDl49Y,7972
|
|
104
|
-
worker_automate_hub/utils/util.py,sha256=
|
|
111
|
+
worker_automate_hub/utils/util.py,sha256=UYouzYL_2dP8QXmXh5H6gNlcjQ3HgfvK5rMTWz_6iJU,211187
|
|
105
112
|
worker_automate_hub/utils/utils_nfe_entrada.py,sha256=F7jk95LpDwl5WfaQXahCA5yDdnySnWdctDqczHXwGqE,38195
|
|
106
113
|
worker_automate_hub/worker.py,sha256=zEnYUrm5kY2cHbbee15QJkwkx4euD2SB2zRvUIbjS90,6850
|
|
107
|
-
worker_automate_hub-0.5.
|
|
108
|
-
worker_automate_hub-0.5.
|
|
109
|
-
worker_automate_hub-0.5.
|
|
110
|
-
worker_automate_hub-0.5.
|
|
114
|
+
worker_automate_hub-0.5.912.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
|
|
115
|
+
worker_automate_hub-0.5.912.dist-info/METADATA,sha256=KjkLu2YyGBa8DSuW_EYEeIMtpBjJvFfrT4Wq7g7VUlQ,3142
|
|
116
|
+
worker_automate_hub-0.5.912.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
117
|
+
worker_automate_hub-0.5.912.dist-info/RECORD,,
|
|
File without changes
|
{worker_automate_hub-0.5.820.dist-info → worker_automate_hub-0.5.912.dist-info}/entry_points.txt
RENAMED
|
File without changes
|