worker-automate-hub 0.5.330__tar.gz → 0.5.331__tar.gz
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-0.5.330 → worker_automate_hub-0.5.331}/PKG-INFO +1 -1
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/pyproject.toml +1 -1
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/devolucao_prazo_a_faturar.py +115 -49
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/README.md +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/ahead_service.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/client.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/datalake_service.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/helpers/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/helpers/api_helpers.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/rdp_service.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/rpa_fila_service.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/rpa_historico_service.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/webhook_service.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/cli.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/config/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/config/settings.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/config.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/core/so_manipulation.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/deprecation.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/rate_limit.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/repeat.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/retry.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/singleton.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/timeit.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dao/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dao/rpa_configuracao.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dao/rpa_fila.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dao/rpa_historico.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dao/rpa_processo.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dao/rpa_robo.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dto/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dto/rpa_historico_request_dto.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dto/rpa_processo_entrada_dto.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dto/rpa_processo_rdp_dto.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dto/rpa_sap_dto.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/dto/rpa_sistema_dto.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/coleta_dje_process.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/conexao_rdp.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/cte_manual.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/descartes.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/despesas_cte.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/devolucao_ctf.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/ecac_estadual_go.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/ecac_estadual_main.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/ecac_estadual_mt.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/ecac_estadual_sc.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/ecac_estadual_sp.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/ecac_federal.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_15.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_16.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_207.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_32.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_33.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_34.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_36.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_39.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_500.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_505.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/entrada_de_notas_9.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/exemplo_processo.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/fidc_exportacao_docs_portal_b2b.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/fidc_remessa_cobranca_cnab240.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/fidc_retorno_cobranca.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/integracao_contabil.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/login_emsys.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/login_emsys_versao_especifica.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/notas_faturamento_sap.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/playground.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/sped_fiscal.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/jobs/transferencias.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/task_definitions.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/task_executor.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/__init__.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/env.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/get_creds_gworkspace.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/logger.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/toast.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/updater.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/util.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/utils_nfe_entrada.py +0 -0
- {worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/worker.py +0 -0
@@ -3315,7 +3315,7 @@ async def devolucao_prazo_a_faturar(task: RpaProcessoEntradaDTO) -> RpaRetornoPr
|
|
3315
3315
|
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)]
|
3316
3316
|
)
|
3317
3317
|
|
3318
|
-
|
3318
|
+
|
3319
3319
|
#VERIFICANDO SE POSSUI POP UP WARNING
|
3320
3320
|
console.print("Verificando a presença de Warning... \n")
|
3321
3321
|
warning_boo = False
|
@@ -3604,57 +3604,43 @@ async def devolucao_prazo_a_faturar(task: RpaProcessoEntradaDTO) -> RpaRetornoPr
|
|
3604
3604
|
else:
|
3605
3605
|
console.print("Não possui warning para alterar tributação... \n")
|
3606
3606
|
|
3607
|
-
try:
|
3608
|
-
|
3609
|
-
|
3610
|
-
|
3611
|
-
|
3612
|
-
|
3613
|
-
|
3614
|
-
|
3615
|
-
|
3616
|
-
|
3617
|
-
|
3618
|
-
btn_ok.click()
|
3607
|
+
# try:
|
3608
|
+
# #Clcica no OK para seguir a transmissão da pré-venda
|
3609
|
+
# app = Application().connect(class_name="TFrmDadosFaturamentoPreVenda", timeout=60)
|
3610
|
+
# main_window = app["TFrmDadosFaturamentoPreVenda"]
|
3611
|
+
# main_window.set_focus()
|
3612
|
+
# btn_ok = main_window.child_window(class_name="TBitBtn", found_index=1)
|
3613
|
+
# btn_ok.click()
|
3614
|
+
# except:
|
3615
|
+
# btn_ok = main_window.child_window(title="&Ok")
|
3616
|
+
# btn_ok.click()
|
3617
|
+
# await worker_sleep(5)
|
3619
3618
|
|
3620
|
-
|
3621
|
-
|
3622
|
-
|
3623
|
-
console.print("Clicando em sim para faturar pre-venda... \n")
|
3624
|
-
app = Application().connect(class_name="TMessageForm", timeout=10, title="Confirm")
|
3625
|
-
main_window = app["TMessageForm"]
|
3626
|
-
main_window.set_focus()
|
3627
|
-
main_window.chiwld_window(title="&Yes").click()
|
3628
|
-
except:
|
3629
|
-
...
|
3630
|
-
|
3631
|
-
#Lucas Fim
|
3632
|
-
#ADICIONANDO MENSAGEM
|
3633
|
-
|
3619
|
+
#Lucas Fim
|
3620
|
+
#ADICIONANDO MENSAGEM
|
3621
|
+
await worker_sleep(5)
|
3634
3622
|
try:
|
3635
|
-
console.print("Identificando
|
3623
|
+
console.print("Identificando - TFrmDadosFaturamentoPreVenda 1")
|
3636
3624
|
app = Application().connect(class_name="TFrmDadosFaturamentoPreVenda", timeout=10)
|
3637
3625
|
main_window = app["Confirm"]
|
3638
3626
|
main_window.set_focus()
|
3639
3627
|
except:
|
3640
|
-
console.print("Identificando
|
3641
|
-
app = Application().connect(class_name="TMessageForm", timeout=10)
|
3628
|
+
console.print("Identificando - TMessageForm 1")
|
3629
|
+
app = Application().connect(class_name="TMessageForm", timeout=10, title='Confirm')
|
3642
3630
|
main_window = app["TMessageForm"]
|
3643
3631
|
main_window.set_focus()
|
3644
|
-
|
3645
|
-
|
3646
|
-
btn_yes = main_window.child_window(class_name="TButton", found_index=1)
|
3632
|
+
|
3633
|
+
btn_yes = main_window.child_window(class_name="TButton", title="&Yes")
|
3647
3634
|
btn_yes.click()
|
3648
3635
|
|
3649
3636
|
await worker_sleep(5)
|
3650
3637
|
|
3651
3638
|
try:
|
3652
|
-
console.print(
|
3639
|
+
console.print('Identificando - TFrmDadosFaturamentoPreVenda 2')
|
3653
3640
|
app = Application().connect(class_name="TFrmDadosFaturamentoPreVenda", timeout=10)
|
3654
3641
|
main_window = app["TMessageForm"]
|
3655
3642
|
except Exception as ex:
|
3656
|
-
console.print(f'{ex}')
|
3657
|
-
console.print("Identificando tela - 'TMessageForm' 2 ")
|
3643
|
+
console.print(f'{ex} - TMessageForm 2')
|
3658
3644
|
app = Application().connect(class_name="TMessageForm", timeout=10)
|
3659
3645
|
main_window = app["TMessageForm"]
|
3660
3646
|
|
@@ -3824,33 +3810,113 @@ async def devolucao_prazo_a_faturar(task: RpaProcessoEntradaDTO) -> RpaRetornoPr
|
|
3824
3810
|
)
|
3825
3811
|
except:
|
3826
3812
|
console.print("Janela TFrmProcessamentoNFe2 ja fechada")
|
3813
|
+
|
3827
3814
|
|
3828
|
-
|
3829
|
-
|
3830
|
-
|
3831
|
-
|
3832
|
-
|
3833
|
-
|
3834
|
-
|
3835
|
-
|
3815
|
+
console.print("Verificando se possui pop-up imprimir boleta")
|
3816
|
+
boleta_screen = await is_window_open("Confirm")
|
3817
|
+
if boleta_screen["IsOpened"] == True:
|
3818
|
+
console.print("Janela aberta, fechando")
|
3819
|
+
try:
|
3820
|
+
console.print("Confirm")
|
3821
|
+
app = Application().connect(title="Confirm", timeout=10)
|
3822
|
+
main_window = app["Confirm"]
|
3823
|
+
main_window.set_focus()
|
3824
|
+
except:
|
3825
|
+
console.print("Identificando - TMessageForm 1")
|
3826
|
+
app = Application().connect(class_name="TMessageForm", timeout=10, title='Confirm')
|
3827
|
+
main_window = app["TMessageForm"]
|
3828
|
+
main_window.set_focus()
|
3829
|
+
|
3830
|
+
btn_no = main_window.child_window(class_name="TButton", title="&No")
|
3831
|
+
btn_no.click()
|
3832
|
+
|
3833
|
+
|
3834
|
+
await worker_sleep(7)
|
3835
|
+
erro_screen = await is_window_open_by_class("TFrmDadosFaturamentoPreVenda","Confirm")
|
3836
|
+
if erro_screen["IsOpened"] == True:
|
3837
|
+
console.print("Janela aberta, fechando")
|
3838
|
+
try:
|
3839
|
+
console.print("Identificando - TFrmDadosFaturamentoPreVenda 1")
|
3840
|
+
app = Application().connect(class_name="TFrmDadosFaturamentoPreVenda", timeout=10)
|
3841
|
+
main_window = app["Confirm"]
|
3842
|
+
main_window.set_focus()
|
3843
|
+
except:
|
3844
|
+
console.print("Identificando - TMessageForm 1")
|
3845
|
+
app = Application().connect(class_name="TMessageForm", timeout=10, title='Confirm')
|
3846
|
+
main_window = app["TMessageForm"]
|
3847
|
+
main_window.set_focus()
|
3836
3848
|
|
3849
|
+
btn_no = main_window.child_window(class_name="TButton", title="&No")
|
3850
|
+
btn_no.click()
|
3851
|
+
|
3837
3852
|
|
3853
|
+
await worker_sleep(10)
|
3854
|
+
console.print("Verificando se a tela de Mensagem esta aberta")
|
3838
3855
|
erro_screen = await is_window_open_by_class("TMemo","TMemo")
|
3839
3856
|
if erro_screen["IsOpened"] == True:
|
3857
|
+
console.print("Janela aberta, fechando")
|
3840
3858
|
app = Application().connect(class_name="TMemo", timeout=10)
|
3841
3859
|
main_window = app["TMemo"]
|
3842
3860
|
main_window.set_focus()
|
3843
|
-
await worker_sleep(
|
3861
|
+
await worker_sleep(5)
|
3844
3862
|
main_window.close()
|
3863
|
+
|
3845
3864
|
|
3865
|
+
console.print("Verificando se a tela de Faturamento Pre venda esta aberta")
|
3866
|
+
close_dados_faturamento = await is_window_open_by_class("TFrmDadosFaturamentoPreVenda","TFrmDadosFaturamentoPreVenda")
|
3867
|
+
if close_dados_faturamento["IsOpened"] == True:
|
3868
|
+
console.print("Janela aberta, fechando")
|
3869
|
+
try:
|
3870
|
+
app = Application().connect(class_name="TFrmDadosFaturamentoPreVenda", timeout=60)
|
3871
|
+
main_window = app["TFrmDadosFaturamentoPreVenda"]
|
3872
|
+
main_window.set_focus()
|
3873
|
+
btn_cancelar = main_window.child_window(class_name="TBitBtn", found_index=0)
|
3874
|
+
btn_cancelar.click()
|
3875
|
+
except:
|
3876
|
+
btn_cancelar = main_window.child_window(title="&Cancela")
|
3877
|
+
btn_cancelar.click()
|
3846
3878
|
|
3879
|
+
|
3880
|
+
await worker_sleep(10)
|
3881
|
+
console.print("Verificando se a tela de Faturamento Pre venda esta aberta")
|
3847
3882
|
close_dados_faturamento = await is_window_open_by_class("TFrmDadosFaturamentoPreVenda","TFrmDadosFaturamentoPreVenda")
|
3848
3883
|
if close_dados_faturamento["IsOpened"] == True:
|
3849
|
-
|
3850
|
-
|
3851
|
-
|
3884
|
+
console.print("Janela aberta, fechando")
|
3885
|
+
try:
|
3886
|
+
app = Application().connect(class_name="TFrmDadosFaturamentoPreVenda", timeout=180)
|
3887
|
+
main_window = app["TFrmDadosFaturamentoPreVenda"]
|
3888
|
+
main_window.set_focus()
|
3889
|
+
await worker_sleep(2)
|
3890
|
+
main_window.close()
|
3891
|
+
except Exception as e:
|
3892
|
+
console.print(f"Erro ao fechar a janela de dados faturamento pre venda {e}")
|
3893
|
+
|
3894
|
+
|
3895
|
+
await worker_sleep(5)
|
3896
|
+
console.print("Verificando se a tela de Gerenciador esta aberta")
|
3897
|
+
window_gerenciador_screen = await is_window_open_by_class("TFrmGerenciadorNFe2","TFrmGerenciadorNFe2")
|
3898
|
+
if window_gerenciador_screen["IsOpened"] == True:
|
3899
|
+
app = Application().connect(class_name="TFrmGerenciadorNFe2", timeout=10)
|
3900
|
+
window_gerenciador = app["TFrmGerenciadorNFe2"]
|
3901
|
+
window_gerenciador.set_focus()
|
3852
3902
|
await worker_sleep(2)
|
3853
|
-
|
3903
|
+
window_gerenciador.close()
|
3904
|
+
else:
|
3905
|
+
console.print("Janela TFrmGerenciadorNFe2 ja fechada")
|
3906
|
+
|
3907
|
+
|
3908
|
+
await worker_sleep(10)
|
3909
|
+
console.print("Verificando se a tela de Pre venda esta aberta")
|
3910
|
+
window_gerenciador_screen = await is_window_open_by_class("TFrmPreVenda","TFrmPreVenda")
|
3911
|
+
if window_gerenciador_screen["IsOpened"] == True:
|
3912
|
+
app = Application().connect(class_name="TFrmPreVenda", timeout=10)
|
3913
|
+
window_gerenciador = app["TFrmPreVenda"]
|
3914
|
+
window_gerenciador.set_focus()
|
3915
|
+
await worker_sleep(2)
|
3916
|
+
window_gerenciador.close()
|
3917
|
+
else:
|
3918
|
+
console.print("Janela TFrmPreVenda ja fechada")
|
3919
|
+
|
3854
3920
|
|
3855
3921
|
except Exception as e:
|
3856
3922
|
retorno = f"Não foi possivel concluir o processo de pré venda {e} \nEtapas Executadas:\n{steps}"
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/__init__.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/ahead_service.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/api/rdp_service.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/config/__init__.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/config/settings.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/repeat.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/retry.py
RENAMED
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/decorators/timeit.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/models/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/tasks/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/__init__.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/env.py
RENAMED
File without changes
|
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/logger.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/toast.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/updater.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.330 → worker_automate_hub-0.5.331}/worker_automate_hub/utils/util.py
RENAMED
File without changes
|
File without changes
|
File without changes
|