worker-automate-hub 0.5.785__py3-none-any.whl → 0.5.787__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.

Potentially problematic release.


This version of worker-automate-hub might be problematic. Click here for more details.

@@ -7,7 +7,7 @@ import uuid
7
7
  import time
8
8
  import win32clipboard
9
9
  import difflib
10
-
10
+ import pyperclip
11
11
  import pyautogui
12
12
  import pytesseract
13
13
  from datetime import datetime, timedelta
@@ -582,7 +582,7 @@ async def entrada_de_notas_9(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoD
582
582
  await worker_sleep(2)
583
583
 
584
584
  observacoes_nota = nota.get("observacoes")
585
- pattern = rf"(\b{filialEmpresaOrigem}\d+)\s*-\s*TANQUE\s+(\d+)\s*[/-]\s*(\w+\s*\w*)\s*\((.*?)\)"
585
+ pattern = rf"(\b{filialEmpresaOrigem}\d+)\s*-\s*TANQUE\s+(\d+)\s*[/-]\s*(.+?)\s*\((.*?)\)"
586
586
 
587
587
  resultados_itens_ahead = re.findall(pattern, observacoes_nota)
588
588
 
@@ -595,6 +595,7 @@ async def entrada_de_notas_9(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoD
595
595
  if len(list_distribuicao_obs) > 0:
596
596
  console.print(f'Distribuição observação a serem processados: {list_distribuicao_obs}')
597
597
  index_tanque = 0
598
+ item_executado = '0'
598
599
  list_tanques_distribuidos = []
599
600
  send_keys("{TAB 2}", pause=0.1)
600
601
 
@@ -606,6 +607,24 @@ async def entrada_de_notas_9(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoD
606
607
  await worker_sleep(1)
607
608
  send_keys("{DOWN " + str(index_tanque) + "}", pause=0.1)
608
609
  await worker_sleep(1)
610
+ #Copiar e extrai o Seq Item XML
611
+ send_keys("^c")
612
+ copiado = pyperclip.paste()
613
+ linha = copiado.splitlines()[1]
614
+ colunas = linha.split("\t")
615
+ seq_item = colunas[0]
616
+ if seq_item != item_executado:
617
+ item_executado = seq_item
618
+ else:
619
+ while seq_item == item_executado:
620
+ send_keys("{DOWN}", pause=0.1)
621
+ index_tanque += 1
622
+ send_keys("^c")
623
+ copiado = pyperclip.paste()
624
+ linha = copiado.splitlines()[1]
625
+ colunas = linha.split("\t")
626
+ seq_item = colunas[0]
627
+
609
628
  send_keys("+{F10}")
610
629
  await worker_sleep(1)
611
630
  send_keys("{DOWN 6}")
@@ -825,6 +844,7 @@ async def entrada_de_notas_9(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoD
825
844
  except:
826
845
  console.print(f"Tela de distribuir item deve ter sido encerrada")
827
846
  finally:
847
+ await worker_sleep(10)
828
848
  i = i + 1
829
849
  await worker_sleep(2)
830
850
  else:
@@ -196,6 +196,7 @@ task_definitions = {
196
196
  "30544b48-7dc4-4f3e-ac6c-16be7bca57a4": integracao_contabil_generica,
197
197
  "0436cb8c-0c58-41a1-9609-443cc37c1801": integracao_contabil_generica,
198
198
  "d34d8593-0cbf-4f8c-8647-5736e1168d89": integracao_contabil_generica,
199
+ "9010528a-ad86-4d1f-b03a-165229988bdc": integracao_contabil_generica,
199
200
  "c8527e90-c65b-4d68-b4cf-25008b678957": geracao_aprovacao_pedidos_34,
200
201
  "260380b7-a3e5-4c23-ab69-b428ee552830": geracao_aprovacao_pedidos_171,
201
202
  "c10bbf8c-3949-4a0e-9e10-3d85d367263d": abertura_livros_fiscais,
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: worker-automate-hub
3
- Version: 0.5.785
3
+ Version: 0.5.787
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
@@ -10,6 +10,7 @@ Classifier: Natural Language :: Portuguese (Brazilian)
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Programming Language :: Python :: 3.14
13
14
  Classifier: Topic :: Utilities
14
15
  Requires-Dist: aiohttp (>=3.9.5,<4.0.0)
15
16
  Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
@@ -66,7 +66,7 @@ worker_automate_hub/tasks/jobs/entrada_de_notas_500.py,sha256=WBsCRbH7ANiCjEn0aE
66
66
  worker_automate_hub/tasks/jobs/entrada_de_notas_503.py,sha256=bcNKy6X1aaVe6lxW-TMyUKJ_GXzHEK-8V6x9SOzOshw,48365
67
67
  worker_automate_hub/tasks/jobs/entrada_de_notas_505.py,sha256=xXeNipdXTSll8yAtAmN7v0sjN3oMlWU4THu30mKDddc,30339
68
68
  worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py,sha256=7POfKc7nisc8-ysgqazrK8kT7kmFIq8irGwCMixPAE0,37948
69
- worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=9pkGxEyzsrW51z2ySOT9vXDev1nyd-fA1tgpSlGqOSg,66524
69
+ worker_automate_hub/tasks/jobs/entrada_de_notas_9.py,sha256=PrDoHwiwGb3JPSnpM54TjUuXz_-Ymusk5A_zS-ynQ6I,67509
70
70
  worker_automate_hub/tasks/jobs/entrada_de_notas_9000.py,sha256=0mOmS28tQKF5m7vMzInblDuWH48_qIgrohOU5UwYZ10,65498
71
71
  worker_automate_hub/tasks/jobs/exemplo_processo.py,sha256=nV0iLoip2FH2-FhLmhX3nPqsfl_MPufZ3E5Q5krJvdc,3544
72
72
  worker_automate_hub/tasks/jobs/extracao_fechamento_contabil.py,sha256=6Kr5DKjKLqtFvGzyiXtt7xrQsuU898l8pQXDq9C6AX8,19567
@@ -91,7 +91,7 @@ worker_automate_hub/tasks/jobs/opex_capex.py,sha256=mZvPrjlD-bcHP6zwrSUaNf7-bHYD
91
91
  worker_automate_hub/tasks/jobs/playground.py,sha256=7vWDg9DwToHwGJ6_XOa8TQ6LmfRV5Qz2TaOV3q3P9sA,1918
92
92
  worker_automate_hub/tasks/jobs/sped_fiscal.py,sha256=Zsq-IwKxA0b2tikO6Rri4WXVj10jK-Jd0-gxk8yVBH0,31064
93
93
  worker_automate_hub/tasks/jobs/transferencias.py,sha256=5TIktufkvUPnVTR2gf7GFQJ5KQP6PWnmoWiE08WiVDQ,46191
94
- worker_automate_hub/tasks/task_definitions.py,sha256=qg8uCZCos0xikKAAu-7mLPEPx4C9DViOVvR10f5pUNo,12579
94
+ worker_automate_hub/tasks/task_definitions.py,sha256=cTvHi6A4ZWhUvGk_A_TqW3AHHSr4risha9IREL4RcnE,12654
95
95
  worker_automate_hub/tasks/task_executor.py,sha256=9dmLUlMpJOI7FhbaFE593TcWnDxBvuXbGVecs1aaJxE,5728
96
96
  worker_automate_hub/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
97
  worker_automate_hub/utils/env.py,sha256=TacQjGRO7PUNpttrhTAc5Gnegaiysl2Knsv1P8qfkfs,57
@@ -102,7 +102,7 @@ worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbV
102
102
  worker_automate_hub/utils/util.py,sha256=t_RvTtBdIx6SVR4ulX2eNf5Lvz9WSWukVeqQsC7DmnM,210067
103
103
  worker_automate_hub/utils/utils_nfe_entrada.py,sha256=F7jk95LpDwl5WfaQXahCA5yDdnySnWdctDqczHXwGqE,38195
104
104
  worker_automate_hub/worker.py,sha256=uhZ3f-iaQ1i8cANbljp50vkYl-Xm0_sHtjwwF_2y72o,7191
105
- worker_automate_hub-0.5.785.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
106
- worker_automate_hub-0.5.785.dist-info/METADATA,sha256=6Lc6Hi9KWiFIQ_v-q8JrNWYn_oIOBCAIrNiY3iQorY0,3049
107
- worker_automate_hub-0.5.785.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
108
- worker_automate_hub-0.5.785.dist-info/RECORD,,
105
+ worker_automate_hub-0.5.787.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
106
+ worker_automate_hub-0.5.787.dist-info/METADATA,sha256=5KL3M-_FDtn6o8-6ZTCC7ANWdR0gjIvVfRaa8IUaIuA,3100
107
+ worker_automate_hub-0.5.787.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
108
+ worker_automate_hub-0.5.787.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: poetry-core 2.2.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any