- Se agregaron la ruta y el almacen para la descarga de la carta porte

This commit is contained in:
2024-05-29 20:40:56 -06:00
parent 626bf241a1
commit 17462911c3
6 changed files with 40 additions and 9 deletions

View File

@@ -272,4 +272,15 @@ Sub logJobDoneResultados(resultado As DBResult)
LogColor(k & " = " & records(resultado.Columns.Get(k)), Colors.RGB(215,37,0))
Next
Next
End Sub
'Regresa el almacen actual de la base de datos.
Sub traeAlmacen As String 'ignore
Private c As Cursor
Private a As String
c = B4XPages.MainPage.skmt.ExecQuery("select ID_ALMACEN from CAT_ALMACEN")
c.Position = 0
a = C.GetString("ID_ALMACEN")
c.Close
Return a
End Sub