- VERSION 5.06.08

- Se implementaron los globos dinamicos en el mapa.
- Se centro panel de clientes.
- Se desaparecen los botones de venta y No Venta en cliente si el cliente es nuevo.
- Se ajusto el tamaño del listview de clientes para que no se saga del panel.
This commit is contained in:
2025-06-09 13:48:06 -06:00
parent 9a15dd5246
commit 4a3f94d492
468 changed files with 140 additions and 1010 deletions

View File

@@ -715,8 +715,8 @@ End Sub
Sub i_engrane_Click Sub i_engrane_Click
lv_server.Clear lv_server.Clear
lv_server.AddSingleLine("http://keymon.lat:1781") lv_server.AddSingleLine("http://keymon.net:1781")
If user.Text = "KMTS1" Then lv_server.AddSingleLine("http://10.0.0.205:1781") If user.Text = "KMTS1" Then lv_server.AddSingleLine("http://192.99.93.204:1781")
' l_server.Text = Starter.DBReqServer ' l_server.Text = Starter.DBReqServer
et_server.Text = Starter.DBReqServer et_server.Text = Starter.DBReqServer
Log(222) Log(222)

View File

@@ -51,11 +51,11 @@ Sub Class_Globals
Dim la_col As Label Dim la_col As Label
Dim la_cp As Label Dim la_cp As Label
Dim la_zona As Label Dim la_zona As Label
Dim gest As Button Dim b_venta As Button
Dim la_saldotot As Label Dim la_saldotot As Label
Dim la_saldooper As Label Dim la_saldooper As Label
Dim Tels As Button Dim b_noVenta As Button
Dim Label10 As Label Dim Label10 As Label
Dim Label11 As Label Dim Label11 As Label
@@ -202,12 +202,12 @@ End Sub
'You can see the list of page related events in the B4XPagesManager object. The event name is B4XPage. 'You can see the list of page related events in the B4XPagesManager object. The event name is B4XPage.
Sub B4XPage_Appear Sub B4XPage_Appear
Tels.Enabled = True b_noVenta.Enabled = True
gest.Enabled = True b_venta.Enabled = True
' c = Starter.skmt.ExecQuery("SELECT ID FROM VENDIDOS WHERE ID IN (Select cuenta from cuentaa)") ' c = Starter.skmt.ExecQuery("SELECT ID FROM VENDIDOS WHERE ID IN (Select cuenta from cuentaa)")
' If c.RowCount > 0 Then ' If c.RowCount > 0 Then
' Tels.Enabled = False ' b_noVenta.Enabled = False
' gest.Enabled = False ' b_venta.Enabled = False
' End If ' End If
reqManager.Initialize(Me, Starter.DBReqServer) reqManager.Initialize(Me, Starter.DBReqServer)
' Starter.rp.CheckAndRequest(Starter.rp.PERMISSION_CAMERA) ' Starter.rp.CheckAndRequest(Starter.rp.PERMISSION_CAMERA)
@@ -263,7 +263,7 @@ Sub B4XPage_Appear
If c.GetString("CAT_CL_NUM_SERIEFISICO") = "0" Then If c.GetString("CAT_CL_NUM_SERIEFISICO") = "0" Then
L_QR.TEXT = "SIN CODIGO" L_QR.TEXT = "SIN CODIGO"
L_QR.TextColor = Colors.Red L_QR.TextColor = Colors.Red
gest.VISIBLE = False b_venta.VISIBLE = False
BT_QR.Visible = True BT_QR.Visible = True
Else Else
L_QR.TEXT = c.GetString("CAT_CL_NUM_SERIEFISICO") L_QR.TEXT = c.GetString("CAT_CL_NUM_SERIEFISICO")
@@ -303,8 +303,8 @@ Sub B4XPage_Appear
End If End If
c.Close c.Close
If ALMACEN = "1" Then If ALMACEN = "1" Then
Tels.Visible = False b_noVenta.Visible = False
gest.Visible = False b_venta.Visible = False
' B_GPS.Visible = False ' B_GPS.Visible = False
End If End If
If ALMACEN = "4" Then If ALMACEN = "4" Then
@@ -328,8 +328,8 @@ Sub B4XPage_Appear
' b_like.Visible = False ' b_like.Visible = False
End If End If
If ALMACEN = "16" Or ALMACEN = "13" Then If ALMACEN = "16" Or ALMACEN = "13" Then
Tels.Visible = True b_noVenta.Visible = True
gest.Visible = True b_venta.Visible = True
End If End If
CallSubDelayed(Tracker, "Track") CallSubDelayed(Tracker, "Track")
@@ -347,10 +347,13 @@ Sub B4XPage_Appear
' Log($"Tenemos UUC: ${Tracker.FLP.GetLastKnownLocation.Latitude},${Tracker.FLP.GetLastKnownLocation.Longitude}"$) ' Log($"Tenemos UUC: ${Tracker.FLP.GetLastKnownLocation.Latitude},${Tracker.FLP.GetLastKnownLocation.Longitude}"$)
GPS_LocationChanged(Tracker.FLP.GetLastKnownLocation) GPS_LocationChanged(Tracker.FLP.GetLastKnownLocation)
End If End If
Tels.Visible = True b_noVenta.Visible = True
gest.Visible = True b_venta.Visible = True
'Si el cliente es nuevo, no aparece el boton de venta 'Si el cliente es nuevo, no aparece el boton de venta
If la_cuenta.text.SubString2(0,1) = "N" Then gest.Visible = False If la_cuenta.text.SubString2(0,1) = "N" Then
b_venta.Visible = False
b_noVenta.Visible = False
End If
End Sub End Sub
Sub GPS_LocationChanged (Location1 As Location) Sub GPS_LocationChanged (Location1 As Location)
@@ -373,11 +376,15 @@ Sub GPS_LocationChanged (Location1 As Location)
'now we need the distance between our location and the target location 'now we need the distance between our location and the target location
Dim distance As Long Dim distance As Long
distance = l1.DistanceTo(l2) 'the result is in meter distance = l1.DistanceTo(l2) 'the result is in meter
gest.Visible = True ' b_venta.Visible = True
' If distance < 100 Then ' If distance < 100 Then
LA_GEO.TextColor = Colors.Blue LA_GEO.TextColor = Colors.Blue
Tels.Visible = True b_noVenta.Visible = True
gest.Visible = True b_venta.Visible = True
If la_cuenta.text.SubString2(0,1) = "N" Then
b_venta.Visible = False
b_noVenta.Visible = False
End If
' Else ' Else
' LA_GEO.TextColor = Colors.Red ' LA_GEO.TextColor = Colors.Red
' End If ' End If
@@ -400,7 +407,7 @@ Sub ListView1_ItemLongClick (Position As Int, Value As Object)
End Sub End Sub
Sub gest_Click Sub b_venta_Click
B4XPages.MainPage.tipo_venta = "PREVENTA" B4XPages.MainPage.tipo_venta = "PREVENTA"
'Si hay mapa de productos es que hay venta en proceso, entonces borramos la actual para meter la nueva. 'Si hay mapa de productos es que hay venta en proceso, entonces borramos la actual para meter la nueva.
@@ -409,7 +416,7 @@ Sub gest_Click
B4XPages.ShowPage("productos") B4XPages.ShowPage("productos")
End Sub End Sub
Sub Tels_Click Sub b_noVenta_Click
B4XPages.ShowPage("NoVenta") B4XPages.ShowPage("NoVenta")
End Sub End Sub
@@ -704,16 +711,16 @@ Sub B_GUARDA_C_Click
Panel1.Visible = False Panel1.Visible = False
' b_like.Visible = True ' b_like.Visible = True
Tar.Visible = True Tar.Visible = True
Tels.Visible = True b_noVenta.Visible = True
gest.Visible = True b_venta.Visible = True
' b_like.Visible = False ' b_like.Visible = False
Guardar.Visible = True Guardar.Visible = True
End Sub End Sub
Sub b_venta_Click 'Sub b_venta_Click
DateTime.DateFormat = "MM/dd/yyyy" ' DateTime.DateFormat = "MM/dd/yyyy"
sDate=DateTime.Date(DateTime.Now) ' sDate=DateTime.Date(DateTime.Now)
sTime=DateTime.Time(DateTime.Now) ' sTime=DateTime.Time(DateTime.Now)
' s=skmt.ExecQuery("select COUNT(*) AS CUANTOS from HIST_ENCUESTA where HE_CLIE In (Select cuenta from cuentaa)") ' s=skmt.ExecQuery("select COUNT(*) AS CUANTOS from HIST_ENCUESTA where HE_CLIE In (Select cuenta from cuentaa)")
' s.Position= 0 ' s.Position= 0
' If s.GetString("CUANTOS") = 0 Then ' If s.GetString("CUANTOS") = 0 Then
@@ -741,7 +748,7 @@ Sub b_venta_Click
' B4XPages.ShowPage("Productos") ' B4XPages.ShowPage("Productos")
' End If ' End If
' s.Close ' s.Close
End Sub 'End Sub
Sub B_E_NEXT_Click Sub B_E_NEXT_Click
If E_RES_E.Text <> "" Then If E_RES_E.Text <> "" Then
@@ -781,7 +788,7 @@ Sub b_like_Click
' Panel1.Visible = True ' Panel1.Visible = True
' b_like.Visible = False ' b_like.Visible = False
' Tar.Visible = False ' Tar.Visible = False
' Tels.Visible = False ' b_noVenta.Visible = False
' gest.Visible = False ' gest.Visible = False
' b_venta.Visible = False ' b_venta.Visible = False
' Guardar.Visible = False ' Guardar.Visible = False

View File

@@ -31,6 +31,7 @@ Sub Class_Globals
Dim ruta As String Dim ruta As String
Dim q_buscar As String Dim q_buscar As String
Private p_clientes As Panel Private p_clientes As Panel
Private p_lvClientes As Panel
End Sub End Sub
'You can add more parameters here. 'You can add more parameters here.
@@ -93,7 +94,8 @@ Sub B4XPage_Appear
c.Close c.Close
p_clientes.Height = Root.Height p_clientes.Height = Root.Height
ListView1.Height = Root.Height * 0.65 ListView1.Height = Root.Height * 0.65
' ListView1. ListView1.Height = p_lvClientes.Height * 0.92
Subs.centraPanel(p_lvClientes, Root.Width)
entro = "4" entro = "4"
End Sub End Sub

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Some files were not shown because too many files have changed in this diff Show More