worker-automate-hub 0.5.780__py3-none-any.whl → 0.5.786__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:
@@ -87,7 +87,7 @@ async def get_ultimo_item():
87
87
 
88
88
  async def opex_capex(task: RpaProcessoEntradaDTO) -> RpaRetornoProcessoDTO:
89
89
  """
90
- Processo que realiza entrada de notas no ERP EMSys(Linx).
90
+ Processo que realiza entrada de notas no ERP EMSys(Linx ).
91
91
 
92
92
  """
93
93
  try:
@@ -99,6 +99,9 @@ from worker_automate_hub.tasks.jobs.extracao_fechamento_contabil import (
99
99
  from worker_automate_hub.tasks.jobs.extracao_fechamento_emsys import (
100
100
  extracao_fechamento_emsys,
101
101
  )
102
+ from worker_automate_hub.tasks.jobs.opex_capex import (
103
+ opex_capex,
104
+ )
102
105
 
103
106
 
104
107
  task_definitions = {
@@ -117,6 +120,7 @@ task_definitions = {
117
120
  "9e5a1c05-9336-4b2d-814e-4d0e9f0057e1": entrada_de_notas_33,
118
121
  "08a112db-7683-417b-9a87-14ad0e1548da": entrada_de_notas_34,
119
122
  "1e354c95-f4e4-4e12-aaf6-4ef836cc741b": entrada_de_notas_36,
123
+ "33d9edeb-7cb2-449b-9096-ed9cf3d3f6c3": entrada_de_notas_37,
120
124
  "bf763394-918b-47be-bb36-7cddc81a8174": entrada_de_notas_39,
121
125
  "dafc0407-da8f-43a1-b97a-d27f966e122a": entrada_de_notas_207,
122
126
  "e1051c43-3495-4ca7-91d5-527fea2b5f79": entrada_de_notas_500,
@@ -203,7 +207,7 @@ task_definitions = {
203
207
  "8c28726d-458d-4119-afa0-202695b79a8f": extracao_fechamento_emsys,
204
208
  "16debe45-3520-4f63-acfe-ef0e8784fcab": extracao_saldo_estoque,
205
209
  "9cbc6016-7c0e-4a3a-8ee9-fb9dc4b35e33": extracao_saldo_estoque_fiscal,
206
- "33d9edeb-7cb2-449b-9096-ed9cf3d3f6c3": entrada_de_notas_37,
210
+ "07072711-c9d0-49e4-b180-530cecbe0728": opex_capex
207
211
  }
208
212
 
209
213
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: worker-automate-hub
3
- Version: 0.5.780
3
+ Version: 0.5.786
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
@@ -87,11 +87,11 @@ worker_automate_hub/tasks/jobs/lancamento_rateio.py,sha256=0cvbpuJiHl5mca5gpZudX
87
87
  worker_automate_hub/tasks/jobs/login_emsys.py,sha256=dO9S027qRTtjOfytF6IWO-m6hDld8kZqOVAsn91l1YA,5684
88
88
  worker_automate_hub/tasks/jobs/login_emsys_versao_especifica.py,sha256=_6CFh79eaW9KdPGR6FMV01ASPjJzNzzBK1MvC_uiSOo,5625
89
89
  worker_automate_hub/tasks/jobs/notas_faturamento_sap.py,sha256=p6tVE027FHHXBxt2sIDxqLInpf_0wS-8TcACnS34p7w,13961
90
- worker_automate_hub/tasks/jobs/opex_capex.py,sha256=8iOhWY0BUXugitJa-a0jtsPh656LFuptwfiZV9yU8G0,33246
90
+ worker_automate_hub/tasks/jobs/opex_capex.py,sha256=mZvPrjlD-bcHP6zwrSUaNf7-bHYDwel_Q5lREzG0H0w,33247
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=HwwHZG6CbnVnltT_THEwsWQv466STtLnIbMrMg3pDDg,12446
94
+ worker_automate_hub/tasks/task_definitions.py,sha256=qg8uCZCos0xikKAAu-7mLPEPx4C9DViOVvR10f5pUNo,12579
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.780.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
106
- worker_automate_hub-0.5.780.dist-info/METADATA,sha256=1lGGscIjx2CEsiqdfZ5VegIvDLpIZjZ6GzKkdoKsvVE,3049
107
- worker_automate_hub-0.5.780.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
108
- worker_automate_hub-0.5.780.dist-info/RECORD,,
105
+ worker_automate_hub-0.5.786.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
106
+ worker_automate_hub-0.5.786.dist-info/METADATA,sha256=EY2NomT0XKE5aDE9I1lG1W5JsFH_V1ISHUrTEH2uniA,3100
107
+ worker_automate_hub-0.5.786.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
108
+ worker_automate_hub-0.5.786.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