diff --git a/B4A/C_Cliente.bas b/B4A/C_Cliente.bas index bd9245d..abaa1f5 100644 --- a/B4A/C_Cliente.bas +++ b/B4A/C_Cliente.bas @@ -466,7 +466,7 @@ Sub Guardado rutaactualizar = rut.GetString("CAT_CL_RUTA") End If - Starter.skmt.ExecNonQuery($"DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) AND NV_RUTA ='${rutaactualizar}' "$) + Starter.skmt.ExecNonQuery($"DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) "$) Starter.skmt.ExecNonQuery2("INSERT INTO NOVENTA (NV_CLIENTE,NV_FECHA,NV_USER,NV_MOTIVO,NV_COMM,NV_LAT,NV_LON,NV_RUTA) VALUES(?,?,?,?,?,?,?,?) ", Array As Object (cuenta,sDate &" "& sTime, usuario, "ENTREGA","ENTREGA COMPLETA", B4XPages.MainPage.lat_gps, B4XPages.MainPage.lon_gps,rutaactualizar)) Starter.skmt.ExecNonQuery2("INSERT INTO REPARTO_GEO (CLIENTE, USUARIO, FECHA_PUNTEO, LATITUD, LONGITUD, ALMACEN, RUTA_REPARTO, RUTA_PREV, FECHA_PREVENTA, TIPO,ENVIO) VALUES(?,?,?,?,?,?,?,?,?,?,0)",Array As String (la_cuenta.Text, usuario, sDate &" "&sTime, B4XPages.MainPage.lat_gps, B4XPages.MainPage.lon_gps,B4XPages.MainPage.almacen,ruta,rutapre,fechaprev, "ENTREGADO")) Starter.skmt.ExecNonQuery($"UPDATE kmt_info set gestion = 2, HORAENT = '${sDate & " " & sTime}' where CAT_CL_CODIGO In (select cuenta from cuentaa) and CAT_CL_RUTA = '${rutaactualizar}' "$) @@ -1090,7 +1090,7 @@ Sub JobDone(Job As HttpJob) End Sub Private Sub b_acred_Click - If et_montoacredito.Text > l_total.Text Then + If et_montoacredito.Text > l_total.Text.Replace(",","") Then MsgboxAsync("El monto del pagare no puede ser mayor a la venta","Atención") Else DateTime.DateFormat = "dd/MM/yyyy" diff --git a/B4A/C_Clientes.bas b/B4A/C_Clientes.bas index b286e19..38d82e6 100644 --- a/B4A/C_Clientes.bas +++ b/B4A/C_Clientes.bas @@ -29,8 +29,9 @@ Sub Class_Globals Dim listaWayPoints As List Dim lv1Top As String Private b_limpiarRuta As Button - Dim rutaGenerada As Boolean = False + Dim rutaGenerada As Boolean = False Dim rutaacambiar As String + Dim distanciacero as Int = 0 End Sub 'You can add more parameters here. @@ -167,6 +168,7 @@ Sub ListView1_ItemClick (Position As Int, Value As Object) If entro = 2 Then ListView1.TwoLinesLayout.ItemHeight = 90dip lfila.text = "Nombre y Calle" distOrderedMap.Initialize + If c2.RowCount > 0 Then For i = 0 To c2.RowCount -1 'Generamos mapa de clientes c2.Position = i @@ -174,10 +176,23 @@ Sub ListView1_ItemClick (Position As Int, Value As Object) thisLoc.Longitude = c2.GetString("CAT_CL_LONG") ' Log(Tracker.UUGCoords) Private distancia As Int = Tracker.UUGCoords.DistanceTo(thisLoc) 'Calculamos la distancia de la posicion ACTUAL a la tienda. + If distancia = 0 And distanciacero = 0 Then + distancia = distancia + i + distanciacero = distancia + Else If distanciacero <> 0 And distancia = 0 Then + distancia = distanciacero + i + distanciacero = distancia + End If +' distancia = distancia + i 'comentar la linea despues de tener las coordenadas correctas + + Private esteCliente As Map = CreateMap("distancia": distancia, "ubicacion": thisLoc.Longitude&","&thisLoc.Latitude, "codigo": c2.GetString("CAT_CL_CODIGO"), "nomDirDist": $"${c2.GetString("CAT_CL_NOMBRE")} CALLE: ${c2.GetString("CAT_CL_CALLE")} ${CRLF}Distancia: $1.1{(distancia/1000)} kms"$) + distOrderedMap.Put(distancia, esteCliente) + Next distOrderedMap.Keys.Sort(True) 'Ordenamos la mapa de clientes por distancia. + Log(distOrderedMap) ListView1.Clear Private m1 As Map For Each k As Object In distOrderedMap.Keys 'Generamos el listView con el mapa ordenada. diff --git a/B4A/C_NoVenta.bas b/B4A/C_NoVenta.bas index 8183e64..6f979ea 100644 --- a/B4A/C_NoVenta.bas +++ b/B4A/C_NoVenta.bas @@ -95,7 +95,7 @@ Sub GUARDA_Click rut.Position = 0 rutaactualizar = rut.GetString("CAT_CL_RUTA") End If - Starter.skmt.ExecNonQuery($"DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) AND NV_RUTA ='${rutaactualizar}' "$) + Starter.skmt.ExecNonQuery($"DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) "$) 'Traemos los productos del pedido. c=Starter.skmt.ExecQuery("select HVD_NUM_REGISTRO, HVD_CLIENTE, HVD_PRONOMBRE, HVD_CANT, HVD_COSTO_TOT, HVD_FECHA, HVD_PROID, CAT_GP_PRECIO from HIST_VENTAS2 join CAT_GUNAPROD on CAT_GP_ID = HVD_PROID WHERE HVD_CLIENTE IN (Select CUENTA from cuentaa) order by HVD_PRONOMBRE asc") If c.RowCount > 0 Then 'Si hay pedido en HIST_VENTAS ... diff --git a/B4A/C_Principal.bas b/B4A/C_Principal.bas index 0f94abc..1bd1ac2 100644 --- a/B4A/C_Principal.bas +++ b/B4A/C_Principal.bas @@ -893,8 +893,8 @@ Sub envioinfo c.Position=i Dim cmd As DBCommand Dim fechatabulador() As String = Regex.Split(" ", f.GetString("HVD_FECHA")) - Dim fechatabulador2() As String = Regex.Split("-", fechatabulador(0)) - Dim fechatabulador3 As String = fechatabulador2(1)&"/"&fechatabulador2(2)&"/"&fechatabulador2(0) + + Dim fechatabulador3 As String = fechatabulador(0) cmd.Initialize cmd.Name = "insert_tabulador_monedas_INTMEX" cmd.Parameters = Array As Object(d.GetString("RUTAA"), b.GetString("ID_ALMACEN"),c.GetString("VEINTE"),c.GetString("DIEZ"),c.GetString("CINCO"),c.GetString("DOS"),c.GetString("PESO"),c.GetString("CENTAVO"),fechatabulador3) @@ -962,8 +962,8 @@ Sub envioinfo c.Position=i Dim cmd As DBCommand Dim fechatabulador() As String = Regex.Split(" ", f.GetString("HVD_FECHA")) - Dim fechatabulador2() As String = Regex.Split("-", fechatabulador(0)) - Dim fechatabulador3 As String = fechatabulador2(1)&"/"&fechatabulador2(2)&"/"&fechatabulador2(0) + + Dim fechatabulador3 As String = fechatabulador(0) cmd.Initialize cmd.Name = "insert_tabulador_billetes_INTMEX" cmd.Parameters = Array As Object(b.GetString("ID_ALMACEN"), d.GetString("RUTAA"),c.GetString("MIL"),c.GetString("QUINIENTOS"),c.GetString("DOCIENTOS"),c.GetString("CIEN"),c.GetString("CINCUENTA"),c.GetString("VEINTE"),fechatabulador3) @@ -1064,8 +1064,8 @@ Sub cargar_Click reqManager.ExecuteQuery(cmd , 0, "select_abonosp") cmd.Initialize - cmd.Name = "select_cliente_INTMEX_re_REPG" - cmd.Parameters = Array As Object(e_ruta.text, ALMACEN,ALMACEN,e_ruta.text, ALMACEN) + cmd.Name = "select_cliente_INTMEX_re_REPG2" + cmd.Parameters = Array As Object(e_ruta.text, ALMACEN, ALMACEN,e_ruta.text) reqManager.ExecuteQuery(cmd , 0, "kmt_datos") Log($"Pedimos kmt_datos"$) reqs.Add("kmt_datos") diff --git a/B4A/Intmex_Reparto.b4a b/B4A/Intmex_Reparto.b4a index 0e8f032..dfa4edd 100644 --- a/B4A/Intmex_Reparto.b4a +++ b/B4A/Intmex_Reparto.b4a @@ -3012,7 +3012,7 @@ Version=12.8 #Region Project Attributes #ApplicationLabel: Intmex Reparto #VersionCode: 1 - #VersionName: 5.08.10 + #VersionName: 5.09.01 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: portrait #CanInstallToExternalStorage: False diff --git a/B4A/Intmex_Reparto.b4a.meta b/B4A/Intmex_Reparto.b4a.meta index 8827d37..25dc5f5 100644 --- a/B4A/Intmex_Reparto.b4a.meta +++ b/B4A/Intmex_Reparto.b4a.meta @@ -91,6 +91,6 @@ ModuleClosedNodes6= ModuleClosedNodes7= ModuleClosedNodes8= ModuleClosedNodes9= -NavigationStack=C_Principal,b_rechazos_Click,2265,1,Diseñador Visual,productos.bal,-100,1,Diseñador Visual,detalleVenta.bal,-100,1,appUpdater,Service_Start,132,0,C_Principal,cargar____Click,1169,3,B4XMainPage,B4XPage_Created,205,3,Starter,Process_Globals,19,0,C_Principal,cargar_Click,980,0,C_Principal,envioinfo,975,6,Starter,ENVIA_ULTIMA_GPS,114,0,C_Cliente,Class_Globals,0,0 +NavigationStack=C_Cliente,Guardado,462,0,C_NoVenta,GUARDA_Click,63,0,C_Principal,B4XPage_Appear,371,0,Starter,IsConnectedToInternet,139,0,Starter,ENVIA_ULTIMA_GPS,115,0,Starter,Service_Destroy,86,0,C_Principal,Class_Globals,0,0,C_Principal,cargar_Click,1060,0,C_Clientes,Class_Globals,27,6,C_Clientes,ListView1_ItemClick,177,6 SelectedBuild=0 -VisibleModules=1,2,3,4,5,6,7,8,9,10,16,28 +VisibleModules=1,2,3,4,5,6,7,8,9,10,28,16 diff --git a/B4A/Objects/AndroidManifest.xml b/B4A/Objects/AndroidManifest.xml index ea75eb3..410eb84 100644 --- a/B4A/Objects/AndroidManifest.xml +++ b/B4A/Objects/AndroidManifest.xml @@ -3,7 +3,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" package="reparto_intmex.keymon.lat" android:versionCode="1" - android:versionName="5.08.10" + android:versionName="5.09.01" android:installLocation="internalOnly"> diff --git a/B4A/Objects/Intmex_Reparto.apk b/B4A/Objects/Intmex_Reparto.apk index 44c6f5e..91ac2e1 100644 Binary files a/B4A/Objects/Intmex_Reparto.apk and b/B4A/Objects/Intmex_Reparto.apk differ diff --git a/B4A/Objects/b4xlibs/Files/xv_progresstemplate.bal b/B4A/Objects/b4xlibs/Files/xv_progresstemplate.bal deleted file mode 100644 index 9910ecf..0000000 Binary files a/B4A/Objects/b4xlibs/Files/xv_progresstemplate.bal and /dev/null differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.class index fc2910c..bb49b4b 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.class index 0875df1..b1edbd4 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater.class index ab5aaf7..ddf91aa 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/appupdater.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xbytesbuilder.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xbytesbuilder.class index 41b8c6c..55ca984 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xbytesbuilder.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xbytesbuilder.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xfloattextfield.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xfloattextfield.class index 2cc1077..99193f2 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xfloattextfield.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xfloattextfield.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4ximageview.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4ximageview.class index b674b9e..969e9a1 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4ximageview.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4ximageview.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class index 50238e8..e378feb 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class index a261c8f..aad9250 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class index a2c5d68..33b1d6b 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage.class index 1997e4f..6128234 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xmainpage.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xpagesmanager.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xpagesmanager.class index bd62c6c..0305421 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xpagesmanager.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xpagesmanager.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xsearchtemplate.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xsearchtemplate.class index 7104405..833542d 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xsearchtemplate.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/b4xsearchtemplate.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class index 6707127..18bc1d5 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class index 2a3f721..2dba0d4 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist.class index ba821e4..f404f88 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cheklist.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.class index 4a31130..00d09ae 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.class index cc25c15..bd6d1fe 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente.class index b5f47de..0cef62c 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_cliente.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class index 5f10837..5960ca1 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class index 663b39e..fd2648f 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class index f3dedcb..891e3b9 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class index de7ae52..679faff 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class index b1b6e77..78489a6 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class index 0062db8..a684700 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class index 6b00d2c..8626e08 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes.class index 96c5aac..360c470 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_clientes.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_detalleventa.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_detalleventa.class index 127db9d..7b8ea1d 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_detalleventa.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_detalleventa.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_foto.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_foto.class index cb47cd3..e87b903 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_foto.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_foto.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_historico.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_historico.class index e30e6af..546a4fb 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_historico.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_historico.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_noventa.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_noventa.class index b1ca2a4..450cc78 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_noventa.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_noventa.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class index 70c288b..858bf4e 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal.class index bb01a2b..0bdfd39 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_principal.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_productos.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_productos.class index 22abf2f..c34e37a 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_productos.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_productos.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_tabulador.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_tabulador.class index 984aea5..3d85f2d 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_tabulador.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_tabulador.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class index 3d86a65..12a9869 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cameraexclass.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cameraexclass.class index ffd1c05..9c9a15b 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cameraexclass.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cameraexclass.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class index 18859eb..08d33a6 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class index afcad7f..5910af3 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class index 11ba66d..7231a9b 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class index 63e5a1c..d83c44d 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class index 6ba02f0..f856330 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate.class index c0c36cf..f32979f 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/cl_appupdate.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/dbrequestmanager.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/dbrequestmanager.class index 49717ff..eba81e9 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/dbrequestmanager.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/dbrequestmanager.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/escposprinter.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/escposprinter.class index 35d3f31..153830d 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/escposprinter.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/escposprinter.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/fileprovider.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/fileprovider.class index be23780..dacf40a 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/fileprovider.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/fileprovider.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/foto.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/foto.class index d6f474b..03b5aa4 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/foto.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/foto.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httpjob.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httpjob.class index 2aec736..5e1debf 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httpjob.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httpjob.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httputils2service.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httputils2service.class index 5886e3a..bb602fe 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httputils2service.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/httputils2service.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/manageexternalstorage.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/manageexternalstorage.class index afd07b0..45b1ca2 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/manageexternalstorage.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/manageexternalstorage.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/mapa_cliente.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/mapa_cliente.class index b5f010e..664f8d8 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/mapa_cliente.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/mapa_cliente.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/newinst2.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/newinst2.class index d0c4d4d..a713663 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/newinst2.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/newinst2.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/starter.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/starter.class index d73b59b..b260c28 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/starter.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/starter.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/subs.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/subs.class index 93de6cc..945e90c 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/subs.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/subs.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class index 02f86dd..deb4d56 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class differ diff --git a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker.class b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker.class index bec3e4d..d651199 100644 Binary files a/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker.class and b/B4A/Objects/bin/classes/reparto_intmex/keymon/lat/tracker.class differ diff --git a/B4A/Objects/bin/temp.ap_ b/B4A/Objects/bin/temp.ap_ index 7e45be2..8f2972c 100644 Binary files a/B4A/Objects/bin/temp.ap_ and b/B4A/Objects/bin/temp.ap_ differ diff --git a/B4A/Objects/classes.dex b/B4A/Objects/classes.dex index c246899..5eeba42 100644 Binary files a/B4A/Objects/classes.dex and b/B4A/Objects/classes.dex differ diff --git a/B4A/Objects/d8_arguments.txt b/B4A/Objects/d8_arguments.txt index 6128ce2..476fd66 100644 --- a/B4A/Objects/d8_arguments.txt +++ b/B4A/Objects/d8_arguments.txt @@ -1,6 +1,6 @@ --release --output -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects --lib C:\Android\platforms\android-30\android.jar C:\Android\tools\..\extras\b4a_local\unpacked-b4ashared-63837499356000\dex_v1\b4ashared.zip @@ -52,7 +52,7 @@ C:\Android\tools\..\extras\b4a_local\unpacked-json-63837499358000\dex_v1\json.zi C:\Android\tools\..\extras\b4a_local\unpacked-phone-63837499358000\dex_v1\phone.zip C:\Android\tools\..\extras\b4a_local\unpacked-randomaccessfile-63837499358000\dex_v1\randomaccessfile.zip C:\Android\tools\..\extras\b4a_local\unpacked-reflection-63837499358000\dex_v1\reflection.zip -C:\Android\tools\..\extras\b4a_local\unpacked-runtimepermissions.androidx-63837499358000\dex_v1\runtimepermissions.zip +C:\Android\tools\..\extras\b4a_local\unpacked-runtimepermissions.androidx-63822351362000\dex_v1\runtimepermissions.zip C:\Android\tools\..\extras\b4a_local\unpacked-serial-63837499358000\dex_v1\serial.zip C:\Android\tools\..\extras\b4a_local\unpacked-sql-63837499358000\dex_v1\sql.zip C:\Android\tools\..\extras\b4a_local\unpacked-togglelibrary-63627631314000\dex_v1\togglelibrary.zip @@ -74,324 +74,324 @@ c:\android\tools\..\extras\b4a_remote\androidx\annotation\annotation\1.1.0\annot c:\android\tools\..\extras\b4a_remote\androidx\lifecycle\lifecycle-common\2.2.0\lifecycle-common-2.2.0.zip c:\android\tools\..\extras\b4a_remote\androidx\arch\core\core-common\2.1.0\core-common-2.1.0.zip c:\android\tools\..\extras\b4a_remote\androidx\collection\collection\1.1.0\collection-1.1.0.zip -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\core\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\fragment\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\media\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\animatedcounter.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\anotherprogressbar$ResumableSub_BusyLoop.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\anotherprogressbar.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$appupdater_BR.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$ResumableSub_download_newApk.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$ResumableSub_Service_Start.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$_mnewversion.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xbitset.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xbreadcrumb.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xbytesbuilder.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcache$_b4xcacheitem.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcache.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcollections.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcolortemplate$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcolortemplate$_colorpickerpart.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcolortemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcombobox$ResumableSub_RaiseEvent.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcombobox.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcomparatorsort.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdatetemplate$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdatetemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog$ResumableSub_ShowCustom.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog$ResumableSub_ShowTemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xfloattextfield$ResumableSub_SwitchFromPasswordToRegular.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xfloattextfield.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xformatter$_b4xformatdata.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xformatter.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4ximageview.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xinputtemplate$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xinputtemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xlisttemplate$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xlisttemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xloadingindicator$ResumableSub_MainLoop.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xloadingindicator.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xlongtexttemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_B4XPage_Appear.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_b_envioBD_Click.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_b_terpc_Click.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xorderedmap.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpages.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesdelegator.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$PagesMenuListener.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$ResumableSub_HandleCloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$_b4amenuitem.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$_b4xpageinfo.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$_b4xpageparent.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xplusminus$ResumableSub_StartDownLoop.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xplusminus.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xradiobutton$ResumableSub_SetValueImpl.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xradiobutton.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xsearchtemplate$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xsearchtemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xseekbar.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xset.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xsignaturetemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xswitch$ResumableSub_SetValueImpl.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xswitch.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xtimedtemplate$ResumableSub_Show.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xtimedtemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\batteryutilities.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cameraexclass$_camerainfoandid.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cameraexclass$_camerasize.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cameraexclass.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_DownloadApk.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_IsvalidWV.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_ReadWebVN.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_TryApkUpdate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_UpdateApk.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_buscar$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_buscar.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist$ResumableSub_B4XPage_Appear.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist$ResumableSub_InitializeCamera2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente$ResumableSub_b_abono_Click.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente$ResumableSub_gest_Click.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_b_GetDirs_Click.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_caculaRutaGPS.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_distanciaEntreCoords.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_generaListViewRutas.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_ListView1_ItemClick.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_traeRutaDia.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_detalleventa$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_detalleventa.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_detalle_promo.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_foto$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_foto.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_historico$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_historico.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_mapas.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_noventa.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_nuevocliente.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_pedidos.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_principal$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_principal.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_productos$ResumableSub_B4XPage_CloseRequest.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_productos.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_tabulador.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_ticketsdia.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_updateavailable$ResumableSub_B4XPage_Appear.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_updateavailable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\dbrequestmanager$_dbcommand.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\dbrequestmanager$_dbresult.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\dbrequestmanager.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\escposprinter$_animage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\escposprinter.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\fileprovider.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$B4AMenuItemsClickListener.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$HandleKeyDelayed.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$ResumeMessage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$WaitForLayout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\httpjob$_multipartfiledata.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\httpjob.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\httputils2service.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\madewithlove.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$B4AMenuItemsClickListener.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$HandleKeyDelayed.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$ResumeMessage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$WaitForLayout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\manageexternalstorage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$B4AMenuItemsClickListener.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$HandleKeyDelayed.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$ResumableSub_MapFragment1_Ready.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$ResumeMessage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$WaitForLayout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$B4AMenuItemsClickListener.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$HandleKeyDelayed.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$ResumableSub_MapFragment1_Ready.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$ResumeMessage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$WaitForLayout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2$2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2$newinst2_BR.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$anim.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$attr.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$color.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$dimen.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$drawable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$id.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$integer.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$layout.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$string.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$style.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$styleable.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$xml.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\roundslider.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\scrollinglabel$ResumableSub_StartScrolling.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\scrollinglabel.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter$2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter$starter_BR.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\subs.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\swiftbutton.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$1.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$ResumableSub_StartFLP.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$ResumableSub_StartFLP2Reqs.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$tracker_BR.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\xuiviewsutils.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_check.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_checklist.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_clientes.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_detalleventa.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_detalle_promo.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_folioabono.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_historico.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_login.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_mainpage.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_mapa_cliente.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_mapa_rutas.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_no_venta.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_panel_pick_ciego.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_pedido.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_principal.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_proditem.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_proditem2.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_productos.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_searchtemplate.dex -D:\intmex reparto vn\intmex-Reparto_CAMBIO\Mazapa-Reparto_CAMBIO\Intmex-Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_tabulador.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\core\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\fragment\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\media\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\animatedcounter.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\anotherprogressbar$ResumableSub_BusyLoop.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\anotherprogressbar.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$appupdater_BR.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$ResumableSub_download_newApk.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$ResumableSub_Service_Start.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater$_mnewversion.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\appupdater.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xbitset.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xbreadcrumb.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xbytesbuilder.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcache$_b4xcacheitem.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcache.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcollections.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcolortemplate$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcolortemplate$_colorpickerpart.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcolortemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcombobox$ResumableSub_RaiseEvent.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcombobox.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xcomparatorsort.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdatetemplate$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdatetemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog$ResumableSub_ShowCustom.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog$ResumableSub_ShowTemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xdialog.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xfloattextfield$ResumableSub_SwitchFromPasswordToRegular.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xfloattextfield.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xformatter$_b4xformatdata.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xformatter.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4ximageview.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xinputtemplate$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xinputtemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xlisttemplate$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xlisttemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xloadingindicator$ResumableSub_MainLoop.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xloadingindicator.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xlongtexttemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_B4XPage_Appear.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_b_envioBD_Click.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage$ResumableSub_b_terpc_Click.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xmainpage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xorderedmap.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpages.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesdelegator.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$PagesMenuListener.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$ResumableSub_HandleCloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$_b4amenuitem.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$_b4xpageinfo.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager$_b4xpageparent.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xpagesmanager.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xplusminus$ResumableSub_StartDownLoop.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xplusminus.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xradiobutton$ResumableSub_SetValueImpl.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xradiobutton.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xsearchtemplate$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xsearchtemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xseekbar.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xset.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xsignaturetemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xswitch$ResumableSub_SetValueImpl.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xswitch.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xtimedtemplate$ResumableSub_Show.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\b4xtimedtemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\batteryutilities.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cameraexclass$_camerainfoandid.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cameraexclass$_camerasize.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cameraexclass.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_DownloadApk.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_IsvalidWV.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_ReadWebVN.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_TryApkUpdate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate$ResumableSub_UpdateApk.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\cl_appupdate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_buscar$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_buscar.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist$ResumableSub_B4XPage_Appear.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist$ResumableSub_InitializeCamera2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cheklist.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente$ResumableSub_b_abono_Click.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente$ResumableSub_gest_Click.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_cliente.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_b_GetDirs_Click.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_caculaRutaGPS.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_distanciaEntreCoords.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_generaListViewRutas.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_ListView1_ItemClick.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes$ResumableSub_traeRutaDia.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_clientes.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_detalleventa$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_detalleventa.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_detalle_promo.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_foto$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_foto.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_historico$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_historico.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_mapas.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_noventa.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_nuevocliente.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_pedidos.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_principal$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_principal.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_productos$ResumableSub_B4XPage_CloseRequest.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_productos.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_tabulador.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_ticketsdia.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_updateavailable$ResumableSub_B4XPage_Appear.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\c_updateavailable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\dbrequestmanager$_dbcommand.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\dbrequestmanager$_dbresult.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\dbrequestmanager.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\escposprinter$_animage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\escposprinter.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\fileprovider.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$B4AMenuItemsClickListener.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$HandleKeyDelayed.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$ResumeMessage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto$WaitForLayout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\foto.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\httpjob$_multipartfiledata.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\httpjob.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\httputils2service.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\madewithlove.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$B4AMenuItemsClickListener.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$HandleKeyDelayed.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$ResumeMessage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main$WaitForLayout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\main.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\manageexternalstorage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$B4AMenuItemsClickListener.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$HandleKeyDelayed.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$ResumableSub_MapFragment1_Ready.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$ResumeMessage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente$WaitForLayout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_cliente.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$B4AMenuItemsClickListener.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$HandleKeyDelayed.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$ResumableSub_MapFragment1_Ready.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$ResumeMessage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas$WaitForLayout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\mapa_rutas.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2$2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2$newinst2_BR.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\newinst2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$anim.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$attr.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$color.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$dimen.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$drawable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$id.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$integer.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$layout.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$string.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$style.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$styleable.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R$xml.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\R.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\roundslider.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\scrollinglabel$ResumableSub_StartScrolling.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\scrollinglabel.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter$2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter$starter_BR.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\starter.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\subs.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\swiftbutton.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$1.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$ResumableSub_StartFLP.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$ResumableSub_StartFLP2Reqs.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker$tracker_BR.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\tracker.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\xuiviewsutils.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_check.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_checklist.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_clientes.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_detalleventa.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_detalle_promo.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_folioabono.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_historico.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_login.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_mainpage.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_mapa_cliente.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_mapa_rutas.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_no_venta.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_panel_pick_ciego.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_pedido.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_principal.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_proditem.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_proditem2.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_productos.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_searchtemplate.dex +D:\DESARROLLO_MOVIL\Intmex_Reparto\B4A\Objects\dexed\reparto_intmex\keymon\lat\designerscripts\LS_tabulador.dex diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.dex index 6281254..54ff8b8 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_Service_Start.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.dex index 83a13ef..e76e4e1 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater$ResumableSub_download_newApk.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater.dex index 12753de..02cf431 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/appupdater.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xbytesbuilder.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xbytesbuilder.dex index 6e129e5..5a9a2b1 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xbytesbuilder.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xbytesbuilder.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xfloattextfield.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xfloattextfield.dex index d814001..2e45f04 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xfloattextfield.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xfloattextfield.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4ximageview.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4ximageview.dex index 8b6e688..687e8f1 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4ximageview.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4ximageview.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex index e1539e1..f466aeb 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex index ea31dac..43c7b2f 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex index 977aa89..6c3032d 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage.dex index ed4ec34..7250b1c 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xmainpage.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xpagesmanager.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xpagesmanager.dex index 402fb6b..9901d1c 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xpagesmanager.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xpagesmanager.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xsearchtemplate.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xsearchtemplate.dex index 78a4e9c..a170284 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xsearchtemplate.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/b4xsearchtemplate.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex index 266a1b0..e7059e3 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex index 1e872ae..fa6656a 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist.dex index 3652a43..9112e41 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cheklist.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.dex index 82f5675..252f0c9 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_b_abono_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.dex index 47a67a8..6fb2d44 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente$ResumableSub_gest_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente.dex index 9d69534..a4192b1 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_cliente.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex index da9ee08..29ac3c9 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex index f99440f..be60c42 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex index 0f26735..e8d0882 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex index 86ddaba..dcfa5fb 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex index 0391e32..55a0db2 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex index 88ca00e..938b3b2 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex index 3c958d7..611e776 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes.dex index 0e041df..356403f 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_clientes.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_detalleventa.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_detalleventa.dex index 63d5181..344a7ea 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_detalleventa.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_detalleventa.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_foto.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_foto.dex index fde5d97..84cfd4b 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_foto.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_foto.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_historico.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_historico.dex index ba25712..f6731d2 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_historico.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_historico.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_noventa.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_noventa.dex index 6309311..7420dfe 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_noventa.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_noventa.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex index 713d9a4..b377bfc 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal.dex index 9218cfb..b7534bb 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_principal.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_productos.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_productos.dex index 84e4b71..ea5f008 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_productos.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_productos.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_tabulador.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_tabulador.dex index 1c2c8f7..126ef8d 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_tabulador.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_tabulador.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex index 90317d8..2319dec 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cameraexclass.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cameraexclass.dex index 6667986..7d66165 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cameraexclass.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cameraexclass.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex index 3f18c20..0563be0 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex index a2165ad..c50e17c 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex index 708fdc9..640f178 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex index 4e407bb..a848502 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex index 7312dd1..8d62b06 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate.dex index 4ba15a0..510151b 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/cl_appupdate.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/dbrequestmanager.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/dbrequestmanager.dex index 995c608..8be78eb 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/dbrequestmanager.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/dbrequestmanager.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/escposprinter.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/escposprinter.dex index a1008a9..e64a7a8 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/escposprinter.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/escposprinter.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/fileprovider.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/fileprovider.dex index edd15db..a5fc6c9 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/fileprovider.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/fileprovider.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/foto.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/foto.dex index bfb72d9..8b02f58 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/foto.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/foto.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/httpjob.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/httpjob.dex index 7735249..af275cb 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/httpjob.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/httpjob.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/httputils2service.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/httputils2service.dex index 26f953f..a77a06f 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/httputils2service.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/httputils2service.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/manageexternalstorage.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/manageexternalstorage.dex index a8d3326..8c0dd4a 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/manageexternalstorage.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/manageexternalstorage.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/mapa_cliente.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/mapa_cliente.dex index cf9fced..90c4d39 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/mapa_cliente.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/mapa_cliente.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/newinst2.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/newinst2.dex index 6dce6af..22d5768 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/newinst2.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/newinst2.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/starter.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/starter.dex index abd918c..7344683 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/starter.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/starter.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/subs.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/subs.dex index 886d895..d83d179 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/subs.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/subs.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex index bb80f6b..bdebf41 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex differ diff --git a/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker.dex b/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker.dex index 14a098d..2a50946 100644 Binary files a/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker.dex and b/B4A/Objects/dexed/reparto_intmex/keymon/lat/tracker.dex differ diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/appupdater.java b/B4A/Objects/src/reparto_intmex/keymon/lat/appupdater.java index 84613cd..743bbb3 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/appupdater.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/appupdater.java @@ -264,7 +264,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 159;BA.debugLine="Log(\"Descargando actualización\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8589827","Descargando actualización",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2589827","Descargando actualización",0); //BA.debugLineNum = 160;BA.debugLine="B4XPages.ShowPage(\"login\")"; parent.mostCurrent._b4xpages._showpage /*String*/ (processBA,"login"); //BA.debugLineNum = 161;BA.debugLine="B4XPages.MainPage.muestraProgreso(\"Descargando ac"; @@ -330,7 +330,7 @@ _outnewapk.Close(); //BA.debugLineNum = 177;BA.debugLine="B4XPages.MainPage.ocultaProgreso"; parent.mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._ocultaprogreso /*String*/ (); //BA.debugLineNum = 178;BA.debugLine="Log(\"ocultamos prigreso DOWNLOAD APK\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8589846","ocultamos prigreso DOWNLOAD APK",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2589846","ocultamos prigreso DOWNLOAD APK",0); if (true) break; case 8: @@ -392,7 +392,7 @@ _usefileprovider = anywheresoftware.b4a.keywords.Common.False; _sharedfolder = _rp.GetSafeDirDefaultExternal("shared"); }; //BA.debugLineNum = 249;BA.debugLine="Log($\"Using FileProvider? - ${UseFileProvider}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("8983052",("Using FileProvider? - "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("2983052",("Using FileProvider? - "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); //BA.debugLineNum = 250;BA.debugLine="End Sub"; return ""; } @@ -427,7 +427,7 @@ if (true) return _fp.RunMethod("getUriForFile",new Object[]{(Object)(_context.ge } catch (Exception e14) { processBA.setLastException(e14); //BA.debugLineNum = 267;BA.debugLine="Log(\"FileProvider::GetFileUri - error - \" & Last"; -anywheresoftware.b4a.keywords.Common.LogImpl("81048590","FileProvider::GetFileUri - error - "+anywheresoftware.b4a.keywords.Common.LastException(processBA).getMessage(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("21048590","FileProvider::GetFileUri - error - "+anywheresoftware.b4a.keywords.Common.LastException(processBA).getMessage(),0); //BA.debugLineNum = 268;BA.debugLine="Return \"\""; if (true) return (Object)(""); }; @@ -464,7 +464,7 @@ return ""; public static String _service_create() throws Exception{ //BA.debugLineNum = 101;BA.debugLine="Sub Service_Create"; //BA.debugLineNum = 102;BA.debugLine="Log(\"appUpdater(), Service_Create\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8393217","appUpdater(), Service_Create",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2393217","appUpdater(), Service_Create",0); //BA.debugLineNum = 103;BA.debugLine="newApp.Initialize"; _newapp.Initialize(); //BA.debugLineNum = 104;BA.debugLine="Service.AutomaticForegroundMode = Service.AUTOMAT"; @@ -479,7 +479,7 @@ return ""; public static String _service_destroy() throws Exception{ //BA.debugLineNum = 233;BA.debugLine="Sub Service_Destroy"; //BA.debugLineNum = 234;BA.debugLine="Log(\"appUpdater(), Service_Destroy\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8917505","appUpdater(), Service_Destroy",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2917505","appUpdater(), Service_Destroy",0); //BA.debugLineNum = 235;BA.debugLine="End Sub"; return ""; } @@ -511,11 +511,11 @@ case 0: //C this.state = 1; //BA.debugLineNum = 110;BA.debugLine="Log(\"appUpdater(), Service_Start\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458753","appUpdater(), Service_Start",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458753","appUpdater(), Service_Start",0); //BA.debugLineNum = 112;BA.debugLine="B4XPages.MainPage.muestraProgreso(\"Buscando actua"; parent.mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._muestraprogreso /*String*/ ("Buscando actualización"); //BA.debugLineNum = 113;BA.debugLine="Log(\"Buscando actualización\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458756","Buscando actualización",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458756","Buscando actualización",0); //BA.debugLineNum = 114;BA.debugLine="fileProvider_init"; _fileprovider_init(); //BA.debugLineNum = 115;BA.debugLine="Wait For (Download(Me, lnk)) JobDone (j As HttpJo"; @@ -567,7 +567,7 @@ parent._newapp.okMsg /*String*/ = _app[(int) (2)]; //BA.debugLineNum = 123;BA.debugLine="newApp.version = app(0) 'Version actual"; parent._newapp.version /*String*/ = _app[(int) (0)]; //BA.debugLineNum = 125;BA.debugLine="Log($\"Application.VersionName=${Application.Ver"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458768",("Application.VersionName="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.Application.getVersionName()))+", newApp="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(parent._newapp))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458768",("Application.VersionName="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.Application.getVersionName()))+", newApp="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(parent._newapp))+""),0); //BA.debugLineNum = 128;BA.debugLine="If newApp.version = Application.VersionName Th"; if (true) break; @@ -584,7 +584,7 @@ this.state = 10; //BA.debugLineNum = 129;BA.debugLine="newApp.update = False"; parent._newapp.update /*boolean*/ = anywheresoftware.b4a.keywords.Common.False; //BA.debugLineNum = 130;BA.debugLine="Log(\"No new app\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458773","No new app",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458773","No new app",0); //BA.debugLineNum = 131;BA.debugLine="B4XPages.ShowPage(\"updateAvailable\")"; parent.mostCurrent._b4xpages._showpage /*String*/ (processBA,"updateAvailable"); //BA.debugLineNum = 133;BA.debugLine="CreateNotification2(\"Aplicacion al corriente\","; @@ -606,7 +606,7 @@ this.state = 13; //BA.debugLineNum = 136;BA.debugLine="newApp.update = True"; parent._newapp.update /*boolean*/ = anywheresoftware.b4a.keywords.Common.True; //BA.debugLineNum = 137;BA.debugLine="Log(\"New app true\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458780","New app true",0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458780","New app true",0); //BA.debugLineNum = 138;BA.debugLine="B4XPages.ShowPage(\"updateAvailable\")"; parent.mostCurrent._b4xpages._showpage /*String*/ (processBA,"updateAvailable"); if (true) break; @@ -622,7 +622,7 @@ case 15: this.state = 16; this.catchState = 0; //BA.debugLineNum = 143;BA.debugLine="Log(\"appUpdater(), Job Failed, error \" & LastE"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458786","appUpdater(), Job Failed, error "+anywheresoftware.b4a.keywords.Common.LastException(processBA).getMessage(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458786","appUpdater(), Job Failed, error "+anywheresoftware.b4a.keywords.Common.LastException(processBA).getMessage(),0); if (true) break; if (true) break; @@ -637,7 +637,7 @@ case 18: //C this.state = 19; //BA.debugLineNum = 146;BA.debugLine="Log(\"appUpdater(), Job Failed \" & lnk)"; -anywheresoftware.b4a.keywords.Common.LogImpl("8458789","appUpdater(), Job Failed "+parent._lnk,0); +anywheresoftware.b4a.keywords.Common.LogImpl("2458789","appUpdater(), Job Failed "+parent._lnk,0); if (true) break; case 19: diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xbytesbuilder.java b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xbytesbuilder.java index d010f77..5c3e0ec 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xbytesbuilder.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xbytesbuilder.java @@ -178,7 +178,7 @@ byte[] _afterindex = null; if (_index>=_mlength) { //BA.debugLineNum = 45;BA.debugLine="If Index > mLength Then Log(\"Index too large\")"; if (_index>_mlength) { -__c.LogImpl("927852802","Index too large",0);}; +__c.LogImpl("97798786","Index too large",0);}; //BA.debugLineNum = 46;BA.debugLine="Append(Data)"; _append(_data); }else { @@ -220,7 +220,7 @@ public String _set(int _index,byte[] _data) throws Exception{ if (_index>=_mlength) { //BA.debugLineNum = 58;BA.debugLine="If Index > mLength Then Log(\"Index too large\")"; if (_index>_mlength) { -__c.LogImpl("927918338","Index too large",0);}; +__c.LogImpl("97864322","Index too large",0);}; //BA.debugLineNum = 59;BA.debugLine="Append(Data)"; _append(_data); }else { diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xfloattextfield.java b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xfloattextfield.java index ee05052..0b08ad3 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xfloattextfield.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xfloattextfield.java @@ -354,7 +354,7 @@ if (_passwordmode && _multiline) { //BA.debugLineNum = 90;BA.debugLine="Multiline = False"; _multiline = __c.False; //BA.debugLineNum = 91;BA.debugLine="Log(\"Multiline not supported with password mode."; -__c.LogImpl("944433432","Multiline not supported with password mode.",0); +__c.LogImpl("924379416","Multiline not supported with password mode.",0); }; //BA.debugLineNum = 93;BA.debugLine="CreateTextFieldAll(PasswordMode, PassedLabel.Font"; _createtextfieldall(_passwordmode,_passedlabel.getFont(),_xui.PaintOrColorToColor((Object)(_lbl.getTextColor()))); diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/b4ximageview.java b/B4A/Objects/src/reparto_intmex/keymon/lat/b4ximageview.java index 3374e3c..74dec20 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/b4ximageview.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/b4ximageview.java @@ -271,7 +271,7 @@ _imageviewheight = (float) (_mbitmap.getHeight()); break; } default: { //BA.debugLineNum = 104;BA.debugLine="Log(\"Invalid resize mode: \" & mResizeMode)"; -__c.LogImpl("946792731","Invalid resize mode: "+_mresizemode,0); +__c.LogImpl("926738715","Invalid resize mode: "+_mresizemode,0); break; } } ; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xmainpage.java b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xmainpage.java index f563c4c..b4720ca 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xmainpage.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xmainpage.java @@ -225,7 +225,7 @@ this.state = -1; //BA.debugLineNum = 564;BA.debugLine="Dim FileName As String = \"kmt.db\""; _filename = "kmt.db"; //BA.debugLineNum = 566;BA.debugLine="Log(\"xxxxxx:\"&Provider.SharedFolder)"; -parent.__c.LogImpl("81769477","xxxxxx:"+parent._provider._sharedfolder /*String*/ ,0); +parent.__c.LogImpl("21769477","xxxxxx:"+parent._provider._sharedfolder /*String*/ ,0); //BA.debugLineNum = 567;BA.debugLine="Sleep(1000)"; parent.__c.Sleep(ba,this,(int) (1000)); this.state = 1; @@ -317,7 +317,7 @@ _f = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObject //BA.debugLineNum = 802;BA.debugLine="f.Position=0"; _f.setPosition((int) (0)); //BA.debugLineNum = 803;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -__c.LogImpl("82621467",_f.GetString("RUTAA"),0); +__c.LogImpl("22621467",_f.GetString("RUTAA"),0); //BA.debugLineNum = 804;BA.debugLine="a=Starter.skmt.ExecQuery(\"select ID_ALMACEN from"; _a = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select ID_ALMACEN from CAT_ALMACEN"))); //BA.debugLineNum = 805;BA.debugLine="If a.RowCount>0 Then"; @@ -345,12 +345,12 @@ _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObject //BA.debugLineNum = 816;BA.debugLine="If c.RowCount = 0 Then"; if (_c.getRowCount()==0) { //BA.debugLineNum = 818;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -__c.LogImpl("82621482",_f.GetString("RUTAA"),0); +__c.LogImpl("22621482",_f.GetString("RUTAA"),0); //BA.debugLineNum = 819;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PICK_C"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO PICK_CIEGO(PC_ID_PROD, PC_NOM_PROD, PC_CANT, PC_ALMACEN, PC_RUTA, PC_FECHA) VALUES(?,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{_idparts[(int) (0)],_idparts[(int) (1)],_inputtext,_a.GetString("ID_ALMACEN"),_f.GetString("RUTAA"),_fechatabulador3+" "+_stime})); }else { //BA.debugLineNum = 822;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -__c.LogImpl("82621486",_f.GetString("RUTAA"),0); +__c.LogImpl("22621486",_f.GetString("RUTAA"),0); //BA.debugLineNum = 823;BA.debugLine="Starter.skmt.ExecNonQuery2(\"Update PICK_CIEGO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("Update PICK_CIEGO set PC_CANT = ? WHERE PC_ID_PROD = ?",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{_inputtext,_idparts[(int) (0)]})); }; @@ -360,7 +360,7 @@ _f.Close(); //BA.debugLineNum = 828;BA.debugLine="a.Close"; _a.Close(); //BA.debugLineNum = 829;BA.debugLine="Log(\"Processed item \" & i)"; -__c.LogImpl("82621493","Processed item "+BA.NumberToString(_i),0); +__c.LogImpl("22621493","Processed item "+BA.NumberToString(_i),0); } }; //BA.debugLineNum = 831;BA.debugLine="et_buspc.Text = \"\""; @@ -382,7 +382,7 @@ return ""; public String _b_server_click() throws Exception{ //BA.debugLineNum = 583;BA.debugLine="Private Sub b_server_Click"; //BA.debugLineNum = 584;BA.debugLine="Log(\"Guardar servidor\")"; -__c.LogImpl("81900545","Guardar servidor",0); +__c.LogImpl("21900545","Guardar servidor",0); //BA.debugLineNum = 585;BA.debugLine="Starter.skmt.ExecNonQuery2(\"delete from CAT_VARIA"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("delete from CAT_VARIABLES where CAT_VA_DESCRIPCION = ?",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)("SERVER")})); //BA.debugLineNum = 586;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_VARIA"; @@ -393,11 +393,11 @@ _b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*Str _starter._server /*String*/ = _b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ; //BA.debugLineNum = 589;BA.debugLine="If logger Then Log(\"Inicializamos reqManager con"; if (_logger) { -__c.LogImpl("81900550","Inicializamos reqManager con "+_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; +__c.LogImpl("21900550","Inicializamos reqManager con "+_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; //BA.debugLineNum = 590;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serve"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 591;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("81900552",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("21900552",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 592;BA.debugLine="reinicializaReqManager"; _reinicializareqmanager(); //BA.debugLineNum = 593;BA.debugLine="p_appUpdate.Visible = False"; @@ -573,7 +573,7 @@ parent._f = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.Ab //BA.debugLineNum = 867;BA.debugLine="f.Position=0"; parent._f.setPosition((int) (0)); //BA.debugLineNum = 868;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -parent.__c.LogImpl("82687009",parent._f.GetString("RUTAA"),0); +parent.__c.LogImpl("22687009",parent._f.GetString("RUTAA"),0); //BA.debugLineNum = 870;BA.debugLine="a=Starter.skmt.ExecQuery(\"select ID_ALMACEN fr"; parent._a = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select ID_ALMACEN from CAT_ALMACEN"))); //BA.debugLineNum = 871;BA.debugLine="If a.RowCount>0 Then"; @@ -598,7 +598,7 @@ case 17: this.state = 18; ; //BA.debugLineNum = 874;BA.debugLine="Log(a.GetString(\"ID_ALMACEN\"))"; -parent.__c.LogImpl("82687015",parent._a.GetString("ID_ALMACEN"),0); +parent.__c.LogImpl("22687015",parent._a.GetString("ID_ALMACEN"),0); //BA.debugLineNum = 876;BA.debugLine="Dim k As Cursor = Starter.skmt.ExecQuery(\"SELE"; _k = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _k = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("SELECT HVD_FECHA FROM HIST_VENTAS"))); @@ -668,7 +668,7 @@ parent._f.Close(); //BA.debugLineNum = 892;BA.debugLine="a.Close"; parent._a.Close(); //BA.debugLineNum = 893;BA.debugLine="Log(\"Processed item \" & i)"; -parent.__c.LogImpl("82687034","Processed item "+BA.NumberToString(_i),0); +parent.__c.LogImpl("22687034","Processed item "+BA.NumberToString(_i),0); if (true) break; if (true) break; @@ -677,7 +677,7 @@ case 28: this.state = 31; ; //BA.debugLineNum = 895;BA.debugLine="Log(\"Finished processing all items\")"; -parent.__c.LogImpl("82687036","Finished processing all items",0); +parent.__c.LogImpl("22687036","Finished processing all items",0); //BA.debugLineNum = 896;BA.debugLine="P_CIEGO.Visible = False"; parent._p_ciego.setVisible(parent.__c.False); //BA.debugLineNum = 897;BA.debugLine="et_buspc.Text = \"\""; @@ -817,7 +817,7 @@ this.state = 16; //BA.debugLineNum = 240;BA.debugLine="ToastMessageShow(\"No permission\", True)"; parent.__c.ToastMessageShow(BA.ObjectToCharSequence("No permission"),parent.__c.True); //BA.debugLineNum = 241;BA.debugLine="Log(\"Sin permisos\")"; -parent.__c.LogImpl("81376270","Sin permisos",0); +parent.__c.LogImpl("21376270","Sin permisos",0); if (true) break; case 16: @@ -1115,11 +1115,11 @@ _server = "http://keymon.net:1781"; //BA.debugLineNum = 212;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serve"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 213;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("81310824",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("21310824",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 214;BA.debugLine="Label1.Text = Application.VersionName"; _label1.setText(BA.ObjectToCharSequence(__c.Application.getVersionName())); //BA.debugLineNum = 216;BA.debugLine="Log(\"provider\")"; -__c.LogImpl("81310827","provider",0); +__c.LogImpl("21310827","provider",0); //BA.debugLineNum = 217;BA.debugLine="Provider.Initialize"; _provider._initialize /*String*/ (ba); //BA.debugLineNum = 225;BA.debugLine="End Sub"; @@ -1448,11 +1448,11 @@ _fecha2 = __c.Regex.Split("-",_fecha[(int) (0)]); //BA.debugLineNum = 672;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&\""; _fecha3 = _fecha2[(int) (2)]+"/"+_fecha2[(int) (1)]+"/"+_fecha2[(int) (0)]; //BA.debugLineNum = 673;BA.debugLine="Log(fecha3)"; -__c.LogImpl("82359316",_fecha3,0); +__c.LogImpl("22359316",_fecha3,0); //BA.debugLineNum = 674;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1"; _hora = __c.Regex.Split("\\.",_fecha[(int) (1)]); //BA.debugLineNum = 675;BA.debugLine="Log(hora(0))"; -__c.LogImpl("82359318",_hora[(int) (0)],0); +__c.LogImpl("22359318",_hora[(int) (0)],0); }; //BA.debugLineNum = 680;BA.debugLine="Private cI As Cursor"; _ci = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); @@ -1486,7 +1486,7 @@ _clv_pick_ciego._clear(); //BA.debugLineNum = 741;BA.debugLine="q_buscar = \"%\" & et_buspc.Text & \"%\""; _q_buscar = "%"+_et_buspc.getText()+"%"; //BA.debugLineNum = 742;BA.debugLine="Log(q_buscar)"; -__c.LogImpl("82555911",_q_buscar,0); +__c.LogImpl("22555911",_q_buscar,0); //BA.debugLineNum = 743;BA.debugLine="c=Starter.skmt.ExecQuery2($\"select CAT_GP_NOMBRE"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2(("select CAT_GP_NOMBRE, CAT_GP_ID , ifnull(PC_CANT,0) AS PC_CANT FROM CAT_GUNAPROD3 INNER JOIN PICK_CIEGO ON PC_ID_PROD = CAT_GP_ID AND PC_NOM_PROD = CAT_GP_NOMBRE WHERE (CAT_GP_NOMBRE LIKE ? OR CAT_GP_ID LIKE ? ) and CAT_GP_CLASIF <> 'PROMOS'"),new String[]{_q_buscar,_q_buscar}))); //BA.debugLineNum = 744;BA.debugLine="If c.RowCount > 0 Then"; @@ -1664,7 +1664,7 @@ final int groupLen25 = group25.getSize() for (; index25 < groupLen25;index25++){ _records = (Object[])(group25.Get(index25)); //BA.debugLineNum = 326;BA.debugLine="Log(\"Coordenadas del almacen: \" & records(res"; -__c.LogImpl("81507357","Coordenadas del almacen: "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LATITUD"))))])+","+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LONGITUD"))))]),0); +__c.LogImpl("21507357","Coordenadas del almacen: "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LATITUD"))))])+","+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LONGITUD"))))]),0); //BA.debugLineNum = 327;BA.debugLine="Private lat, lon As Double"; _lat = 0; _lon = 0; @@ -1736,7 +1736,7 @@ _cat_pa_pass = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Column //BA.debugLineNum = 360;BA.debugLine="If CAT_PA_PASS = et_codigo.Text Then"; if ((_cat_pa_pass).equals(_et_codigo.getText())) { //BA.debugLineNum = 361;BA.debugLine="Log(CAT_PA_PASS)"; -__c.LogImpl("81507392",_cat_pa_pass,0); +__c.LogImpl("21507392",_cat_pa_pass,0); //BA.debugLineNum = 362;BA.debugLine="p_validacion.Visible = False"; _p_validacion.setVisible(__c.False); //BA.debugLineNum = 363;BA.debugLine="et_codigo.Text = \"\""; @@ -1849,7 +1849,7 @@ _c2.setPosition((int) (0)); if (_c2.getRowCount()>0) { _c2.GetString("USUARIO");}; //BA.debugLineNum = 466;BA.debugLine="Log(CUENTA & \"----------------------!!\")"; -__c.LogImpl("81507497",_cuenta+"----------------------!!",0); +__c.LogImpl("21507497",_cuenta+"----------------------!!",0); //BA.debugLineNum = 467;BA.debugLine="If CUENTA = \"0\" Then"; if ((_cuenta).equals("0")) { }else if((double)(Double.parseDouble(_cuenta))>(double)(Double.parseDouble("0"))) { @@ -1904,7 +1904,7 @@ _et_server.setText(BA.ObjectToCharSequence(_value)); //BA.debugLineNum = 601;BA.debugLine="reqManager.Initialize(Me, Value)"; _reqmanager._initialize /*String*/ (ba,this,BA.ObjectToString(_value)); //BA.debugLineNum = 602;BA.debugLine="LogColor($\"ReqServer = ${Value}\"$, Colors.red)"; -__c.LogImpl("81966085",("ReqServer = "+__c.SmartStringFormatter("",_value)+""),__c.Colors.Red); +__c.LogImpl("21966085",("ReqServer = "+__c.SmartStringFormatter("",_value)+""),__c.Colors.Red); //BA.debugLineNum = 603;BA.debugLine="ToastMessageShow(\"Servidor modificado\", False)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Servidor modificado"),__c.False); //BA.debugLineNum = 604;BA.debugLine="End Sub"; @@ -1953,9 +1953,9 @@ if (_a.getRowCount()>0) { _a.setPosition((int) (0)); }; //BA.debugLineNum = 947;BA.debugLine="Log(a.GetString(\"ID_ALMACEN\"))"; -__c.LogImpl("82883592",_a.GetString("ID_ALMACEN"),0); +__c.LogImpl("22883592",_a.GetString("ID_ALMACEN"),0); //BA.debugLineNum = 948;BA.debugLine="Log(f.GetString(\"CAT_CL_RUTA\"))"; -__c.LogImpl("82883593",_f.GetString("CAT_CL_RUTA"),0); +__c.LogImpl("22883593",_f.GetString("CAT_CL_RUTA"),0); //BA.debugLineNum = 963;BA.debugLine="End Sub"; return ""; } @@ -1965,9 +1965,9 @@ public String _reinicializareqmanager() throws Exception{ _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 608;BA.debugLine="If logger Then Log(B4XPages.MainPage.server)"; if (_logger) { -__c.LogImpl("82031618",_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; +__c.LogImpl("22031618",_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; //BA.debugLineNum = 609;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("82031619",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("22031619",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 610;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xpagesmanager.java b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xpagesmanager.java index f283f31..7fdc249 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xpagesmanager.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xpagesmanager.java @@ -198,7 +198,7 @@ _idtolower = _id.toLowerCase(); //BA.debugLineNum = 143;BA.debugLine="If IdToB4XPage.ContainsKey(IdToLower) Then"; if (_idtob4xpage._containskey /*boolean*/ ((Object)(_idtolower))) { //BA.debugLineNum = 144;BA.debugLine="Log($\"Page with this id already exists: ${IdToLo"; -__c.LogImpl("932571395",("Page with this id already exists: "+__c.SmartStringFormatter("",(Object)(_idtolower))+"!"),0); +__c.LogImpl("912517379",("Page with this id already exists: "+__c.SmartStringFormatter("",(Object)(_idtolower))+"!"),0); //BA.debugLineNum = 145;BA.debugLine="Return"; if (true) return ""; }; @@ -313,7 +313,7 @@ _screenorientation = (int)(BA.ObjectToNumber(_act.GetField("screenOrientation")) //BA.debugLineNum = 116;BA.debugLine="If screenOrientation = -1 Then"; if (_screenorientation==-1) { //BA.debugLineNum = 117;BA.debugLine="LogColor(\"#SupportedOrientations attribute mus"; -__c.LogImpl("932440341","#SupportedOrientations attribute must be set to landscape or portrait.",_xui.Color_Red); +__c.LogImpl("912386325","#SupportedOrientations attribute must be set to landscape or portrait.",_xui.Color_Red); }; }; } @@ -370,12 +370,12 @@ if (true) return "";}; //BA.debugLineNum = 212;BA.debugLine="If xui.IsB4i And GetTopPage <> pi Then"; if (_xui.getIsB4i() && (_gettoppage()).equals(_pi) == false) { //BA.debugLineNum = 213;BA.debugLine="Log(\"Only top page can be closed\")"; -__c.LogImpl("932833540","Only top page can be closed",0); +__c.LogImpl("912779524","Only top page can be closed",0); //BA.debugLineNum = 214;BA.debugLine="Return"; if (true) return ""; }else if(_xui.getIsB4i() && _mstackofpageids._getsize /*int*/ ()==1) { //BA.debugLineNum = 216;BA.debugLine="Log(\"First page cannot be closed\")"; -__c.LogImpl("932833543","First page cannot be closed",0); +__c.LogImpl("912779527","First page cannot be closed",0); //BA.debugLineNum = 217;BA.debugLine="Return"; if (true) return ""; }; @@ -590,9 +590,9 @@ _pi = (reparto_intmex.keymon.lat.b4xpagesmanager._b4xpageinfo)(_idtob4xpage._get //BA.debugLineNum = 400;BA.debugLine="If pi = Null Then"; if (_pi== null) { //BA.debugLineNum = 401;BA.debugLine="Log(\"Error: page id not found: \" & id)"; -__c.LogImpl("933488899","Error: page id not found: "+_id,0); +__c.LogImpl("913434883","Error: page id not found: "+_id,0); //BA.debugLineNum = 402;BA.debugLine="Log(\"Ids: \" & IdToB4XPage.Keys) 'ignore"; -__c.LogImpl("933488900","Ids: "+BA.ObjectToString(_idtob4xpage._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ()),0); +__c.LogImpl("913434884","Ids: "+BA.ObjectToString(_idtob4xpage._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ()),0); }; //BA.debugLineNum = 404;BA.debugLine="Return pi"; if (true) return _pi; @@ -727,7 +727,7 @@ _addpageandcreate("MainPage",(Object)(_mainpage)); //BA.debugLineNum = 85;BA.debugLine="If LogEvents = False Then"; if (_logevents==__c.False) { //BA.debugLineNum = 86;BA.debugLine="Log(\"Call B4XPages.GetManager.LogEvents = True t"; -__c.LogImpl("932374811","Call B4XPages.GetManager.LogEvents = True to enable logging B4XPages events.",0); +__c.LogImpl("912320795","Call B4XPages.GetManager.LogEvents = True to enable logging B4XPages events.",0); }; //BA.debugLineNum = 88;BA.debugLine="If NonMainPageWasAdded Then"; if (_nonmainpagewasadded) { @@ -748,7 +748,7 @@ if (_logevents) { //BA.debugLineNum = 642;BA.debugLine="Dim msg As String = $\"*** ${pi.Id}: ${ev} ${Stac"; _msg = ("*** "+__c.SmartStringFormatter("",(Object)(_pi.Id /*String*/ ))+": "+__c.SmartStringFormatter("",(Object)(_ev))+" "+__c.SmartStringFormatter("",(Object)(_stackstring))+""); //BA.debugLineNum = 643;BA.debugLine="Log(msg)"; -__c.LogImpl("934603011",_msg,0); +__c.LogImpl("914548995",_msg,0); }; //BA.debugLineNum = 645;BA.debugLine="End Sub"; return ""; @@ -800,7 +800,7 @@ __c.CallSubDelayed3(ba,_targetpage.B4XPage /*Object*/ ,_subname,_params[(int) (0 break; } default: { //BA.debugLineNum = 562;BA.debugLine="Log(\"Too many parameters\")"; -__c.LogImpl("934078734","Too many parameters",0); +__c.LogImpl("914024718","Too many parameters",0); break; } } ; @@ -841,7 +841,7 @@ if (true) return __c.CallSubNew3(ba,_targetpage.B4XPage /*Object*/ ,_subname,_pa break; } default: { //BA.debugLineNum = 580;BA.debugLine="Log(\"Too many parameters\")"; -__c.LogImpl("934144270","Too many parameters",0); +__c.LogImpl("914090254","Too many parameters",0); break; } } ; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xsearchtemplate.java b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xsearchtemplate.java index 939bc03..46ce31c 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/b4xsearchtemplate.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/b4xsearchtemplate.java @@ -390,7 +390,7 @@ _count = (int) (_count+1); } }; //BA.debugLineNum = 227;BA.debugLine="Log(\"Index time: \" & (DateTime.Now - startTime) &"; -__c.LogImpl("952559903","Index time: "+BA.NumberToString((__c.DateTime.getNow()-_starttime))+" ms ("+BA.NumberToString(_items.getSize())+" Items)",0); +__c.LogImpl("932505887","Index time: "+BA.NumberToString((__c.DateTime.getNow()-_starttime))+" ms ("+BA.NumberToString(_items.getSize())+" Items)",0); //BA.debugLineNum = 228;BA.debugLine="AllItems = Items"; _allitems = _items; //BA.debugLineNum = 229;BA.debugLine="Return Array(prefixList, substringList, AllItems)"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_cheklist.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_cheklist.java index 66eaa53..050f15a 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_cheklist.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_cheklist.java @@ -166,13 +166,13 @@ __c.File.MakeDir(_dirp,"/md"); //BA.debugLineNum = 548;BA.debugLine="Dir = \"/md\""; _dir = "/md"; //BA.debugLineNum = 549;BA.debugLine="Log(\"creado en promotoria \" & Dirp & Dir)"; -__c.LogImpl("87405576","creado en promotoria "+_dirp+_dir,0); +__c.LogImpl("243057160","creado en promotoria "+_dirp+_dir,0); } catch (Exception e9) { ba.setLastException(e9); //BA.debugLineNum = 551;BA.debugLine="Dir = \"\""; _dir = ""; //BA.debugLineNum = 552;BA.debugLine="Log(\"creado en raiz\")"; -__c.LogImpl("87405579","creado en raiz",0); +__c.LogImpl("243057163","creado en raiz",0); }; //BA.debugLineNum = 555;BA.debugLine="Try"; try { //BA.debugLineNum = 556;BA.debugLine="File.MakeDir(Dirp & Dir,\"/reduccion\")"; @@ -180,13 +180,13 @@ __c.File.MakeDir(_dirp+_dir,"/reduccion"); //BA.debugLineNum = 557;BA.debugLine="Dir2 = \"/reduccion\""; _dir2 = "/reduccion"; //BA.debugLineNum = 558;BA.debugLine="Log(\"creado en promotoria \" & Dirp & Dir & Dir2)"; -__c.LogImpl("87405585","creado en promotoria "+_dirp+_dir+_dir2,0); +__c.LogImpl("243057169","creado en promotoria "+_dirp+_dir+_dir2,0); } catch (Exception e17) { ba.setLastException(e17); //BA.debugLineNum = 560;BA.debugLine="Dir = \"\""; _dir = ""; //BA.debugLineNum = 561;BA.debugLine="Log(\"creado en raiz\")"; -__c.LogImpl("87405588","creado en raiz",0); +__c.LogImpl("243057172","creado en raiz",0); }; //BA.debugLineNum = 564;BA.debugLine="DateTime.TimeFormat=\"HH:mm:ss\""; __c.DateTime.setTimeFormat("HH:mm:ss"); @@ -474,7 +474,7 @@ parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.Ab //BA.debugLineNum = 144;BA.debugLine="c.Position = 0"; parent._c.setPosition((int) (0)); //BA.debugLineNum = 145;BA.debugLine="Log(c.GetString(\"PLACA\"))"; -parent.__c.LogImpl("84259843",parent._c.GetString("PLACA"),0); +parent.__c.LogImpl("239911427",parent._c.GetString("PLACA"),0); //BA.debugLineNum = 146;BA.debugLine="l_placa.Text = c.GetString(\"PLACA\")"; parent._l_placa.setText(BA.ObjectToCharSequence(parent._c.GetString("PLACA"))); //BA.debugLineNum = 147;BA.debugLine="c.Close"; @@ -507,7 +507,7 @@ case 3: //C this.state = 6; //BA.debugLineNum = 153;BA.debugLine="Log(\"inicializamos Camara\")"; -parent.__c.LogImpl("84259851","inicializamos Camara",0); +parent.__c.LogImpl("239911435","inicializamos Camara",0); if (true) break; case 5: @@ -541,7 +541,7 @@ case 9: //C this.state = 16; //BA.debugLineNum = 164;BA.debugLine="Log(\"SDK = \" & SdkVersion & \" : Requesting WRITE"; -parent.__c.LogImpl("84259862","SDK = "+BA.NumberToString(_sdkversion)+" : Requesting WRITE_EXTERNAL_STORAGE permission",0); +parent.__c.LogImpl("239911446","SDK = "+BA.NumberToString(_sdkversion)+" : Requesting WRITE_EXTERNAL_STORAGE permission",0); //BA.debugLineNum = 165;BA.debugLine="Dim rp As RuntimePermissions"; _rp = new anywheresoftware.b4a.objects.RuntimePermissions(); //BA.debugLineNum = 166;BA.debugLine="rp.CheckAndRequest(rp.PERMISSION_WRITE_EXTERNAL_"; @@ -557,16 +557,16 @@ _permission = (String) result[0]; _result = (Boolean) result[1]; ; //BA.debugLineNum = 168;BA.debugLine="Log($\"PERMISSION_WRITE_EXTERNAL_STORAGE = ${Resu"; -parent.__c.LogImpl("84259866",("PERMISSION_WRITE_EXTERNAL_STORAGE = "+parent.__c.SmartStringFormatter("",(Object)(_result))+""),0); +parent.__c.LogImpl("239911450",("PERMISSION_WRITE_EXTERNAL_STORAGE = "+parent.__c.SmartStringFormatter("",(Object)(_result))+""),0); if (true) break; case 11: //C this.state = 12; //BA.debugLineNum = 170;BA.debugLine="Log(\"SDK = \" & SdkVersion & \" : Requesting MANAG"; -parent.__c.LogImpl("84259868","SDK = "+BA.NumberToString(_sdkversion)+" : Requesting MANAGE_EXTERNAL_STORAGE permission",0); +parent.__c.LogImpl("239911452","SDK = "+BA.NumberToString(_sdkversion)+" : Requesting MANAGE_EXTERNAL_STORAGE permission",0); //BA.debugLineNum = 171;BA.debugLine="Log(\"On Entry MANAGE_EXTERNAL_STORAGE = \" & MES1"; -parent.__c.LogImpl("84259869","On Entry MANAGE_EXTERNAL_STORAGE = "+BA.ObjectToString(parent._mes1._haspermission /*boolean*/ ()),0); +parent.__c.LogImpl("239911453","On Entry MANAGE_EXTERNAL_STORAGE = "+BA.ObjectToString(parent._mes1._haspermission /*boolean*/ ()),0); //BA.debugLineNum = 172;BA.debugLine="If Not(MES1.HasPermission) Then"; if (true) break; @@ -592,7 +592,7 @@ this.state = 15; _res = (Integer) result[0]; ; //BA.debugLineNum = 175;BA.debugLine="Log(\"Getting permission\")"; -parent.__c.LogImpl("84259873","Getting permission",0); +parent.__c.LogImpl("239911457","Getting permission",0); //BA.debugLineNum = 176;BA.debugLine="MES1.GetPermission"; parent._mes1._getpermission /*String*/ (); //BA.debugLineNum = 177;BA.debugLine="Wait For MES_StorageAvailable"; @@ -797,7 +797,7 @@ _teclado.HideKeyboard(ba); _fototomada = _nombrefoto3; }; //BA.debugLineNum = 265;BA.debugLine="Log(\"tome foto\")"; -__c.LogImpl("84522011","tome foto",0); +__c.LogImpl("240173595","tome foto",0); //BA.debugLineNum = 266;BA.debugLine="Dim filename As String = fototomada"; _filename = _fototomada; //BA.debugLineNum = 267;BA.debugLine="Dim Dirp As String = File.DirInternal"; @@ -812,13 +812,13 @@ __c.File.MakeDir(_dirp,"/md"); //BA.debugLineNum = 272;BA.debugLine="Dir = \"/md\""; _dir = "/md"; //BA.debugLineNum = 273;BA.debugLine="Log(\"creado en promotoria \" & Dirp & Dir)"; -__c.LogImpl("84522019","creado en promotoria "+_dirp+_dir,0); +__c.LogImpl("240173603","creado en promotoria "+_dirp+_dir,0); } catch (Exception e32) { ba.setLastException(e32); //BA.debugLineNum = 275;BA.debugLine="Dir = \"\""; _dir = ""; //BA.debugLineNum = 276;BA.debugLine="Log(\"creado en raiz\")"; -__c.LogImpl("84522022","creado en raiz",0); +__c.LogImpl("240173606","creado en raiz",0); }; //BA.debugLineNum = 279;BA.debugLine="Try"; try { //BA.debugLineNum = 280;BA.debugLine="File.MakeDir(Dirp & Dir,\"/reduccion\")"; @@ -826,30 +826,30 @@ __c.File.MakeDir(_dirp+_dir,"/reduccion"); //BA.debugLineNum = 281;BA.debugLine="Dir2 = \"/reduccion\""; _dir2 = "/reduccion"; //BA.debugLineNum = 282;BA.debugLine="Log(\"creado en promotoria \" & Dirp & Dir & Dir2)"; -__c.LogImpl("84522028","creado en promotoria "+_dirp+_dir+_dir2,0); +__c.LogImpl("240173612","creado en promotoria "+_dirp+_dir+_dir2,0); } catch (Exception e40) { ba.setLastException(e40); //BA.debugLineNum = 284;BA.debugLine="Dir = \"\""; _dir = ""; //BA.debugLineNum = 285;BA.debugLine="Log(\"creado en raiz\")"; -__c.LogImpl("84522031","creado en raiz",0); +__c.LogImpl("240173615","creado en raiz",0); }; //BA.debugLineNum = 288;BA.debugLine="camEx.SavePictureToFile(Data, Dirp&Dir, filename)"; _camex._savepicturetofile /*String*/ (_data,_dirp+_dir,_filename); //BA.debugLineNum = 289;BA.debugLine="camEx.StartPreview 'restart preview"; _camex._startpreview /*String*/ (); //BA.debugLineNum = 291;BA.debugLine="Log(\"Picture saved.\" & CRLF & \"File size: \" & Fi"; -__c.LogImpl("84522037","Picture saved."+__c.CRLF+"File size: "+BA.NumberToString(__c.File.Size(_dir,_filename))+_dir+","+_filename,0); +__c.LogImpl("240173621","Picture saved."+__c.CRLF+"File size: "+BA.NumberToString(__c.File.Size(_dir,_filename))+_dir+","+_filename,0); //BA.debugLineNum = 292;BA.debugLine="p_camara.Visible = False"; _p_camara.setVisible(__c.False); //BA.debugLineNum = 294;BA.debugLine="Log(nombrefoto)"; -__c.LogImpl("84522040",_nombrefoto,0); +__c.LogImpl("240173624",_nombrefoto,0); //BA.debugLineNum = 295;BA.debugLine="Log(nombrefoto1)"; -__c.LogImpl("84522041",_nombrefoto1,0); +__c.LogImpl("240173625",_nombrefoto1,0); //BA.debugLineNum = 296;BA.debugLine="Log(nombrefoto2)"; -__c.LogImpl("84522042",_nombrefoto2,0); +__c.LogImpl("240173626",_nombrefoto2,0); //BA.debugLineNum = 297;BA.debugLine="Log(nombrefoto3)"; -__c.LogImpl("84522043",_nombrefoto3,0); +__c.LogImpl("240173627",_nombrefoto3,0); //BA.debugLineNum = 299;BA.debugLine="If nombrefoto <> \"0\" Then"; if ((_nombrefoto).equals("0") == false) { //BA.debugLineNum = 300;BA.debugLine="Dim img As B4XBitmap = xui.LoadBitmapResize(File"; @@ -918,7 +918,7 @@ return ""; public String _camera1_ready(boolean _success) throws Exception{ //BA.debugLineNum = 224;BA.debugLine="Sub Camera1_Ready (Success As Boolean)"; //BA.debugLineNum = 225;BA.debugLine="Log(\"Camara ready\")"; -__c.LogImpl("84456449","Camara ready",0); +__c.LogImpl("240108033","Camara ready",0); //BA.debugLineNum = 226;BA.debugLine="If Success Then"; if (_success) { //BA.debugLineNum = 227;BA.debugLine="camEx.SetJpegQuality(90)"; @@ -930,12 +930,12 @@ _camex._commitparameters /*String*/ (); //BA.debugLineNum = 230;BA.debugLine="camEx.StartPreview"; _camex._startpreview /*String*/ (); //BA.debugLineNum = 231;BA.debugLine="Log(camEx.GetPreviewSize)"; -__c.LogImpl("84456455",BA.ObjectToString(_camex._getpreviewsize /*reparto_intmex.keymon.lat.cameraexclass._camerasize*/ ()),0); +__c.LogImpl("240108039",BA.ObjectToString(_camex._getpreviewsize /*reparto_intmex.keymon.lat.cameraexclass._camerasize*/ ()),0); }else { //BA.debugLineNum = 233;BA.debugLine="ToastMessageShow(\"Cannot open camera.\", True)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Cannot open camera."),__c.True); //BA.debugLineNum = 234;BA.debugLine="Log(\"Cannot open camera\")"; -__c.LogImpl("84456458","Cannot open camera",0); +__c.LogImpl("240108042","Cannot open camera",0); }; //BA.debugLineNum = 236;BA.debugLine="End Sub"; return ""; @@ -945,7 +945,7 @@ public String _cb_deratras_selectedindexchanged(int _index) throws Exception{ //BA.debugLineNum = 537;BA.debugLine="itemselect4 = cb_deratras.SelectedItem"; _itemselect4 = _cb_deratras._getselecteditem /*String*/ (); //BA.debugLineNum = 538;BA.debugLine="Log(itemselect4)"; -__c.LogImpl("87340034",_itemselect4,0); +__c.LogImpl("242991618",_itemselect4,0); //BA.debugLineNum = 539;BA.debugLine="End Sub"; return ""; } @@ -954,7 +954,7 @@ public String _cb_derdel_selectedindexchanged(int _index) throws Exception{ //BA.debugLineNum = 532;BA.debugLine="itemselect3 = cb_derdel.SelectedItem"; _itemselect3 = _cb_derdel._getselecteditem /*String*/ (); //BA.debugLineNum = 533;BA.debugLine="Log(itemselect3)"; -__c.LogImpl("87274498",_itemselect3,0); +__c.LogImpl("242926082",_itemselect3,0); //BA.debugLineNum = 534;BA.debugLine="End Sub"; return ""; } @@ -963,7 +963,7 @@ public String _cb_izqatras_selectedindexchanged(int _index) throws Exception{ //BA.debugLineNum = 527;BA.debugLine="itemselect2 = cb_izqatras.SelectedItem"; _itemselect2 = _cb_izqatras._getselecteditem /*String*/ (); //BA.debugLineNum = 528;BA.debugLine="Log(itemselect2)"; -__c.LogImpl("87208962",_itemselect2,0); +__c.LogImpl("242860546",_itemselect2,0); //BA.debugLineNum = 529;BA.debugLine="End Sub"; return ""; } @@ -972,7 +972,7 @@ public String _cb_izqdel_selectedindexchanged(int _index) throws Exception{ //BA.debugLineNum = 522;BA.debugLine="itemselect1 = cb_izqdel.SelectedItem"; _itemselect1 = _cb_izqdel._getselecteditem /*String*/ (); //BA.debugLineNum = 523;BA.debugLine="Log(itemselect1)"; -__c.LogImpl("87143426",_itemselect1,0); +__c.LogImpl("242795010",_itemselect1,0); //BA.debugLineNum = 524;BA.debugLine="End Sub"; return ""; } @@ -1290,7 +1290,7 @@ parent._camex._initialize /*String*/ (ba,parent._p_cam,parent._frontcamera,paren //BA.debugLineNum = 217;BA.debugLine="frontCamera = camEx.Front"; parent._frontcamera = parent._camex._front /*boolean*/ ; //BA.debugLineNum = 218;BA.debugLine="Log(\"inicializamos Camara\")"; -parent.__c.LogImpl("84390918","inicializamos Camara",0); +parent.__c.LogImpl("240042502","inicializamos Camara",0); if (true) break; case 5: @@ -1320,14 +1320,14 @@ Object[] _records = null; String _k = ""; //BA.debugLineNum = 747;BA.debugLine="Sub JobDone(Job As HttpJob)"; //BA.debugLineNum = 748;BA.debugLine="Log(\"JOBDONE CLIENTE . \" & Job.Success)"; -__c.LogImpl("87536641","JOBDONE CLIENTE . "+BA.ObjectToString(_job._success /*boolean*/ ),0); +__c.LogImpl("243188225","JOBDONE CLIENTE . "+BA.ObjectToString(_job._success /*boolean*/ ),0); //BA.debugLineNum = 749;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { //BA.debugLineNum = 752;BA.debugLine="LogColor(\"Error: \" & Job.tag & \" : \" & Job.Error"; -__c.LogImpl("87536645","Error: "+BA.ObjectToString(_job._tag /*Object*/ )+" : "+_job._errormessage /*String*/ ,__c.Colors.Blue); +__c.LogImpl("243188229","Error: "+BA.ObjectToString(_job._tag /*Object*/ )+" : "+_job._errormessage /*String*/ ,__c.Colors.Blue); }else { //BA.debugLineNum = 754;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("87536647","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); +__c.LogImpl("243188231","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); //BA.debugLineNum = 755;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { //BA.debugLineNum = 756;BA.debugLine="Dim resultado As DBResult = reqManager.HandleJo"; @@ -1339,11 +1339,11 @@ _cliente = BA.ObjectToString(_resultado.Tag /*Object*/ ); //BA.debugLineNum = 759;BA.debugLine="cliente = cliente.SubString(cliente.IndexOf(\"_"; _cliente = _cliente.substring((int) (_cliente.indexOf("_")+24)); //BA.debugLineNum = 760;BA.debugLine="Log($\"Cliente1:${cliente}\"$)"; -__c.LogImpl("87536653",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); +__c.LogImpl("243188237",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); //BA.debugLineNum = 762;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT USUARIO, PLAC"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("SELECT USUARIO, PLACA, FECHA_CAPTURA, TARJETA_CIRCULACION , POLIZA_SEGURO, LICENCIA_CONDUCIR, LIMPIA_EXTERNA, LIMPIA_INTERNA, TRIANGULO, GATO, LLANTA_REFACCION, CARROCERIA, CARROCERIA_COMENTARIOS, LUCES, LUCES_COMENTARIOS, CONDICION_PLACAS, CONDICION_PLACAS_COMENTARIOS, CONDICION_LLANTAS_DEL_DER, CONDICION_LLANTAS_DEL_IZQ, CONDICION_LLANTAS_TRASERA_DER, CONDICION_LLANTAS_TRASERA_IZQ, ACEITE, ANTICONGELANTE, FRENOS, AIRE, FUGAS, COMETARIOS_FUGAS, FOTO1, FOTO12, FOTO3, FOTO4, KILIMETRAJE, RUTA FROM CHECKLIST2"))); //BA.debugLineNum = 763;BA.debugLine="Log($\"Pedido PENDIENTE: ${c.RowCount}\"$)"; -__c.LogImpl("87536656",("Pedido PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); +__c.LogImpl("243188240",("Pedido PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); //BA.debugLineNum = 764;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { //BA.debugLineNum = 765;BA.debugLine="For i = 0 To c.RowCount -1"; @@ -1392,7 +1392,7 @@ final int groupLen29 = group29.getSize() for (; index29 < groupLen29;index29++){ _k = BA.ObjectToString(group29.Get(index29)); //BA.debugLineNum = 783;BA.debugLine="Log(resultado.Tag & \": \" & k & \": \" & record"; -__c.LogImpl("87536676",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); +__c.LogImpl("243188260",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } @@ -1414,11 +1414,11 @@ int _i = 0; reparto_intmex.keymon.lat.dbrequestmanager._dbcommand _cmd = null; //BA.debugLineNum = 724;BA.debugLine="Sub mandaPendientes"; //BA.debugLineNum = 725;BA.debugLine="Log(\"MandaPendientes\")"; -__c.LogImpl("87471105","MandaPendientes",0); +__c.LogImpl("243122689","MandaPendientes",0); //BA.debugLineNum = 727;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT USUARIO, PLACA,"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("SELECT USUARIO, PLACA, FECHA_CAPTURA, TARJETA_CIRCULACION , POLIZA_SEGURO, LICENCIA_CONDUCIR, LIMPIA_EXTERNA, LIMPIA_INTERNA, TRIANGULO, GATO, LLANTA_REFACCION, CARROCERIA, CARROCERIA_COMENTARIOS, LUCES, LUCES_COMENTARIOS, CONDICION_PLACAS, CONDICION_PLACAS_COMENTARIOS, CONDICION_LLANTAS_DEL_DER, CONDICION_LLANTAS_DEL_IZQ, CONDICION_LLANTAS_TRASERA_DER, CONDICION_LLANTAS_TRASERA_IZQ, ACEITE, ANTICONGELANTE, FRENOS, AIRE, FUGAS, COMETARIOS_FUGAS, FOTO1, FOTO12, FOTO3, FOTO4 FROM CHECKLIST2"))); //BA.debugLineNum = 728;BA.debugLine="Log($\"Pedido PENDIENTE: ${c.RowCount}\"$)"; -__c.LogImpl("87471108",("Pedido PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); +__c.LogImpl("243122692",("Pedido PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); //BA.debugLineNum = 729;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { //BA.debugLineNum = 730;BA.debugLine="For i = 0 To c.RowCount -1"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_cliente.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_cliente.java index 0333143..055c495 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_cliente.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_cliente.java @@ -270,9 +270,9 @@ this.state = 30; //BA.debugLineNum = 1378;BA.debugLine="d.Position = i"; parent._d.setPosition(_i); //BA.debugLineNum = 1379;BA.debugLine="Log(d.GetString(\"NOTA\"))"; -parent.__c.LogImpl("89568280",parent._d.GetString("NOTA"),0); +parent.__c.LogImpl("245219864",parent._d.GetString("NOTA"),0); //BA.debugLineNum = 1380;BA.debugLine="Log(d.GetString(\"SALDO_PENDIENTE\"))"; -parent.__c.LogImpl("89568281",parent._d.GetString("SALDO_PENDIENTE"),0); +parent.__c.LogImpl("245219865",parent._d.GetString("SALDO_PENDIENTE"),0); if (true) break; if (true) break; @@ -369,8 +369,8 @@ public void _msgbox_result(int _resultado) throws Exception{ } public String _b_acred_click() throws Exception{ //BA.debugLineNum = 1086;BA.debugLine="Private Sub b_acred_Click"; - //BA.debugLineNum = 1087;BA.debugLine="If et_montoacredito.Text > l_total.Text Then"; -if ((double)(Double.parseDouble(_et_montoacredito.getText()))>(double)(Double.parseDouble(_l_total.getText()))) { + //BA.debugLineNum = 1087;BA.debugLine="If et_montoacredito.Text > l_total.Text.Replace(\""; +if ((double)(Double.parseDouble(_et_montoacredito.getText()))>(double)(Double.parseDouble(_l_total.getText().replace(",","")))) { //BA.debugLineNum = 1088;BA.debugLine="MsgboxAsync(\"El monto del pagare no puede ser ma"; __c.MsgboxAsync(BA.ObjectToCharSequence("El monto del pagare no puede ser mayor a la venta"),BA.ObjectToCharSequence("Atención"),ba); }else { @@ -472,7 +472,7 @@ _h = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObject //BA.debugLineNum = 1200;BA.debugLine="h.Position = 0"; _h.setPosition((int) (0)); //BA.debugLineNum = 1201;BA.debugLine="Log(h.GetString(\"CUENTA\"))"; -__c.LogImpl("89306115",_h.GetString("CUENTA"),0); +__c.LogImpl("244957699",_h.GetString("CUENTA"),0); //BA.debugLineNum = 1204;BA.debugLine="Dim Items As List"; _items = new anywheresoftware.b4a.objects.collections.List(); //BA.debugLineNum = 1205;BA.debugLine="Items.Initialize"; @@ -494,7 +494,7 @@ _j = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObject //BA.debugLineNum = 1217;BA.debugLine="j.position = 0"; _j.setPosition((int) (0)); //BA.debugLineNum = 1218;BA.debugLine="Log(j.RowCount)"; -__c.LogImpl("89306132",BA.NumberToString(_j.getRowCount()),0); +__c.LogImpl("244957716",BA.NumberToString(_j.getRowCount()),0); //BA.debugLineNum = 1219;BA.debugLine="If j.RowCount = 0 Then"; if (_j.getRowCount()==0) { //BA.debugLineNum = 1220;BA.debugLine="p_abono.Visible = True"; @@ -526,13 +526,13 @@ _d.setPosition(_i); //BA.debugLineNum = 1231;BA.debugLine="clv_abonos.Add(CreateListItem(d.GetString(\"NOTA"; _clv_abonos._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_d.GetString("NOTA"),"$ "+_d.GetString("SALDO_PENDIENTE")).getObject())),(Object)(_i)); //BA.debugLineNum = 1232;BA.debugLine="Log(d.GetString(\"NOTA\"))"; -__c.LogImpl("89306146",_d.GetString("NOTA"),0); +__c.LogImpl("244957730",_d.GetString("NOTA"),0); //BA.debugLineNum = 1233;BA.debugLine="Log(d.GetString(\"SALDO_PENDIENTE\"))"; -__c.LogImpl("89306147",_d.GetString("SALDO_PENDIENTE"),0); +__c.LogImpl("244957731",_d.GetString("SALDO_PENDIENTE"),0); //BA.debugLineNum = 1234;BA.debugLine="total = total + d.GetString(\"SALDO_PENDIENTE\")"; _total = _total+(double)(Double.parseDouble(_d.GetString("SALDO_PENDIENTE"))); //BA.debugLineNum = 1235;BA.debugLine="Log(total)"; -__c.LogImpl("89306149",BA.NumberToString(_total),0); +__c.LogImpl("244957733",BA.NumberToString(_total),0); } }; //BA.debugLineNum = 1237;BA.debugLine="d.Close"; @@ -554,7 +554,7 @@ _clv_abonos._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware. //BA.debugLineNum = 1243;BA.debugLine="total = total - d.GetString(\"a_abono\")"; _total = _total-(double)(Double.parseDouble(_d.GetString("a_abono"))); //BA.debugLineNum = 1244;BA.debugLine="Log(total)"; -__c.LogImpl("89306158",BA.NumberToString(_total),0); +__c.LogImpl("244957742",BA.NumberToString(_total),0); } }; }; @@ -594,13 +594,13 @@ _d.setPosition(_i); //BA.debugLineNum = 1262;BA.debugLine="clv_abonos.Add(CreateListItem(d.GetString(\"NOTA"; _clv_abonos._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_d.GetString("NOTA"),"$ "+_d.GetString("SALDO_PENDIENTE")).getObject())),(Object)(_i)); //BA.debugLineNum = 1263;BA.debugLine="Log(d.GetString(\"NOTA\"))"; -__c.LogImpl("89306177",_d.GetString("NOTA"),0); +__c.LogImpl("244957761",_d.GetString("NOTA"),0); //BA.debugLineNum = 1264;BA.debugLine="Log(d.GetString(\"SALDO_PENDIENTE\"))"; -__c.LogImpl("89306178",_d.GetString("SALDO_PENDIENTE"),0); +__c.LogImpl("244957762",_d.GetString("SALDO_PENDIENTE"),0); //BA.debugLineNum = 1265;BA.debugLine="total = total + d.GetString(\"SALDO_PENDIENTE\")"; _total = _total+(double)(Double.parseDouble(_d.GetString("SALDO_PENDIENTE"))); //BA.debugLineNum = 1266;BA.debugLine="Log(total)"; -__c.LogImpl("89306180",BA.NumberToString(_total),0); +__c.LogImpl("244957764",BA.NumberToString(_total),0); } }; //BA.debugLineNum = 1268;BA.debugLine="d.Close"; @@ -622,7 +622,7 @@ _clv_abonos._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware. //BA.debugLineNum = 1274;BA.debugLine="total = total - d.GetString(\"a_abono\")"; _total = _total-(double)(Double.parseDouble(_d.GetString("a_abono"))); //BA.debugLineNum = 1275;BA.debugLine="Log(total)"; -__c.LogImpl("89306189",BA.NumberToString(_total),0); +__c.LogImpl("244957773",BA.NumberToString(_total),0); } }; }; @@ -902,13 +902,13 @@ _cuenta3 = BA.NumberToString((double)(Double.parseDouble(_cuenta3))+(double)(Dou }; }; //BA.debugLineNum = 264;BA.debugLine="Log(cuenta0)"; -__c.LogImpl("87798904",_cuenta0,0); +__c.LogImpl("243450488",_cuenta0,0); //BA.debugLineNum = 265;BA.debugLine="Log(Cuenta1)"; -__c.LogImpl("87798905",_cuenta1,0); +__c.LogImpl("243450489",_cuenta1,0); //BA.debugLineNum = 266;BA.debugLine="Log(Cuenta2)"; -__c.LogImpl("87798906",_cuenta2,0); +__c.LogImpl("243450490",_cuenta2,0); //BA.debugLineNum = 267;BA.debugLine="Log(Cuenta3)"; -__c.LogImpl("87798907",_cuenta3,0); +__c.LogImpl("243450491",_cuenta3,0); //BA.debugLineNum = 269;BA.debugLine="l_total.Text = NumberFormat2((cuenta0 + Cuenta1 +"; _l_total.setText(BA.ObjectToCharSequence(__c.NumberFormat2(((double)(Double.parseDouble(_cuenta0))+(double)(Double.parseDouble(_cuenta1))+(double)(Double.parseDouble(_cuenta2))+(double)(Double.parseDouble(_cuenta3))),(int) (0),(int) (2),(int) (2),__c.True))); //BA.debugLineNum = 270;BA.debugLine="L_CANT.Text = NumberFormat2((arti + arti1 +arti2"; @@ -935,7 +935,7 @@ _printer1._disconnect /*String*/ (); //BA.debugLineNum = 289;BA.debugLine="Printer1.Connect"; _printer1._connect /*boolean*/ (); //BA.debugLineNum = 290;BA.debugLine="Log(\"2\")"; -__c.LogImpl("87798930","2",0); +__c.LogImpl("243450514","2",0); }; //BA.debugLineNum = 320;BA.debugLine="c=Starter.skmt.ExecQuery(\"select ID_ALMACEN from"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select ID_ALMACEN from CAT_ALMACEN"))); @@ -950,7 +950,7 @@ if ((_almacen).equals("3") || (_almacen).equals(BA.NumberToString(3)) || (_almac //BA.debugLineNum = 327;BA.debugLine="Tar.Visible = False"; _tar.setVisible(__c.False); //BA.debugLineNum = 328;BA.debugLine="Log(\"SI AQUI\")"; -__c.LogImpl("87798968","SI AQUI",0); +__c.LogImpl("243450552","SI AQUI",0); //BA.debugLineNum = 329;BA.debugLine="b = Starter.skmt.ExecQuery(\"select COUNT(*) AS C"; _b = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select COUNT(*) AS CLIENTE FROM ABONOSP WHERE CLIENTE IN (Select CUENTA from cuentaa)"))); //BA.debugLineNum = 330;BA.debugLine="b.Position = 0"; @@ -1081,7 +1081,7 @@ if (_c.GetString("CAT_CL_ATIENTE2")!= null && (_c.GetString("CAT_CL_ATIENTE2")). //BA.debugLineNum = 129;BA.debugLine="l_atiende2.Text = c.GetString(\"CAT_CL_ATIENTE2\")"; _l_atiende2.setText(BA.ObjectToCharSequence(_c.GetString("CAT_CL_ATIENTE2"))); //BA.debugLineNum = 130;BA.debugLine="Log(\"|\"&c.GetString(\"CAT_CL_ATIENTE2\")&\"|\")"; -__c.LogImpl("87733273","|"+_c.GetString("CAT_CL_ATIENTE2")+"|",0); +__c.LogImpl("243384857","|"+_c.GetString("CAT_CL_ATIENTE2")+"|",0); }else { //BA.debugLineNum = 132;BA.debugLine="l_atiende2.Text = \" \""; _l_atiende2.setText(BA.ObjectToCharSequence(" ")); @@ -1399,7 +1399,7 @@ case 6: //C this.state = 11; //BA.debugLineNum = 366;BA.debugLine="Log(1)"; -parent.__c.LogImpl("88060934",BA.NumberToString(1),0); +parent.__c.LogImpl("243712518",BA.NumberToString(1),0); //BA.debugLineNum = 367;BA.debugLine="p_credito.Visible = True"; parent._p_credito.setVisible(parent.__c.True); //BA.debugLineNum = 369;BA.debugLine="c=Starter.skmt.ExecQuery(\"select sum(HVD_COSTO_"; @@ -1418,7 +1418,7 @@ case 8: //C this.state = 11; //BA.debugLineNum = 375;BA.debugLine="Log(2)"; -parent.__c.LogImpl("88060943",BA.NumberToString(2),0); +parent.__c.LogImpl("243712527",BA.NumberToString(2),0); //BA.debugLineNum = 376;BA.debugLine="B_IMP_Click"; parent._b_imp_click(); //BA.debugLineNum = 377;BA.debugLine="banderaimp = 1"; @@ -1429,7 +1429,7 @@ case 10: //C this.state = 11; //BA.debugLineNum = 379;BA.debugLine="Log(3)"; -parent.__c.LogImpl("88060947",BA.NumberToString(3),0); +parent.__c.LogImpl("243712531",BA.NumberToString(3),0); //BA.debugLineNum = 380;BA.debugLine="DateTime.DateFormat = \"dd/MM/yyyy\""; parent.__c.DateTime.setDateFormat("dd/MM/yyyy"); //BA.debugLineNum = 381;BA.debugLine="DateTime.TimeFormat = \"HH:mm:ss\""; @@ -1605,7 +1605,7 @@ _rut.setPosition((int) (0)); _rutaactualizar = _rut.GetString("CAT_CL_RUTA"); }; //BA.debugLineNum = 463;BA.debugLine="Starter.skmt.ExecNonQuery($\"DELETE FROM NOVENTA W"; -_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) AND NV_RUTA ='"+__c.SmartStringFormatter("",(Object)(_rutaactualizar))+"' ")); +_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) ")); //BA.debugLineNum = 464;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO NOVENTA ("; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO NOVENTA (NV_CLIENTE,NV_FECHA,NV_USER,NV_MOTIVO,NV_COMM,NV_LAT,NV_LON,NV_RUTA) VALUES(?,?,?,?,?,?,?,?) ",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_cuenta),(Object)(_sdate+" "+_stime),(Object)(_usuario),(Object)("ENTREGA"),(Object)("ENTREGA COMPLETA"),(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._lat_gps /*String*/ ),(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._lon_gps /*String*/ ),(Object)(_rutaactualizar)})); //BA.debugLineNum = 465;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO REPARTO_G"; @@ -1652,12 +1652,12 @@ Object[] _records = null; String _k = ""; //BA.debugLineNum = 1061;BA.debugLine="Sub JobDone(Job As HttpJob)"; //BA.debugLineNum = 1062;BA.debugLine="Log(Job.Success)"; -__c.LogImpl("89043969",BA.ObjectToString(_job._success /*boolean*/ ),0); +__c.LogImpl("244695553",BA.ObjectToString(_job._success /*boolean*/ ),0); //BA.debugLineNum = 1063;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { }else { //BA.debugLineNum = 1066;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("89043973","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); +__c.LogImpl("244695557","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); //BA.debugLineNum = 1067;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { //BA.debugLineNum = 1068;BA.debugLine="Dim resultado As DBResult = reqManager.HandleJo"; @@ -1669,7 +1669,7 @@ _cliente = BA.ObjectToString(_resultado.Tag /*Object*/ ); //BA.debugLineNum = 1071;BA.debugLine="cliente = cliente.SubString(cliente.IndexOf(\"_"; _cliente = _cliente.substring((int) (_cliente.indexOf("_")+24)); //BA.debugLineNum = 1072;BA.debugLine="Log($\"Cliente1:${cliente}\"$)"; -__c.LogImpl("89043979",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); +__c.LogImpl("244695563",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); //BA.debugLineNum = 1073;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update REPARTO_GEO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("update REPARTO_GEO SET ENVIO = ? WHERE CLIENTE = ? AND ENVIO <> ?",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{"1",_cliente,"1"})); //BA.debugLineNum = 1074;BA.debugLine="For Each records() As Object In resultado.Rows"; @@ -1689,7 +1689,7 @@ final int groupLen13 = group13.getSize() for (; index13 < groupLen13;index13++){ _k = BA.ObjectToString(group13.Get(index13)); //BA.debugLineNum = 1076;BA.debugLine="Log(resultado.Tag & \": \" & k & \": \" & record"; -__c.LogImpl("89043983",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); +__c.LogImpl("244695567",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } @@ -1760,12 +1760,12 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("delete from CAT_ //BA.debugLineNum = 951;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_VARI"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CAT_VARIABLES(CAT_VA_DESCRIPCION, CAT_VA_VALOR) VALUES (?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)("MACIMP"),(Object)(_starter._mac_impresora /*String*/ )})); //BA.debugLineNum = 952;BA.debugLine="LogColor(\"Impresora conectada\", Colors.Green)"; -__c.LogImpl("88716294","Impresora conectada",__c.Colors.Green); +__c.LogImpl("244367878","Impresora conectada",__c.Colors.Green); //BA.debugLineNum = 954;BA.debugLine="impresoraConectada = True"; _impresoraconectada = __c.True; }else { //BA.debugLineNum = 958;BA.debugLine="LogColor(\"Error conectando la impresora\", Colors"; -__c.LogImpl("88716300","Error conectando la impresora",__c.Colors.Red); +__c.LogImpl("244367884","Error conectando la impresora",__c.Colors.Red); //BA.debugLineNum = 959;BA.debugLine="errorImpresora = errorImpresora + 1"; _errorimpresora = (int) (_errorimpresora+1); //BA.debugLineNum = 960;BA.debugLine="If errorImpresora > 1 Then"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_clientes.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_clientes.java index 3d0f577..b4c2b4d 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_clientes.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_clientes.java @@ -47,6 +47,7 @@ public String _lv1top = ""; public anywheresoftware.b4a.objects.ButtonWrapper _b_limpiarruta = null; public boolean _rutagenerada = false; public String _rutaacambiar = ""; +public int _distanciacero = 0; public b4a.example.dateutils _dateutils = null; public reparto_intmex.keymon.lat.main _main = null; public reparto_intmex.keymon.lat.appupdater _appupdater = null; @@ -62,24 +63,24 @@ public reparto_intmex.keymon.lat.b4xcollections _b4xcollections = null; public reparto_intmex.keymon.lat.httputils2service _httputils2service = null; public reparto_intmex.keymon.lat.xuiviewsutils _xuiviewsutils = null; public boolean _activity_keypress(int _key) throws Exception{ - //BA.debugLineNum = 219;BA.debugLine="Sub Activity_KeyPress (key As Int) As Boolean 'ign"; - //BA.debugLineNum = 221;BA.debugLine="If key=KeyCodes.KEYCODE_BACK Then"; + //BA.debugLineNum = 234;BA.debugLine="Sub Activity_KeyPress (key As Int) As Boolean 'ign"; + //BA.debugLineNum = 236;BA.debugLine="If key=KeyCodes.KEYCODE_BACK Then"; if (_key==__c.KeyCodes.KEYCODE_BACK) { - //BA.debugLineNum = 222;BA.debugLine="If entro = 3 And Not(conMapa) Then"; + //BA.debugLineNum = 237;BA.debugLine="If entro = 3 And Not(conMapa) Then"; if ((_entro).equals(BA.NumberToString(3)) && __c.Not(_conmapa)) { - //BA.debugLineNum = 223;BA.debugLine="b_GetDirs.Visible = False"; + //BA.debugLineNum = 238;BA.debugLine="b_GetDirs.Visible = False"; _b_getdirs.setVisible(__c.False); - //BA.debugLineNum = 225;BA.debugLine="B4XPage_Created(Root)"; + //BA.debugLineNum = 240;BA.debugLine="B4XPage_Created(Root)"; _b4xpage_created(_root); - //BA.debugLineNum = 226;BA.debugLine="Return True"; + //BA.debugLineNum = 241;BA.debugLine="Return True"; if (true) return __c.True; }; - //BA.debugLineNum = 228;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; + //BA.debugLineNum = 243;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; _b4xpages._showpage /*String*/ (ba,"Principal"); - //BA.debugLineNum = 229;BA.debugLine="Return False"; + //BA.debugLineNum = 244;BA.debugLine="Return False"; if (true) return __c.False; }; - //BA.debugLineNum = 233;BA.debugLine="End Sub"; + //BA.debugLineNum = 248;BA.debugLine="End Sub"; return false; } public void _b_getdirs_click() throws Exception{ @@ -122,13 +123,13 @@ return; case 0: //C this.state = 1; - //BA.debugLineNum = 467;BA.debugLine="ProgressDialogShow(\"Calculando distancias y tiemp"; + //BA.debugLineNum = 482;BA.debugLine="ProgressDialogShow(\"Calculando distancias y tiemp"; parent.__c.ProgressDialogShow(ba,BA.ObjectToCharSequence("Calculando distancias y tiempos ...")); - //BA.debugLineNum = 468;BA.debugLine="Private m2 As Map"; + //BA.debugLineNum = 483;BA.debugLine="Private m2 As Map"; _m2 = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 469;BA.debugLine="Private f As Int = 0"; + //BA.debugLineNum = 484;BA.debugLine="Private f As Int = 0"; _f = (int) (0); - //BA.debugLineNum = 470;BA.debugLine="For Each k As Object In distOrderedMap.Keys 'Trae"; + //BA.debugLineNum = 485;BA.debugLine="For Each k As Object In distOrderedMap.Keys 'Trae"; if (true) break; case 1: @@ -157,15 +158,15 @@ if (true) break; case 3: //C this.state = 4; - //BA.debugLineNum = 471;BA.debugLine="m2 = distOrderedMap.Get(k)"; + //BA.debugLineNum = 486;BA.debugLine="m2 = distOrderedMap.Get(k)"; _m2 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._distorderedmap._get /*Object*/ (_k))); - //BA.debugLineNum = 472;BA.debugLine="Private distancia2 As String = m2.Get(\"distancia"; + //BA.debugLineNum = 487;BA.debugLine="Private distancia2 As String = m2.Get(\"distancia"; _distancia2 = BA.ObjectToString(_m2.Get((Object)("distancia"))); - //BA.debugLineNum = 473;BA.debugLine="Private thisLoc1 As String = m2.Get(\"ubicacion\")"; + //BA.debugLineNum = 488;BA.debugLine="Private thisLoc1 As String = m2.Get(\"ubicacion\")"; _thisloc1 = BA.ObjectToString(_m2.Get((Object)("ubicacion"))); - //BA.debugLineNum = 474;BA.debugLine="Private locActual As String = Tracker.UUGCoords."; + //BA.debugLineNum = 489;BA.debugLine="Private locActual As String = Tracker.UUGCoords."; _locactual = BA.NumberToString(parent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude())+","+BA.NumberToString(parent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()); - //BA.debugLineNum = 475;BA.debugLine="If locActual = \"0,0\" Then 'Si no tenemos ubicaci"; + //BA.debugLineNum = 490;BA.debugLine="If locActual = \"0,0\" Then 'Si no tenemos ubicaci"; if (true) break; case 4: @@ -178,9 +179,9 @@ this.state = 6; case 6: //C this.state = 7; - //BA.debugLineNum = 476;BA.debugLine="c = Starter.skmt.ExecQuery(\"select * from hist_"; + //BA.debugLineNum = 491;BA.debugLine="c = Starter.skmt.ExecQuery(\"select * from hist_"; parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select * from hist_gps"))); - //BA.debugLineNum = 477;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 492;BA.debugLine="If c.RowCount > 0 Then"; if (true) break; case 7: @@ -193,9 +194,9 @@ this.state = 9; case 9: //C this.state = 10; - //BA.debugLineNum = 478;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 493;BA.debugLine="c.Position = 0"; parent._c.setPosition((int) (0)); - //BA.debugLineNum = 479;BA.debugLine="locActual = c.GetString(\"hglon\") & \",\" & c.Get"; + //BA.debugLineNum = 494;BA.debugLine="locActual = c.GetString(\"hglon\") & \",\" & c.Get"; _locactual = parent._c.GetString("hglon")+","+parent._c.GetString("hglat"); if (true) break; @@ -203,7 +204,7 @@ case 10: //C this.state = 11; ; - //BA.debugLineNum = 481;BA.debugLine="c.Close"; + //BA.debugLineNum = 496;BA.debugLine="c.Close"; parent._c.Close(); if (true) break; @@ -211,9 +212,9 @@ case 11: //C this.state = 12; ; - //BA.debugLineNum = 483;BA.debugLine="f = f+1"; + //BA.debugLineNum = 498;BA.debugLine="f = f+1"; _f = (int) (_f+1); - //BA.debugLineNum = 484;BA.debugLine="If f < 8 Then"; + //BA.debugLineNum = 499;BA.debugLine="If f < 8 Then"; if (true) break; case 12: @@ -226,7 +227,7 @@ this.state = 14; case 14: //C this.state = 15; - //BA.debugLineNum = 485;BA.debugLine="If locActual = \"0,0\" Then 'Si todavia no tenemo"; + //BA.debugLineNum = 500;BA.debugLine="If locActual = \"0,0\" Then 'Si todavia no tenemo"; if (true) break; case 15: @@ -239,9 +240,9 @@ this.state = 17; case 17: //C this.state = 18; - //BA.debugLineNum = 486;BA.debugLine="ToastMessageShow(\"No se pudo obtener la ubicac"; + //BA.debugLineNum = 501;BA.debugLine="ToastMessageShow(\"No se pudo obtener la ubicac"; parent.__c.ToastMessageShow(BA.ObjectToCharSequence("No se pudo obtener la ubicacion actual!!"),parent.__c.True); - //BA.debugLineNum = 487;BA.debugLine="f = 8"; + //BA.debugLineNum = 502;BA.debugLine="f = 8"; _f = (int) (8); if (true) break; @@ -249,9 +250,9 @@ case 18: //C this.state = 19; ; - //BA.debugLineNum = 489;BA.debugLine="Log($\"locActual: ${locActual}, thisLoc1: ${this"; -parent.__c.LogImpl("810420247",("locActual: "+parent.__c.SmartStringFormatter("",(Object)(_locactual))+", thisLoc1: "+parent.__c.SmartStringFormatter("",(Object)(_thisloc1))+""),0); - //BA.debugLineNum = 490;BA.debugLine="Wait For(distanciaEntreCoords(distancia2, locAc"; + //BA.debugLineNum = 504;BA.debugLine="Log($\"locActual: ${locActual}, thisLoc1: ${this"; +parent.__c.LogImpl("246071831",("locActual: "+parent.__c.SmartStringFormatter("",(Object)(_locactual))+", thisLoc1: "+parent.__c.SmartStringFormatter("",(Object)(_thisloc1))+""),0); + //BA.debugLineNum = 505;BA.debugLine="Wait For(distanciaEntreCoords(distancia2, locAc"; parent.__c.WaitFor("complete", ba, this, parent._distanciaentrecoords(_distancia2,_locactual,_thisloc1)); this.state = 33; return; @@ -260,20 +261,20 @@ case 33: this.state = 19; _r = (anywheresoftware.b4a.objects.collections.List) result[0]; ; - //BA.debugLineNum = 491;BA.debugLine="LogColor($\"R: ${r.Get(0)} - ${r.Get(1)} - ${r.G"; -parent.__c.LogImpl("810420249",("R: "+parent.__c.SmartStringFormatter("",_r.Get((int) (0)))+" - "+parent.__c.SmartStringFormatter("",_r.Get((int) (1)))+" - "+parent.__c.SmartStringFormatter("",_r.Get((int) (2)))+""),parent.__c.Colors.Green); - //BA.debugLineNum = 492;BA.debugLine="Private tId As Int = r.Get(0)"; + //BA.debugLineNum = 506;BA.debugLine="LogColor($\"R: ${r.Get(0)} - ${r.Get(1)} - ${r.G"; +parent.__c.LogImpl("246071833",("R: "+parent.__c.SmartStringFormatter("",_r.Get((int) (0)))+" - "+parent.__c.SmartStringFormatter("",_r.Get((int) (1)))+" - "+parent.__c.SmartStringFormatter("",_r.Get((int) (2)))+""),parent.__c.Colors.Green); + //BA.debugLineNum = 507;BA.debugLine="Private tId As Int = r.Get(0)"; _tid = (int)(BA.ObjectToNumber(_r.Get((int) (0)))); - //BA.debugLineNum = 493;BA.debugLine="Private tMap As Map = distOrderedMap.Get(tId)"; + //BA.debugLineNum = 508;BA.debugLine="Private tMap As Map = distOrderedMap.Get(tId)"; _tmap = new anywheresoftware.b4a.objects.collections.Map(); _tmap = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._distorderedmap._get /*Object*/ ((Object)(_tid)))); - //BA.debugLineNum = 494;BA.debugLine="LogColor(\"|\" & tId & \"| - \" &distOrderedMap.Get"; -parent.__c.LogImpl("810420252","|"+BA.NumberToString(_tid)+"| - "+BA.ObjectToString(parent._distorderedmap._get /*Object*/ ((Object)(_tid))),parent.__c.Colors.Blue); - //BA.debugLineNum = 495;BA.debugLine="Private tempNDD As String = tMap.Get(\"nomDirDis"; + //BA.debugLineNum = 509;BA.debugLine="LogColor(\"|\" & tId & \"| - \" &distOrderedMap.Get"; +parent.__c.LogImpl("246071836","|"+BA.NumberToString(_tid)+"| - "+BA.ObjectToString(parent._distorderedmap._get /*Object*/ ((Object)(_tid))),parent.__c.Colors.Blue); + //BA.debugLineNum = 510;BA.debugLine="Private tempNDD As String = tMap.Get(\"nomDirDis"; _tempndd = BA.ObjectToString(_tmap.Get((Object)("nomDirDist"))); - //BA.debugLineNum = 496;BA.debugLine="Private indexD As Int = tempNDD.IndexOf(\"Distan"; + //BA.debugLineNum = 511;BA.debugLine="Private indexD As Int = tempNDD.IndexOf(\"Distan"; _indexd = _tempndd.indexOf("Distancia:"); - //BA.debugLineNum = 497;BA.debugLine="If indexD > -1 Then tempNDD = tempNDD.SubString"; + //BA.debugLineNum = 512;BA.debugLine="If indexD > -1 Then tempNDD = tempNDD.SubString"; if (true) break; case 19: @@ -293,20 +294,20 @@ case 24: //C this.state = 25; ; - //BA.debugLineNum = 498;BA.debugLine="Log(tempNDD)"; -parent.__c.LogImpl("810420256",_tempndd,0); - //BA.debugLineNum = 499;BA.debugLine="tempNDD = tempNDD & $\"Dist: $1.1{(r.Get(1)/1000"; + //BA.debugLineNum = 513;BA.debugLine="Log(tempNDD)"; +parent.__c.LogImpl("246071840",_tempndd,0); + //BA.debugLineNum = 514;BA.debugLine="tempNDD = tempNDD & $\"Dist: $1.1{(r.Get(1)/1000"; _tempndd = _tempndd+("Dist: "+parent.__c.SmartStringFormatter("1.1",(Object)(((double)(BA.ObjectToNumber(_r.Get((int) (1))))/(double)1000)))+" kms, Tiempo aprox: "+parent.__c.SmartStringFormatter("1.0",(Object)((((double)(BA.ObjectToNumber(_r.Get((int) (2))))*2)/(double)60)))+" min."); - //BA.debugLineNum = 500;BA.debugLine="Private esteCliente As Map = CreateMap(\"distanc"; + //BA.debugLineNum = 515;BA.debugLine="Private esteCliente As Map = CreateMap(\"distanc"; _estecliente = new anywheresoftware.b4a.objects.collections.Map(); _estecliente = parent.__c.createMap(new Object[] {(Object)("distancia"),(Object)(_distancia2),(Object)("ubicacion"),_tmap.Get((Object)("ubicacion")),(Object)("codigo"),_tmap.Get((Object)("codigo")),(Object)("nomDirDist"),(Object)(_tempndd)}); - //BA.debugLineNum = 501;BA.debugLine="distOrderedMap.Put(tId, esteCliente)"; + //BA.debugLineNum = 516;BA.debugLine="distOrderedMap.Put(tId, esteCliente)"; parent._distorderedmap._put /*String*/ ((Object)(_tid),(Object)(_estecliente.getObject())); - //BA.debugLineNum = 502;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 517;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); - //BA.debugLineNum = 503;BA.debugLine="Private m3 As Map"; + //BA.debugLineNum = 518;BA.debugLine="Private m3 As Map"; _m3 = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 504;BA.debugLine="For Each k As Object In distOrderedMap.Keys 'G"; + //BA.debugLineNum = 519;BA.debugLine="For Each k As Object In distOrderedMap.Keys 'G"; if (true) break; case 25: @@ -335,11 +336,11 @@ if (true) break; case 27: //C this.state = 35; - //BA.debugLineNum = 505;BA.debugLine="m3 = distOrderedMap.Get(k)"; + //BA.debugLineNum = 520;BA.debugLine="m3 = distOrderedMap.Get(k)"; _m3 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._distorderedmap._get /*Object*/ (_k))); - //BA.debugLineNum = 506;BA.debugLine="m3.Get(\"codigo\")"; + //BA.debugLineNum = 521;BA.debugLine="m3.Get(\"codigo\")"; _m3.Get((Object)("codigo")); - //BA.debugLineNum = 507;BA.debugLine="ListView1.AddTwoLines(m3.Get(\"codigo\"), m3.Get"; + //BA.debugLineNum = 522;BA.debugLine="ListView1.AddTwoLines(m3.Get(\"codigo\"), m3.Get"; parent._listview1.AddTwoLines(BA.ObjectToCharSequence(_m3.Get((Object)("codigo"))),BA.ObjectToCharSequence(_m3.Get((Object)("nomDirDist")))); if (true) break; if (true) break; @@ -361,9 +362,9 @@ case 30: //C this.state = -1; ; - //BA.debugLineNum = 511;BA.debugLine="ProgressDialogHide"; + //BA.debugLineNum = 526;BA.debugLine="ProgressDialogHide"; parent.__c.ProgressDialogHide(); - //BA.debugLineNum = 512;BA.debugLine="End Sub"; + //BA.debugLineNum = 527;BA.debugLine="End Sub"; if (true) break; } @@ -373,34 +374,34 @@ if (true) break; public void _complete(anywheresoftware.b4a.objects.collections.List _r) throws Exception{ } public String _b_getrutainfo_click() throws Exception{ - //BA.debugLineNum = 570;BA.debugLine="Private Sub b_getRutaInfo_Click"; - //BA.debugLineNum = 572;BA.debugLine="caculaRutaGPS(todosAVisitar)"; + //BA.debugLineNum = 585;BA.debugLine="Private Sub b_getRutaInfo_Click"; + //BA.debugLineNum = 587;BA.debugLine="caculaRutaGPS(todosAVisitar)"; _cacularutagps(_todosavisitar()); - //BA.debugLineNum = 573;BA.debugLine="End Sub"; + //BA.debugLineNum = 588;BA.debugLine="End Sub"; return ""; } public String _b_getrutainfo_longclick() throws Exception{ - //BA.debugLineNum = 576;BA.debugLine="Private Sub b_getRutaInfo_LongClick"; - //BA.debugLineNum = 577;BA.debugLine="If b_limpiarRuta.Visible Then"; + //BA.debugLineNum = 591;BA.debugLine="Private Sub b_getRutaInfo_LongClick"; + //BA.debugLineNum = 592;BA.debugLine="If b_limpiarRuta.Visible Then"; if (_b_limpiarruta.getVisible()) { - //BA.debugLineNum = 578;BA.debugLine="b_limpiarRuta.Visible = False"; + //BA.debugLineNum = 593;BA.debugLine="b_limpiarRuta.Visible = False"; _b_limpiarruta.setVisible(__c.False); }else { - //BA.debugLineNum = 580;BA.debugLine="b_limpiarRuta.Visible = True"; + //BA.debugLineNum = 595;BA.debugLine="b_limpiarRuta.Visible = True"; _b_limpiarruta.setVisible(__c.True); }; - //BA.debugLineNum = 582;BA.debugLine="End Sub"; + //BA.debugLineNum = 597;BA.debugLine="End Sub"; return ""; } public String _b_limpiarruta_click() throws Exception{ - //BA.debugLineNum = 585;BA.debugLine="Private Sub b_limpiarRuta_Click"; - //BA.debugLineNum = 586;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints\""; + //BA.debugLineNum = 600;BA.debugLine="Private Sub b_limpiarRuta_Click"; + //BA.debugLineNum = 601;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from waypoints"); - //BA.debugLineNum = 587;BA.debugLine="b_limpiarRuta.Visible = False"; + //BA.debugLineNum = 602;BA.debugLine="b_limpiarRuta.Visible = False"; _b_limpiarruta.setVisible(__c.False); - //BA.debugLineNum = 588;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 603;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 589;BA.debugLine="End Sub"; + //BA.debugLineNum = 604;BA.debugLine="End Sub"; return ""; } public String _b4xpage_appear() throws Exception{ @@ -409,109 +410,109 @@ anywheresoftware.b4a.objects.CSBuilder _cs2 = null; int _i = 0; anywheresoftware.b4a.sql.SQL.CursorWrapper _x = null; String[] _y = null; - //BA.debugLineNum = 49;BA.debugLine="Sub B4XPage_Appear"; - //BA.debugLineNum = 50;BA.debugLine="busca.Text = \"\""; + //BA.debugLineNum = 50;BA.debugLine="Sub B4XPage_Appear"; + //BA.debugLineNum = 51;BA.debugLine="busca.Text = \"\""; _busca.setText(BA.ObjectToCharSequence("")); - //BA.debugLineNum = 51;BA.debugLine="b_GetDirs.Visible = False"; + //BA.debugLineNum = 52;BA.debugLine="b_GetDirs.Visible = False"; _b_getdirs.setVisible(__c.False); - //BA.debugLineNum = 53;BA.debugLine="entro =\"2\""; + //BA.debugLineNum = 54;BA.debugLine="entro =\"2\""; _entro = "2"; - //BA.debugLineNum = 57;BA.debugLine="p_colonia.Width = Root.Width"; + //BA.debugLineNum = 58;BA.debugLine="p_colonia.Width = Root.Width"; _p_colonia.setWidth(_root.getWidth()); - //BA.debugLineNum = 58;BA.debugLine="p_colonia.Height = Root.Height"; + //BA.debugLineNum = 59;BA.debugLine="p_colonia.Height = Root.Height"; _p_colonia.setHeight(_root.getHeight()); - //BA.debugLineNum = 59;BA.debugLine="p_colonia.Top = 0"; + //BA.debugLineNum = 60;BA.debugLine="p_colonia.Top = 0"; _p_colonia.setTop((int) (0)); - //BA.debugLineNum = 60;BA.debugLine="p_colonia.Left = 0"; + //BA.debugLineNum = 61;BA.debugLine="p_colonia.Left = 0"; _p_colonia.setLeft((int) (0)); - //BA.debugLineNum = 61;BA.debugLine="Subs.centraListView(ListView1, p_colonia.Width)"; + //BA.debugLineNum = 62;BA.debugLine="Subs.centraListView(ListView1, p_colonia.Width)"; _subs._centralistview /*String*/ (ba,_listview1,_p_colonia.getWidth()); - //BA.debugLineNum = 62;BA.debugLine="ListView1.Height = p_colonia.Height * 0.75"; + //BA.debugLineNum = 63;BA.debugLine="ListView1.Height = p_colonia.Height * 0.75"; _listview1.setHeight((int) (_p_colonia.getHeight()*0.75)); - //BA.debugLineNum = 63;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; + //BA.debugLineNum = 64;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; _subs._setdivider /*String*/ (ba,_listview1,__c.Colors.LightGray,(int) (2)); - //BA.debugLineNum = 64;BA.debugLine="If Not(l_rutaInfo.Visible) Then"; + //BA.debugLineNum = 65;BA.debugLine="If Not(l_rutaInfo.Visible) Then"; if (__c.Not(_l_rutainfo.getVisible())) { - //BA.debugLineNum = 65;BA.debugLine="ListView1.Top = lv1Top"; + //BA.debugLineNum = 66;BA.debugLine="ListView1.Top = lv1Top"; _listview1.setTop((int)(Double.parseDouble(_lv1top))); }else { - //BA.debugLineNum = 67;BA.debugLine="ListView1.Top = lv1Top + 100"; + //BA.debugLineNum = 68;BA.debugLine="ListView1.Top = lv1Top + 100"; _listview1.setTop((int) ((double)(Double.parseDouble(_lv1top))+100)); }; - //BA.debugLineNum = 69;BA.debugLine="c=Starter.skmt.ExecQuery(\"select codigo, indice,"; + //BA.debugLineNum = 70;BA.debugLine="c=Starter.skmt.ExecQuery(\"select codigo, indice,"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select codigo, indice, CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_NOEXT from waypoints inner join kmt_info on waypoints.codigo = kmt_info.CAT_CL_CODIGO where gestion = 0 AND CAT_CL_RUTA <> 1000 order by indice"))); - //BA.debugLineNum = 70;BA.debugLine="If c.RowCount > 0 Then 'Ya hay waypoints en la ba"; + //BA.debugLineNum = 71;BA.debugLine="If c.RowCount > 0 Then 'Ya hay waypoints en la ba"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 71;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 72;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 73;BA.debugLine="conMapa = True"; + //BA.debugLineNum = 74;BA.debugLine="conMapa = True"; _conmapa = __c.True; - //BA.debugLineNum = 75;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 76;BA.debugLine="ListView1.Clear"; _listview1.Clear(); - //BA.debugLineNum = 76;BA.debugLine="Dim cs, cs2 As CSBuilder"; + //BA.debugLineNum = 77;BA.debugLine="Dim cs, cs2 As CSBuilder"; _cs = new anywheresoftware.b4a.objects.CSBuilder(); _cs2 = new anywheresoftware.b4a.objects.CSBuilder(); - //BA.debugLineNum = 77;BA.debugLine="entro = 3"; + //BA.debugLineNum = 78;BA.debugLine="entro = 3"; _entro = BA.NumberToString(3); - //BA.debugLineNum = 79;BA.debugLine="For i=0 To c.RowCount -1 'Generamos el listView"; + //BA.debugLineNum = 80;BA.debugLine="For i=0 To c.RowCount -1 'Generamos el listView"; { final int step23 = 1; final int limit23 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit23 ;_i = _i + step23 ) { - //BA.debugLineNum = 80;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 81;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 81;BA.debugLine="cs.Initialize"; + //BA.debugLineNum = 82;BA.debugLine="cs.Initialize"; _cs.Initialize(); - //BA.debugLineNum = 82;BA.debugLine="cs2.Initialize"; + //BA.debugLineNum = 83;BA.debugLine="cs2.Initialize"; _cs2.Initialize(); - //BA.debugLineNum = 86;BA.debugLine="ListView1.AddTwoLines(cs.Color(Colors.RGB(100,1"; + //BA.debugLineNum = 87;BA.debugLine="ListView1.AddTwoLines(cs.Color(Colors.RGB(100,1"; _listview1.AddTwoLines(BA.ObjectToCharSequence(_cs.Color(__c.Colors.RGB((int) (100),(int) (149),(int) (237))).Append(BA.ObjectToCharSequence(_c.GetString("codigo"))).PopAll().getObject()),BA.ObjectToCharSequence(_cs2.Append(BA.ObjectToCharSequence(_c.GetString("CAT_CL_NOMBRE"))).Color(__c.Colors.RGB((int) (100),(int) (149),(int) (237))).Append(BA.ObjectToCharSequence(" Calle: ")).Pop().Append(BA.ObjectToCharSequence(_c.GetString("CAT_CL_CALLE").trim()+" "+_c.GetString("CAT_CL_NOEXT"))).PopAll().getObject())); } }; }else { - //BA.debugLineNum = 89;BA.debugLine="generaListViewRutas"; + //BA.debugLineNum = 90;BA.debugLine="generaListViewRutas"; _generalistviewrutas(); }; - //BA.debugLineNum = 91;BA.debugLine="c.Close"; + //BA.debugLineNum = 92;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 92;BA.debugLine="p_colonia.Width = Root.Width"; + //BA.debugLineNum = 93;BA.debugLine="p_colonia.Width = Root.Width"; _p_colonia.setWidth(_root.getWidth()); - //BA.debugLineNum = 93;BA.debugLine="p_colonia.Height = Root.Height"; + //BA.debugLineNum = 94;BA.debugLine="p_colonia.Height = Root.Height"; _p_colonia.setHeight(_root.getHeight()); - //BA.debugLineNum = 94;BA.debugLine="Subs.centraEtiqueta(l_rutaInfo, Root.Width)"; + //BA.debugLineNum = 95;BA.debugLine="Subs.centraEtiqueta(l_rutaInfo, Root.Width)"; _subs._centraetiqueta /*String*/ (ba,_l_rutainfo,_root.getWidth()); - //BA.debugLineNum = 95;BA.debugLine="Subs.centraListView(ListView1, p_colonia.Width)"; + //BA.debugLineNum = 96;BA.debugLine="Subs.centraListView(ListView1, p_colonia.Width)"; _subs._centralistview /*String*/ (ba,_listview1,_p_colonia.getWidth()); - //BA.debugLineNum = 96;BA.debugLine="ListView1.Height = p_colonia.Height * 0.70"; + //BA.debugLineNum = 97;BA.debugLine="ListView1.Height = p_colonia.Height * 0.70"; _listview1.setHeight((int) (_p_colonia.getHeight()*0.70)); - //BA.debugLineNum = 97;BA.debugLine="Subs.centraEtiqueta(lfila, Root.Width)"; + //BA.debugLineNum = 98;BA.debugLine="Subs.centraEtiqueta(lfila, Root.Width)"; _subs._centraetiqueta /*String*/ (ba,_lfila,_root.getWidth()); - //BA.debugLineNum = 98;BA.debugLine="b_getRutaInfo.Visible = True"; + //BA.debugLineNum = 99;BA.debugLine="b_getRutaInfo.Visible = True"; _b_getrutainfo.setVisible(__c.True); - //BA.debugLineNum = 99;BA.debugLine="b_getRutaInfo.BringToFront"; + //BA.debugLineNum = 100;BA.debugLine="b_getRutaInfo.BringToFront"; _b_getrutainfo.BringToFront(); - //BA.debugLineNum = 100;BA.debugLine="If Starter.cedisLocation.Latitude = \"0\" Then"; + //BA.debugLineNum = 101;BA.debugLine="If Starter.cedisLocation.Latitude = \"0\" Then"; if (_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()==(double)(Double.parseDouble("0"))) { - //BA.debugLineNum = 101;BA.debugLine="Private x As Cursor = Starter.skmt.ExecQuery(\"se"; + //BA.debugLineNum = 102;BA.debugLine="Private x As Cursor = Starter.skmt.ExecQuery(\"se"; _x = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _x = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select * from CAT_VARIABLES where CAT_VA_DESCRIPCION = 'COORDS_ALMACEN'"))); - //BA.debugLineNum = 102;BA.debugLine="If x.RowCount > 0 Then"; + //BA.debugLineNum = 103;BA.debugLine="If x.RowCount > 0 Then"; if (_x.getRowCount()>0) { - //BA.debugLineNum = 103;BA.debugLine="x.Position = 0"; + //BA.debugLineNum = 104;BA.debugLine="x.Position = 0"; _x.setPosition((int) (0)); - //BA.debugLineNum = 104;BA.debugLine="Private y() As String"; + //BA.debugLineNum = 105;BA.debugLine="Private y() As String"; _y = new String[(int) (0)]; java.util.Arrays.fill(_y,""); - //BA.debugLineNum = 105;BA.debugLine="Starter.cedisLocation.Latitude = Regex.Split(\","; + //BA.debugLineNum = 106;BA.debugLine="Starter.cedisLocation.Latitude = Regex.Split(\","; _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .setLatitude((double)(Double.parseDouble(__c.Regex.Split(",",_x.GetString("CAT_VA_VALOR"))[(int) (1)]))); - //BA.debugLineNum = 106;BA.debugLine="Starter.cedisLocation.Longitude = Regex.Split(\""; + //BA.debugLineNum = 107;BA.debugLine="Starter.cedisLocation.Longitude = Regex.Split(\""; _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .setLongitude((double)(Double.parseDouble(__c.Regex.Split(",",_x.GetString("CAT_VA_VALOR"))[(int) (0)]))); }; }; - //BA.debugLineNum = 109;BA.debugLine="Log(Starter.cedisLocation)"; -__c.LogImpl("89895996",BA.ObjectToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ ),0); - //BA.debugLineNum = 110;BA.debugLine="End Sub"; + //BA.debugLineNum = 110;BA.debugLine="Log(Starter.cedisLocation)"; +__c.LogImpl("245547580",BA.ObjectToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ ),0); + //BA.debugLineNum = 111;BA.debugLine="End Sub"; return ""; } public anywheresoftware.b4a.keywords.Common.ResumableSubWrapper _b4xpage_closerequest() throws Exception{ @@ -536,9 +537,9 @@ parent.__c.ReturnFromResumableSub(this,null);return;} case 0: //C this.state = 1; - //BA.debugLineNum = 116;BA.debugLine="Log(entro)"; -parent.__c.LogImpl("89961475",parent._entro,0); - //BA.debugLineNum = 117;BA.debugLine="If rutaGenerada Or entro = 3 Then ' Si ya generam"; + //BA.debugLineNum = 117;BA.debugLine="Log(entro)"; +parent.__c.LogImpl("245613059",parent._entro,0); + //BA.debugLineNum = 118;BA.debugLine="If rutaGenerada Or entro = 3 Then ' Si ya generam"; if (true) break; case 1: @@ -553,18 +554,18 @@ this.state = 5; case 3: //C this.state = 6; - //BA.debugLineNum = 118;BA.debugLine="b_limpiarRuta_Click"; + //BA.debugLineNum = 119;BA.debugLine="b_limpiarRuta_Click"; parent._b_limpiarruta_click(); - //BA.debugLineNum = 119;BA.debugLine="l_rutaInfo.Text = \"\""; + //BA.debugLineNum = 120;BA.debugLine="l_rutaInfo.Text = \"\""; parent._l_rutainfo.setText(BA.ObjectToCharSequence("")); - //BA.debugLineNum = 120;BA.debugLine="rutaGenerada = False"; + //BA.debugLineNum = 121;BA.debugLine="rutaGenerada = False"; parent._rutagenerada = parent.__c.False; if (true) break; case 5: //C this.state = 6; - //BA.debugLineNum = 122;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; + //BA.debugLineNum = 123;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; parent._b4xpages._showpage /*String*/ (ba,"Principal"); if (true) break; @@ -572,10 +573,10 @@ case 6: //C this.state = -1; ; - //BA.debugLineNum = 124;BA.debugLine="Return False"; + //BA.debugLineNum = 125;BA.debugLine="Return False"; if (true) { parent.__c.ReturnFromResumableSub(this,(Object)(parent.__c.False));return;}; - //BA.debugLineNum = 125;BA.debugLine="End Sub"; + //BA.debugLineNum = 126;BA.debugLine="End Sub"; if (true) break; } @@ -583,75 +584,75 @@ if (true) break; } } public String _b4xpage_created(anywheresoftware.b4a.objects.B4XViewWrapper _root1) throws Exception{ - //BA.debugLineNum = 36;BA.debugLine="Private Sub B4XPage_Created (Root1 As B4XView)"; - //BA.debugLineNum = 37;BA.debugLine="Root = Root1"; + //BA.debugLineNum = 37;BA.debugLine="Private Sub B4XPage_Created (Root1 As B4XView)"; + //BA.debugLineNum = 38;BA.debugLine="Root = Root1"; _root = _root1; - //BA.debugLineNum = 39;BA.debugLine="Root.LoadLayout(\"clientes\")"; + //BA.debugLineNum = 40;BA.debugLine="Root.LoadLayout(\"clientes\")"; _root.LoadLayout("clientes",ba); - //BA.debugLineNum = 40;BA.debugLine="entro =\"2\""; + //BA.debugLineNum = 41;BA.debugLine="entro =\"2\""; _entro = "2"; - //BA.debugLineNum = 41;BA.debugLine="lv1Top = ListView1.Top"; + //BA.debugLineNum = 42;BA.debugLine="lv1Top = ListView1.Top"; _lv1top = BA.NumberToString(_listview1.getTop()); - //BA.debugLineNum = 42;BA.debugLine="clientesMapaO.Initialize"; + //BA.debugLineNum = 43;BA.debugLine="clientesMapaO.Initialize"; _clientesmapao._initialize /*String*/ (ba); - //BA.debugLineNum = 43;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints\""; + //BA.debugLineNum = 44;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from waypoints"); - //BA.debugLineNum = 44;BA.debugLine="Log(\"Coordenadas del almacen: \" & Starter.cedisLo"; -__c.LogImpl("89830408","Coordenadas del almacen: "+BA.NumberToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude())+","+BA.NumberToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()),0); - //BA.debugLineNum = 45;BA.debugLine="End Sub"; + //BA.debugLineNum = 45;BA.debugLine="Log(\"Coordenadas del almacen: \" & Starter.cedisLo"; +__c.LogImpl("245481992","Coordenadas del almacen: "+BA.NumberToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude())+","+BA.NumberToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()),0); + //BA.debugLineNum = 46;BA.debugLine="End Sub"; return ""; } public String _busca_textchanged(String _old,String _new) throws Exception{ int _i = 0; anywheresoftware.b4a.objects.LabelWrapper _label1 = null; anywheresoftware.b4a.objects.LabelWrapper _label2 = null; - //BA.debugLineNum = 235;BA.debugLine="Sub BUSCA_TextChanged (Old As String, New As Strin"; - //BA.debugLineNum = 236;BA.debugLine="q_buscar = \"%\" & busca.Text & \"%\""; + //BA.debugLineNum = 250;BA.debugLine="Sub BUSCA_TextChanged (Old As String, New As Strin"; + //BA.debugLineNum = 251;BA.debugLine="q_buscar = \"%\" & busca.Text & \"%\""; _q_buscar = "%"+_busca.getText()+"%"; - //BA.debugLineNum = 237;BA.debugLine="c2=Starter.skmt.ExecQuery2(\"select CAT_CL_NOMBRE"; + //BA.debugLineNum = 252;BA.debugLine="c2=Starter.skmt.ExecQuery2(\"select CAT_CL_NOMBRE"; _c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("select CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_CODIGO from kmt_info where CAT_CL_NOMBRE like ? and gestion = 0 AND CAT_CL_RUTA <> 1000 order by CAT_CL_CODIGO ",new String[]{_q_buscar}))); - //BA.debugLineNum = 238;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 253;BA.debugLine="ListView1.Clear"; _listview1.Clear(); - //BA.debugLineNum = 239;BA.debugLine="lfila.text = \"Nombre y Calle\""; + //BA.debugLineNum = 254;BA.debugLine="lfila.text = \"Nombre y Calle\""; _lfila.setText(BA.ObjectToCharSequence("Nombre y Calle")); - //BA.debugLineNum = 240;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; + //BA.debugLineNum = 255;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; _subs._setdivider /*String*/ (ba,_listview1,__c.Colors.LightGray,(int) (2)); - //BA.debugLineNum = 241;BA.debugLine="If c2.RowCount>0 Then"; + //BA.debugLineNum = 256;BA.debugLine="If c2.RowCount>0 Then"; if (_c2.getRowCount()>0) { - //BA.debugLineNum = 242;BA.debugLine="For i=0 To c2.RowCount -1"; + //BA.debugLineNum = 257;BA.debugLine="For i=0 To c2.RowCount -1"; { final int step7 = 1; final int limit7 = (int) (_c2.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit7 ;_i = _i + step7 ) { - //BA.debugLineNum = 243;BA.debugLine="c2.Position=i"; + //BA.debugLineNum = 258;BA.debugLine="c2.Position=i"; _c2.setPosition(_i); - //BA.debugLineNum = 244;BA.debugLine="Dim label1 As Label"; + //BA.debugLineNum = 259;BA.debugLine="Dim label1 As Label"; _label1 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 245;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; + //BA.debugLineNum = 260;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; _label1 = _listview1.getTwoLinesLayout().Label; - //BA.debugLineNum = 246;BA.debugLine="label1.TextSize = 15"; + //BA.debugLineNum = 261;BA.debugLine="label1.TextSize = 15"; _label1.setTextSize((float) (15)); - //BA.debugLineNum = 247;BA.debugLine="label1.TextColor = Colors.Black"; + //BA.debugLineNum = 262;BA.debugLine="label1.TextColor = Colors.Black"; _label1.setTextColor(__c.Colors.Black); - //BA.debugLineNum = 248;BA.debugLine="Dim label2 As Label"; + //BA.debugLineNum = 263;BA.debugLine="Dim label2 As Label"; _label2 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 249;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; + //BA.debugLineNum = 264;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; _label2 = _listview1.getTwoLinesLayout().SecondLabel; - //BA.debugLineNum = 250;BA.debugLine="label2.TextSize = 15"; + //BA.debugLineNum = 265;BA.debugLine="label2.TextSize = 15"; _label2.setTextSize((float) (15)); - //BA.debugLineNum = 251;BA.debugLine="label2.TextColor = Colors.Black"; + //BA.debugLineNum = 266;BA.debugLine="label2.TextColor = Colors.Black"; _label2.setTextColor(__c.Colors.Black); - //BA.debugLineNum = 252;BA.debugLine="ListView1.AddTwoLines(c2.GetString(\"CAT_CL_CODI"; + //BA.debugLineNum = 267;BA.debugLine="ListView1.AddTwoLines(c2.GetString(\"CAT_CL_CODI"; _listview1.AddTwoLines(BA.ObjectToCharSequence(_c2.GetString("CAT_CL_CODIGO")),BA.ObjectToCharSequence(_c2.GetString("CAT_CL_NOMBRE")+" CALLE: "+_c2.GetString("CAT_CL_CALLE"))); } }; }; - //BA.debugLineNum = 255;BA.debugLine="entro = \"3\""; + //BA.debugLineNum = 270;BA.debugLine="entro = \"3\""; _entro = "3"; - //BA.debugLineNum = 256;BA.debugLine="c2.Close"; + //BA.debugLineNum = 271;BA.debugLine="c2.Close"; _c2.Close(); - //BA.debugLineNum = 257;BA.debugLine="End Sub"; + //BA.debugLineNum = 272;BA.debugLine="End Sub"; return ""; } public void _cacularutagps(anywheresoftware.b4a.objects.collections.List _coords) throws Exception{ @@ -698,22 +699,22 @@ return; case 0: //C this.state = 1; - //BA.debugLineNum = 592;BA.debugLine="Private tmpList As List"; + //BA.debugLineNum = 607;BA.debugLine="Private tmpList As List"; _tmplist = new anywheresoftware.b4a.objects.collections.List(); - //BA.debugLineNum = 593;BA.debugLine="Dim cs, cs2 As CSBuilder"; + //BA.debugLineNum = 608;BA.debugLine="Dim cs, cs2 As CSBuilder"; _cs = new anywheresoftware.b4a.objects.CSBuilder(); _cs2 = new anywheresoftware.b4a.objects.CSBuilder(); - //BA.debugLineNum = 594;BA.debugLine="tmpList.Initialize"; + //BA.debugLineNum = 609;BA.debugLine="tmpList.Initialize"; _tmplist.Initialize(); - //BA.debugLineNum = 595;BA.debugLine="tmpList.AddAll(Array As String(\"ACTUAL\", Tracker."; + //BA.debugLineNum = 610;BA.debugLine="tmpList.AddAll(Array As String(\"ACTUAL\", Tracker."; _tmplist.AddAll(anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{"ACTUAL",BA.NumberToString(parent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()),BA.NumberToString(parent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude())})); - //BA.debugLineNum = 596;BA.debugLine="coords.InsertAt(0,tmpList)"; + //BA.debugLineNum = 611;BA.debugLine="coords.InsertAt(0,tmpList)"; _coords.InsertAt((int) (0),(Object)(_tmplist.getObject())); - //BA.debugLineNum = 597;BA.debugLine="Log(\"=================================\")"; -parent.__c.LogImpl("810747910","=================================",0); - //BA.debugLineNum = 599;BA.debugLine="Private coordsStr As String = \"\""; + //BA.debugLineNum = 612;BA.debugLine="Log(\"=================================\")"; +parent.__c.LogImpl("246399494","=================================",0); + //BA.debugLineNum = 614;BA.debugLine="Private coordsStr As String = \"\""; _coordsstr = ""; - //BA.debugLineNum = 600;BA.debugLine="For Each tienda As List In coords"; + //BA.debugLineNum = 615;BA.debugLine="For Each tienda As List In coords"; if (true) break; case 1: @@ -743,7 +744,7 @@ if (true) break; case 3: //C this.state = 4; - //BA.debugLineNum = 602;BA.debugLine="If coordsStr = \"\" Then"; + //BA.debugLineNum = 617;BA.debugLine="If coordsStr = \"\" Then"; if (true) break; case 4: @@ -758,14 +759,14 @@ this.state = 8; case 6: //C this.state = 9; - //BA.debugLineNum = 603;BA.debugLine="coordsStr = $\"${tienda.get(0)},${tienda.get(1)}"; + //BA.debugLineNum = 618;BA.debugLine="coordsStr = $\"${tienda.get(0)},${tienda.get(1)}"; _coordsstr = (""+parent.__c.SmartStringFormatter("",_tienda.Get((int) (0)))+","+parent.__c.SmartStringFormatter("",_tienda.Get((int) (1)))+","+parent.__c.SmartStringFormatter("",_tienda.Get((int) (2)))+""); if (true) break; case 8: //C this.state = 9; - //BA.debugLineNum = 605;BA.debugLine="coordsStr = $\"${coordsStr};${tienda.get(0)},${t"; + //BA.debugLineNum = 620;BA.debugLine="coordsStr = $\"${coordsStr};${tienda.get(0)},${t"; _coordsstr = (""+parent.__c.SmartStringFormatter("",(Object)(_coordsstr))+";"+parent.__c.SmartStringFormatter("",_tienda.Get((int) (0)))+","+parent.__c.SmartStringFormatter("",_tienda.Get((int) (1)))+","+parent.__c.SmartStringFormatter("",_tienda.Get((int) (2)))+""); if (true) break; @@ -780,19 +781,19 @@ case 10: //C this.state = 11; ; - //BA.debugLineNum = 608;BA.debugLine="Log(coordsStr)"; -parent.__c.LogImpl("810747921",_coordsstr,0); - //BA.debugLineNum = 609;BA.debugLine="ProgressDialogShow2(\"Calculando distancia y tiemp"; + //BA.debugLineNum = 623;BA.debugLine="Log(coordsStr)"; +parent.__c.LogImpl("246399505",_coordsstr,0); + //BA.debugLineNum = 624;BA.debugLine="ProgressDialogShow2(\"Calculando distancia y tiemp"; parent.__c.ProgressDialogShow2(ba,BA.ObjectToCharSequence("Calculando distancia y tiempo, un momento por favor."),parent.__c.False); - //BA.debugLineNum = 610;BA.debugLine="Dim j As HttpJob"; + //BA.debugLineNum = 625;BA.debugLine="Dim j As HttpJob"; _j = new reparto_intmex.keymon.lat.httpjob(); - //BA.debugLineNum = 611;BA.debugLine="j.Initialize(\"trip\", Me) 'Calculamos el resto de"; + //BA.debugLineNum = 626;BA.debugLine="j.Initialize(\"trip\", Me) 'Calculamos el resto de"; _j._initialize /*String*/ (ba,"trip",parent); - //BA.debugLineNum = 612;BA.debugLine="j.Download($\"http://keymon.lat:9002/ruteador?m=OS"; + //BA.debugLineNum = 627;BA.debugLine="j.Download($\"http://keymon.lat:9002/ruteador?m=OS"; _j._download /*String*/ (("http://keymon.lat:9002/ruteador?m=OSRM&r="+parent.__c.SmartStringFormatter("",(Object)(parent._subs._traerutareparto /*String*/ (ba)))+"&a="+parent.__c.SmartStringFormatter("",(Object)(parent._subs._traealmacen /*String*/ (ba)))+"&f=CEDIS,"+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()))+","+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()))+"&c="+parent.__c.SmartStringFormatter("",(Object)(_coordsstr))+"")); - //BA.debugLineNum = 613;BA.debugLine="Log($\"http://keymon.lat:9002/ruteador?m=OSRM&r=${"; -parent.__c.LogImpl("810747926",("http://keymon.lat:9002/ruteador?m=OSRM&r="+parent.__c.SmartStringFormatter("",(Object)(parent._subs._traerutareparto /*String*/ (ba)))+"&a="+parent.__c.SmartStringFormatter("",(Object)(parent._subs._traealmacen /*String*/ (ba)))+"&f=CEDIS,"+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()))+","+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()))+"&c="+parent.__c.SmartStringFormatter("",(Object)(_coordsstr))+""),0); - //BA.debugLineNum = 614;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; + //BA.debugLineNum = 628;BA.debugLine="Log($\"http://keymon.lat:9002/ruteador?m=OSRM&r=${"; +parent.__c.LogImpl("246399510",("http://keymon.lat:9002/ruteador?m=OSRM&r="+parent.__c.SmartStringFormatter("",(Object)(parent._subs._traerutareparto /*String*/ (ba)))+"&a="+parent.__c.SmartStringFormatter("",(Object)(parent._subs._traealmacen /*String*/ (ba)))+"&f=CEDIS,"+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()))+","+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()))+"&c="+parent.__c.SmartStringFormatter("",(Object)(_coordsstr))+""),0); + //BA.debugLineNum = 629;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; parent.__c.WaitFor("jobdone", ba, this, (Object)(_j)); this.state = 35; return; @@ -801,7 +802,7 @@ case 35: this.state = 11; _j = (reparto_intmex.keymon.lat.httpjob) result[0]; ; - //BA.debugLineNum = 615;BA.debugLine="If j.Success Then"; + //BA.debugLineNum = 630;BA.debugLine="If j.Success Then"; if (true) break; case 11: @@ -816,16 +817,16 @@ this.state = 31; case 13: //C this.state = 14; - //BA.debugLineNum = 616;BA.debugLine="Dim jp As JSONParser"; + //BA.debugLineNum = 631;BA.debugLine="Dim jp As JSONParser"; _jp = new anywheresoftware.b4a.objects.collections.JSONParser(); - //BA.debugLineNum = 617;BA.debugLine="jp.Initialize(j.GetString)"; + //BA.debugLineNum = 632;BA.debugLine="jp.Initialize(j.GetString)"; _jp.Initialize(_j._getstring /*String*/ ()); - //BA.debugLineNum = 618;BA.debugLine="Dim m As Map = jp.NextObject"; + //BA.debugLineNum = 633;BA.debugLine="Dim m As Map = jp.NextObject"; _m = new anywheresoftware.b4a.objects.collections.Map(); _m = _jp.NextObject(); - //BA.debugLineNum = 619;BA.debugLine="Log(m)"; -parent.__c.LogImpl("810747932",BA.ObjectToString(_m),0); - //BA.debugLineNum = 620;BA.debugLine="If m.Get(\"code\") = \"OK\" Then"; + //BA.debugLineNum = 634;BA.debugLine="Log(m)"; +parent.__c.LogImpl("246399516",BA.ObjectToString(_m),0); + //BA.debugLineNum = 635;BA.debugLine="If m.Get(\"code\") = \"OK\" Then"; if (true) break; case 14: @@ -838,26 +839,26 @@ this.state = 16; case 16: //C this.state = 17; - //BA.debugLineNum = 621;BA.debugLine="Log(\"===== OK\")"; -parent.__c.LogImpl("810747934","===== OK",0); - //BA.debugLineNum = 622;BA.debugLine="rutaGenerada = True"; + //BA.debugLineNum = 636;BA.debugLine="Log(\"===== OK\")"; +parent.__c.LogImpl("246399518","===== OK",0); + //BA.debugLineNum = 637;BA.debugLine="rutaGenerada = True"; parent._rutagenerada = parent.__c.True; - //BA.debugLineNum = 623;BA.debugLine="Dim puntos As Int = m.Get(\"puntos\")"; + //BA.debugLineNum = 638;BA.debugLine="Dim puntos As Int = m.Get(\"puntos\")"; _puntos = (int)(BA.ObjectToNumber(_m.Get((Object)("puntos")))); - //BA.debugLineNum = 624;BA.debugLine="Private coords As List = m.Get(\"coords\")"; + //BA.debugLineNum = 639;BA.debugLine="Private coords As List = m.Get(\"coords\")"; _coords = new anywheresoftware.b4a.objects.collections.List(); _coords = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_m.Get((Object)("coords")))); - //BA.debugLineNum = 625;BA.debugLine="Private duration As String = m.Get(\"duration\")"; + //BA.debugLineNum = 640;BA.debugLine="Private duration As String = m.Get(\"duration\")"; _duration = BA.ObjectToString(_m.Get((Object)("duration"))); - //BA.debugLineNum = 626;BA.debugLine="Private distance As String = m.Get(\"distance\")"; + //BA.debugLineNum = 641;BA.debugLine="Private distance As String = m.Get(\"distance\")"; _distance = BA.ObjectToString(_m.Get((Object)("distance"))); - //BA.debugLineNum = 627;BA.debugLine="Private mensaje As String = m.Get(\"mensaje\")"; + //BA.debugLineNum = 642;BA.debugLine="Private mensaje As String = m.Get(\"mensaje\")"; _mensaje = BA.ObjectToString(_m.Get((Object)("mensaje"))); - //BA.debugLineNum = 628;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoint"; + //BA.debugLineNum = 643;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoint"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from waypoints"); - //BA.debugLineNum = 629;BA.debugLine="Starter.skmt.ExecNonQuery(\"update kmt_info set"; + //BA.debugLineNum = 644;BA.debugLine="Starter.skmt.ExecNonQuery(\"update kmt_info set"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("update kmt_info set SECUENCIA = 0"); - //BA.debugLineNum = 630;BA.debugLine="For i = 0 To coords.Size - 1"; + //BA.debugLineNum = 645;BA.debugLine="For i = 0 To coords.Size - 1"; if (true) break; case 17: @@ -884,12 +885,12 @@ if (true) break; case 19: //C this.state = 37; - //BA.debugLineNum = 631;BA.debugLine="Private ti As Map = coords.Get(i)"; + //BA.debugLineNum = 646;BA.debugLine="Private ti As Map = coords.Get(i)"; _ti = new anywheresoftware.b4a.objects.collections.Map(); _ti = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_coords.Get(_i))); - //BA.debugLineNum = 632;BA.debugLine="Starter.skmt.ExecNonQuery($\"update kmt_info se"; + //BA.debugLineNum = 647;BA.debugLine="Starter.skmt.ExecNonQuery($\"update kmt_info se"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update kmt_info set SECUENCIA = "+parent.__c.SmartStringFormatter("",_ti.Get((Object)("pos")))+" where CAT_CL_CODIGO = '"+parent.__c.SmartStringFormatter("",(Object)((BA.ObjectToString(_ti.Get((Object)("id")))).substring((int) (1))))+"'")); - //BA.debugLineNum = 633;BA.debugLine="Starter.skmt.ExecNonQuery($\"insert into waypoi"; + //BA.debugLineNum = 648;BA.debugLine="Starter.skmt.ExecNonQuery($\"insert into waypoi"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("insert into waypoints (codigo, indice) values ('"+parent.__c.SmartStringFormatter("",(Object)((BA.ObjectToString(_ti.Get((Object)("id")))).substring((int) (1))))+"', '"+parent.__c.SmartStringFormatter("",_ti.Get((Object)("pos")))+"')")); if (true) break; if (true) break; @@ -898,9 +899,9 @@ case 20: //C this.state = 21; ; - //BA.debugLineNum = 635;BA.debugLine="c = Starter.skmt.ExecQuery(\"select codigo, indi"; + //BA.debugLineNum = 650;BA.debugLine="c = Starter.skmt.ExecQuery(\"select codigo, indi"; parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select codigo, indice, CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_NOEXT from waypoints inner join kmt_info on waypoints.codigo = kmt_info.CAT_CL_CODIGO where gestion = 0 AND CAT_CL_RUTA <> 1000 order by indice"))); - //BA.debugLineNum = 636;BA.debugLine="If c.RowCount > 0 Then 'Ya hay waypoints en la"; + //BA.debugLineNum = 651;BA.debugLine="If c.RowCount > 0 Then 'Ya hay waypoints en la"; if (true) break; case 21: @@ -913,18 +914,18 @@ this.state = 23; case 23: //C this.state = 24; - //BA.debugLineNum = 637;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 652;BA.debugLine="c.Position = 0"; parent._c.setPosition((int) (0)); - //BA.debugLineNum = 638;BA.debugLine="conMapa = True"; + //BA.debugLineNum = 653;BA.debugLine="conMapa = True"; parent._conmapa = parent.__c.True; - //BA.debugLineNum = 639;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 654;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); - //BA.debugLineNum = 640;BA.debugLine="Dim cs, cs2 As CSBuilder"; + //BA.debugLineNum = 655;BA.debugLine="Dim cs, cs2 As CSBuilder"; _cs = new anywheresoftware.b4a.objects.CSBuilder(); _cs2 = new anywheresoftware.b4a.objects.CSBuilder(); - //BA.debugLineNum = 641;BA.debugLine="entro = 3"; + //BA.debugLineNum = 656;BA.debugLine="entro = 3"; parent._entro = BA.NumberToString(3); - //BA.debugLineNum = 642;BA.debugLine="For i=0 To c.RowCount -1 'Generamos el listVie"; + //BA.debugLineNum = 657;BA.debugLine="For i=0 To c.RowCount -1 'Generamos el listVie"; if (true) break; case 24: @@ -951,13 +952,13 @@ if (true) break; case 26: //C this.state = 39; - //BA.debugLineNum = 643;BA.debugLine="c.Position = i"; + //BA.debugLineNum = 658;BA.debugLine="c.Position = i"; parent._c.setPosition(_i); - //BA.debugLineNum = 644;BA.debugLine="cs.Initialize"; + //BA.debugLineNum = 659;BA.debugLine="cs.Initialize"; _cs.Initialize(); - //BA.debugLineNum = 645;BA.debugLine="cs2.Initialize"; + //BA.debugLineNum = 660;BA.debugLine="cs2.Initialize"; _cs2.Initialize(); - //BA.debugLineNum = 646;BA.debugLine="ListView1.AddTwoLines(cs.Color(Colors.RGB(100"; + //BA.debugLineNum = 661;BA.debugLine="ListView1.AddTwoLines(cs.Color(Colors.RGB(100"; parent._listview1.AddTwoLines(BA.ObjectToCharSequence(_cs.Color(parent.__c.Colors.RGB((int) (100),(int) (149),(int) (237))).Append(BA.ObjectToCharSequence(parent._c.GetString("codigo"))).PopAll().getObject()),BA.ObjectToCharSequence(_cs2.Append(BA.ObjectToCharSequence(parent._c.GetString("CAT_CL_NOMBRE"))).Color(parent.__c.Colors.RGB((int) (100),(int) (149),(int) (237))).Append(BA.ObjectToCharSequence(" Calle: ")).Pop().Append(BA.ObjectToCharSequence(parent._c.GetString("CAT_CL_CALLE").trim()+" "+parent._c.GetString("CAT_CL_NOEXT"))).PopAll().getObject())); if (true) break; if (true) break; @@ -972,21 +973,21 @@ case 28: //C this.state = 29; ; - //BA.debugLineNum = 649;BA.debugLine="c.Close"; + //BA.debugLineNum = 664;BA.debugLine="c.Close"; parent._c.Close(); - //BA.debugLineNum = 650;BA.debugLine="Log($\"Distancia total: $1.1{distance/1000} kms,"; -parent.__c.LogImpl("810747963",("Distancia total: "+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_distance))/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_duration))/(double)60))+" mins. ("+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_duration))/(double)60/(double)60))+" hrs)"),0); - //BA.debugLineNum = 651;BA.debugLine="l_rutaInfo.Text = $\"Distancia: $1.1{distance/10"; + //BA.debugLineNum = 665;BA.debugLine="Log($\"Distancia total: $1.1{distance/1000} kms,"; +parent.__c.LogImpl("246399547",("Distancia total: "+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_distance))/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_duration))/(double)60))+" mins. ("+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_duration))/(double)60/(double)60))+" hrs)"),0); + //BA.debugLineNum = 666;BA.debugLine="l_rutaInfo.Text = $\"Distancia: $1.1{distance/10"; parent._l_rutainfo.setText(BA.ObjectToCharSequence(("Distancia: "+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_distance))/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)((double)(Double.parseDouble(_duration))/(double)60/(double)60))+" hrs"+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+"Visitas restantes: "+parent.__c.SmartStringFormatter("",(Object)(_puntos-1))+""))); - //BA.debugLineNum = 652;BA.debugLine="l_rutaInfo.Width = Root.Width * 0.9"; + //BA.debugLineNum = 667;BA.debugLine="l_rutaInfo.Width = Root.Width * 0.9"; parent._l_rutainfo.setWidth((int) (parent._root.getWidth()*0.9)); - //BA.debugLineNum = 653;BA.debugLine="Subs.centraEtiqueta(l_rutaInfo, Root.Width)"; + //BA.debugLineNum = 668;BA.debugLine="Subs.centraEtiqueta(l_rutaInfo, Root.Width)"; parent._subs._centraetiqueta /*String*/ (ba,parent._l_rutainfo,parent._root.getWidth()); - //BA.debugLineNum = 654;BA.debugLine="l_rutaInfo.Visible = True"; + //BA.debugLineNum = 669;BA.debugLine="l_rutaInfo.Visible = True"; parent._l_rutainfo.setVisible(parent.__c.True); - //BA.debugLineNum = 655;BA.debugLine="l_rutaInfo.BringToFront"; + //BA.debugLineNum = 670;BA.debugLine="l_rutaInfo.BringToFront"; parent._l_rutainfo.BringToFront(); - //BA.debugLineNum = 656;BA.debugLine="ListView1.Top = lv1Top + 100"; + //BA.debugLineNum = 671;BA.debugLine="ListView1.Top = lv1Top + 100"; parent._listview1.setTop((int) ((double)(Double.parseDouble(parent._lv1top))+100)); if (true) break; @@ -999,19 +1000,19 @@ this.state = 32; case 31: //C this.state = 32; - //BA.debugLineNum = 659;BA.debugLine="LogColor(\"**************** Error! ************"; -parent.__c.LogImpl("810747972","**************** Error! ******************",parent.__c.Colors.Red); + //BA.debugLineNum = 674;BA.debugLine="LogColor(\"**************** Error! ************"; +parent.__c.LogImpl("246399556","**************** Error! ******************",parent.__c.Colors.Red); if (true) break; case 32: //C this.state = -1; ; - //BA.debugLineNum = 661;BA.debugLine="j.Release"; + //BA.debugLineNum = 676;BA.debugLine="j.Release"; _j._release /*String*/ (); - //BA.debugLineNum = 662;BA.debugLine="ProgressDialogHide"; + //BA.debugLineNum = 677;BA.debugLine="ProgressDialogHide"; parent.__c.ProgressDialogHide(); - //BA.debugLineNum = 663;BA.debugLine="End Sub"; + //BA.debugLineNum = 678;BA.debugLine="End Sub"; if (true) break; } @@ -1067,7 +1068,9 @@ _b_limpiarruta = new anywheresoftware.b4a.objects.ButtonWrapper(); _rutagenerada = __c.False; //BA.debugLineNum = 27;BA.debugLine="Dim rutaacambiar As String"; _rutaacambiar = ""; - //BA.debugLineNum = 28;BA.debugLine="End Sub"; + //BA.debugLineNum = 28;BA.debugLine="Dim distanciacero as Int = 0"; +_distanciacero = (int) (0); + //BA.debugLineNum = 29;BA.debugLine="End Sub"; return ""; } public anywheresoftware.b4a.keywords.Common.ResumableSubWrapper _distanciaentrecoords(String _id,String _coords1,String _coords2) throws Exception{ @@ -1106,7 +1109,7 @@ parent.__c.ReturnFromResumableSub(this,null);return;} case 0: //C this.state = 1; - //BA.debugLineNum = 263;BA.debugLine="Sleep(1050)"; + //BA.debugLineNum = 278;BA.debugLine="Sleep(1050)"; parent.__c.Sleep(ba,this,(int) (1050)); this.state = 11; return; @@ -1114,17 +1117,17 @@ case 11: //C this.state = 1; ; - //BA.debugLineNum = 264;BA.debugLine="Private distanciaTotal As String = \"0\""; + //BA.debugLineNum = 279;BA.debugLine="Private distanciaTotal As String = \"0\""; _distanciatotal = "0"; - //BA.debugLineNum = 265;BA.debugLine="Private tiempo As String = \"0\""; + //BA.debugLineNum = 280;BA.debugLine="Private tiempo As String = \"0\""; _tiempo = "0"; - //BA.debugLineNum = 266;BA.debugLine="Dim j As HttpJob"; + //BA.debugLineNum = 281;BA.debugLine="Dim j As HttpJob"; _j = new reparto_intmex.keymon.lat.httpjob(); - //BA.debugLineNum = 267;BA.debugLine="j.Initialize(\"\", Me)"; + //BA.debugLineNum = 282;BA.debugLine="j.Initialize(\"\", Me)"; _j._initialize /*String*/ (ba,"",parent); - //BA.debugLineNum = 268;BA.debugLine="j.Download(\"https://router.project-osrm.org/route"; + //BA.debugLineNum = 283;BA.debugLine="j.Download(\"https://router.project-osrm.org/route"; _j._download /*String*/ ("https://router.project-osrm.org/route/v1/driving/"+_coords1+";"+_coords2+"?overview=false"); - //BA.debugLineNum = 269;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; + //BA.debugLineNum = 284;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; parent.__c.WaitFor("jobdone", ba, this, (Object)(_j)); this.state = 12; return; @@ -1133,7 +1136,7 @@ case 12: this.state = 1; _j = (reparto_intmex.keymon.lat.httpjob) result[0]; ; - //BA.debugLineNum = 270;BA.debugLine="If j.Success Then"; + //BA.debugLineNum = 285;BA.debugLine="If j.Success Then"; if (true) break; case 1: @@ -1148,16 +1151,16 @@ this.state = 9; case 3: //C this.state = 4; - //BA.debugLineNum = 271;BA.debugLine="Dim jp As JSONParser"; + //BA.debugLineNum = 286;BA.debugLine="Dim jp As JSONParser"; _jp = new anywheresoftware.b4a.objects.collections.JSONParser(); - //BA.debugLineNum = 272;BA.debugLine="jp.Initialize(j.GetString)"; + //BA.debugLineNum = 287;BA.debugLine="jp.Initialize(j.GetString)"; _jp.Initialize(_j._getstring /*String*/ ()); - //BA.debugLineNum = 273;BA.debugLine="Dim m As Map = jp.NextObject"; + //BA.debugLineNum = 288;BA.debugLine="Dim m As Map = jp.NextObject"; _m = new anywheresoftware.b4a.objects.collections.Map(); _m = _jp.NextObject(); - //BA.debugLineNum = 274;BA.debugLine="Log($\"Respuesta: ${m.Get(\"code\")}\"$)"; -parent.__c.LogImpl("810289164",("Respuesta: "+parent.__c.SmartStringFormatter("",_m.Get((Object)("code")))+""),0); - //BA.debugLineNum = 275;BA.debugLine="If m.Get(\"code\") = \"Ok\" Then"; + //BA.debugLineNum = 289;BA.debugLine="Log($\"Respuesta: ${m.Get(\"code\")}\"$)"; +parent.__c.LogImpl("245940748",("Respuesta: "+parent.__c.SmartStringFormatter("",_m.Get((Object)("code")))+""),0); + //BA.debugLineNum = 290;BA.debugLine="If m.Get(\"code\") = \"Ok\" Then"; if (true) break; case 4: @@ -1170,18 +1173,18 @@ this.state = 6; case 6: //C this.state = 7; - //BA.debugLineNum = 277;BA.debugLine="Dim rutas As List = m.Get(\"routes\")"; + //BA.debugLineNum = 292;BA.debugLine="Dim rutas As List = m.Get(\"routes\")"; _rutas = new anywheresoftware.b4a.objects.collections.List(); _rutas = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_m.Get((Object)("routes")))); - //BA.debugLineNum = 278;BA.debugLine="Dim rutas2 As Map = rutas.Get(0)"; + //BA.debugLineNum = 293;BA.debugLine="Dim rutas2 As Map = rutas.Get(0)"; _rutas2 = new anywheresoftware.b4a.objects.collections.Map(); _rutas2 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_rutas.Get((int) (0)))); - //BA.debugLineNum = 282;BA.debugLine="distanciaTotal = rutas2.Get(\"distance\")"; + //BA.debugLineNum = 297;BA.debugLine="distanciaTotal = rutas2.Get(\"distance\")"; _distanciatotal = BA.ObjectToString(_rutas2.Get((Object)("distance"))); - //BA.debugLineNum = 283;BA.debugLine="tiempo = rutas2.Get(\"duration\")"; + //BA.debugLineNum = 298;BA.debugLine="tiempo = rutas2.Get(\"duration\")"; _tiempo = BA.ObjectToString(_rutas2.Get((Object)("duration"))); - //BA.debugLineNum = 284;BA.debugLine="Log($\"Distancia total: ${distanciaTotal}, Tiemp"; -parent.__c.LogImpl("810289174",("Distancia total: "+parent.__c.SmartStringFormatter("",(Object)(_distanciatotal))+", Tiempo: "+parent.__c.SmartStringFormatter("",(Object)(_tiempo))+""),0); + //BA.debugLineNum = 299;BA.debugLine="Log($\"Distancia total: ${distanciaTotal}, Tiemp"; +parent.__c.LogImpl("245940758",("Distancia total: "+parent.__c.SmartStringFormatter("",(Object)(_distanciatotal))+", Tiempo: "+parent.__c.SmartStringFormatter("",(Object)(_tiempo))+""),0); if (true) break; case 7: @@ -1193,30 +1196,30 @@ this.state = 10; case 9: //C this.state = 10; - //BA.debugLineNum = 287;BA.debugLine="Log(\"Error!\")"; -parent.__c.LogImpl("810289177","Error!",0); + //BA.debugLineNum = 302;BA.debugLine="Log(\"Error!\")"; +parent.__c.LogImpl("245940761","Error!",0); if (true) break; case 10: //C this.state = -1; ; - //BA.debugLineNum = 289;BA.debugLine="j.Release"; + //BA.debugLineNum = 304;BA.debugLine="j.Release"; _j._release /*String*/ (); - //BA.debugLineNum = 290;BA.debugLine="Private r As List"; + //BA.debugLineNum = 305;BA.debugLine="Private r As List"; _r = new anywheresoftware.b4a.objects.collections.List(); - //BA.debugLineNum = 291;BA.debugLine="r.Initialize"; + //BA.debugLineNum = 306;BA.debugLine="r.Initialize"; _r.Initialize(); - //BA.debugLineNum = 292;BA.debugLine="r.Add(id)"; + //BA.debugLineNum = 307;BA.debugLine="r.Add(id)"; _r.Add((Object)(_id)); - //BA.debugLineNum = 293;BA.debugLine="r.Add(distanciaTotal)"; + //BA.debugLineNum = 308;BA.debugLine="r.Add(distanciaTotal)"; _r.Add((Object)(_distanciatotal)); - //BA.debugLineNum = 294;BA.debugLine="r.Add(tiempo)"; + //BA.debugLineNum = 309;BA.debugLine="r.Add(tiempo)"; _r.Add((Object)(_tiempo)); - //BA.debugLineNum = 295;BA.debugLine="Return r"; + //BA.debugLineNum = 310;BA.debugLine="Return r"; if (true) { parent.__c.ReturnFromResumableSub(this,(Object)(_r));return;}; - //BA.debugLineNum = 296;BA.debugLine="End Sub"; + //BA.debugLineNum = 311;BA.debugLine="End Sub"; if (true) break; } @@ -1249,9 +1252,9 @@ return; case 0: //C this.state = 1; - //BA.debugLineNum = 196;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 211;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); - //BA.debugLineNum = 197;BA.debugLine="Sleep(110)"; + //BA.debugLineNum = 212;BA.debugLine="Sleep(110)"; parent.__c.Sleep(ba,this,(int) (110)); this.state = 9; return; @@ -1259,29 +1262,29 @@ case 9: //C this.state = 1; ; - //BA.debugLineNum = 198;BA.debugLine="lfila.Text = \"RUTA PREVENTA\""; + //BA.debugLineNum = 213;BA.debugLine="lfila.Text = \"RUTA PREVENTA\""; parent._lfila.setText(BA.ObjectToCharSequence("RUTA PREVENTA")); - //BA.debugLineNum = 199;BA.debugLine="Dim label1 As Label"; + //BA.debugLineNum = 214;BA.debugLine="Dim label1 As Label"; _label1 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 200;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; + //BA.debugLineNum = 215;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; _label1 = parent._listview1.getTwoLinesLayout().Label; - //BA.debugLineNum = 201;BA.debugLine="label1.TextSize = 15"; + //BA.debugLineNum = 216;BA.debugLine="label1.TextSize = 15"; _label1.setTextSize((float) (15)); - //BA.debugLineNum = 202;BA.debugLine="label1.TextColor = Colors.Black"; + //BA.debugLineNum = 217;BA.debugLine="label1.TextColor = Colors.Black"; _label1.setTextColor(parent.__c.Colors.Black); - //BA.debugLineNum = 203;BA.debugLine="Dim label2 As Label"; + //BA.debugLineNum = 218;BA.debugLine="Dim label2 As Label"; _label2 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 204;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; + //BA.debugLineNum = 219;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; _label2 = parent._listview1.getTwoLinesLayout().SecondLabel; - //BA.debugLineNum = 205;BA.debugLine="label2.TextSize = 15"; + //BA.debugLineNum = 220;BA.debugLine="label2.TextSize = 15"; _label2.setTextSize((float) (15)); - //BA.debugLineNum = 206;BA.debugLine="label2.TextColor = Colors.Black"; + //BA.debugLineNum = 221;BA.debugLine="label2.TextColor = Colors.Black"; _label2.setTextColor(parent.__c.Colors.Black); - //BA.debugLineNum = 207;BA.debugLine="ListView1.TwoLinesLayout.ItemHeight = 60dip"; + //BA.debugLineNum = 222;BA.debugLine="ListView1.TwoLinesLayout.ItemHeight = 60dip"; parent._listview1.getTwoLinesLayout().setItemHeight(parent.__c.DipToCurrent((int) (60))); - //BA.debugLineNum = 208;BA.debugLine="c=Starter.skmt.ExecQuery(\"select CAT_CL_RUTA, cou"; + //BA.debugLineNum = 223;BA.debugLine="c=Starter.skmt.ExecQuery(\"select CAT_CL_RUTA, cou"; parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_RUTA, count(*) as cuantos from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000 group by CAT_CL_RUTA order by CAT_CL_RUTA asc"))); - //BA.debugLineNum = 209;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 224;BA.debugLine="If c.RowCount>0 Then"; if (true) break; case 1: @@ -1294,9 +1297,9 @@ this.state = 3; case 3: //C this.state = 4; - //BA.debugLineNum = 210;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 225;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); - //BA.debugLineNum = 211;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 226;BA.debugLine="For i=0 To c.RowCount -1"; if (true) break; case 4: @@ -1323,9 +1326,9 @@ if (true) break; case 6: //C this.state = 11; - //BA.debugLineNum = 212;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 227;BA.debugLine="c.Position=i"; parent._c.setPosition(_i); - //BA.debugLineNum = 213;BA.debugLine="ListView1.AddTwoLines(\"Ruta: \" & c.GetString(\"C"; + //BA.debugLineNum = 228;BA.debugLine="ListView1.AddTwoLines(\"Ruta: \" & c.GetString(\"C"; parent._listview1.AddTwoLines(BA.ObjectToCharSequence("Ruta: "+parent._c.GetString("CAT_CL_RUTA")),BA.ObjectToCharSequence("Por visitar: "+parent._c.GetString("cuantos"))); if (true) break; if (true) break; @@ -1340,9 +1343,9 @@ case 8: //C this.state = -1; ; - //BA.debugLineNum = 216;BA.debugLine="c.Close"; + //BA.debugLineNum = 231;BA.debugLine="c.Close"; parent._c.Close(); - //BA.debugLineNum = 217;BA.debugLine="End Sub"; + //BA.debugLineNum = 232;BA.debugLine="End Sub"; if (true) break; } @@ -1351,10 +1354,10 @@ if (true) break; } public Object _initialize(anywheresoftware.b4a.BA _ba) throws Exception{ innerInitialize(_ba); - //BA.debugLineNum = 31;BA.debugLine="Public Sub Initialize As Object"; - //BA.debugLineNum = 32;BA.debugLine="Return Me"; + //BA.debugLineNum = 32;BA.debugLine="Public Sub Initialize As Object"; + //BA.debugLineNum = 33;BA.debugLine="Return Me"; if (true) return this; - //BA.debugLineNum = 33;BA.debugLine="End Sub"; + //BA.debugLineNum = 34;BA.debugLine="End Sub"; return null; } public void _listview1_itemclick(int _position,Object _value) throws Exception{ @@ -1381,9 +1384,9 @@ anywheresoftware.b4a.objects.collections.Map _m1 = null; Object _k = null; int step34; int limit34; -anywheresoftware.b4a.BA.IterableList group45; -int index45; -int groupLen45; +anywheresoftware.b4a.BA.IterableList group53; +int index53; +int groupLen53; @Override public void resume(BA ba, Object[] result) throws Exception{ @@ -1396,21 +1399,21 @@ return; case 0: //C this.state = 1; - //BA.debugLineNum = 129;BA.debugLine="Log(Value)"; -parent.__c.LogImpl("810027010",BA.ObjectToString(_value),0); - //BA.debugLineNum = 130;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 130;BA.debugLine="Log(Value)"; +parent.__c.LogImpl("245678594",BA.ObjectToString(_value),0); + //BA.debugLineNum = 131;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); - //BA.debugLineNum = 131;BA.debugLine="Sleep(50)"; + //BA.debugLineNum = 132;BA.debugLine="Sleep(50)"; parent.__c.Sleep(ba,this,(int) (50)); -this.state = 31; +this.state = 37; return; -case 31: +case 37: //C this.state = 1; ; - //BA.debugLineNum = 132;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; + //BA.debugLineNum = 133;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; parent._subs._setdivider /*String*/ (ba,parent._listview1,parent.__c.Colors.LightGray,(int) (2)); - //BA.debugLineNum = 133;BA.debugLine="If Not(l_rutaInfo.Visible) Then"; + //BA.debugLineNum = 134;BA.debugLine="If Not(l_rutaInfo.Visible) Then"; if (true) break; case 1: @@ -1425,14 +1428,14 @@ this.state = 5; case 3: //C this.state = 6; - //BA.debugLineNum = 134;BA.debugLine="ListView1.Top = lv1Top"; + //BA.debugLineNum = 135;BA.debugLine="ListView1.Top = lv1Top"; parent._listview1.setTop((int)(Double.parseDouble(parent._lv1top))); if (true) break; case 5: //C this.state = 6; - //BA.debugLineNum = 136;BA.debugLine="ListView1.Top = lv1Top + 100"; + //BA.debugLineNum = 137;BA.debugLine="ListView1.Top = lv1Top + 100"; parent._listview1.setTop((int) ((double)(Double.parseDouble(parent._lv1top))+100)); if (true) break; @@ -1440,60 +1443,60 @@ case 6: //C this.state = 7; ; - //BA.debugLineNum = 138;BA.debugLine="l_rutaInfo.Visible = False"; + //BA.debugLineNum = 139;BA.debugLine="l_rutaInfo.Visible = False"; parent._l_rutainfo.setVisible(parent.__c.False); - //BA.debugLineNum = 139;BA.debugLine="b_GetDirs.Visible = False"; + //BA.debugLineNum = 140;BA.debugLine="b_GetDirs.Visible = False"; parent._b_getdirs.setVisible(parent.__c.False); - //BA.debugLineNum = 140;BA.debugLine="If entro = \"2\" Then"; + //BA.debugLineNum = 141;BA.debugLine="If entro = \"2\" Then"; if (true) break; case 7: //if -this.state = 30; +this.state = 36; if ((parent._entro).equals("2")) { this.state = 9; }else if((parent._entro).equals("3")) { -this.state = 29; +this.state = 35; }if (true) break; case 9: //C this.state = 10; - //BA.debugLineNum = 144;BA.debugLine="Private lrt As String"; + //BA.debugLineNum = 145;BA.debugLine="Private lrt As String"; _lrt = ""; - //BA.debugLineNum = 145;BA.debugLine="lrt = Value"; + //BA.debugLineNum = 146;BA.debugLine="lrt = Value"; _lrt = BA.ObjectToString(_value); - //BA.debugLineNum = 146;BA.debugLine="laRuta = lrt.SubString(6) 'Quitamos el texto \"Ru"; + //BA.debugLineNum = 147;BA.debugLine="laRuta = lrt.SubString(6) 'Quitamos el texto \"Ru"; parent._laruta = _lrt.substring((int) (6)); - //BA.debugLineNum = 147;BA.debugLine="Log($\"Original: ${Value} - Mod: |${lrt.SubString"; -parent.__c.LogImpl("810027028",("Original: "+parent.__c.SmartStringFormatter("",_value)+" - Mod: |"+parent.__c.SmartStringFormatter("",(Object)(_lrt.substring((int) (6))))+"| - laRuta: "+parent.__c.SmartStringFormatter("",(Object)(parent._laruta))+""),0); - //BA.debugLineNum = 148;BA.debugLine="rutaacambiar = laRuta"; + //BA.debugLineNum = 148;BA.debugLine="Log($\"Original: ${Value} - Mod: |${lrt.SubString"; +parent.__c.LogImpl("245678612",("Original: "+parent.__c.SmartStringFormatter("",_value)+" - Mod: |"+parent.__c.SmartStringFormatter("",(Object)(_lrt.substring((int) (6))))+"| - laRuta: "+parent.__c.SmartStringFormatter("",(Object)(parent._laruta))+""),0); + //BA.debugLineNum = 149;BA.debugLine="rutaacambiar = laRuta"; parent._rutaacambiar = parent._laruta; - //BA.debugLineNum = 149;BA.debugLine="c2 = Starter.skmt.ExecQuery2(\"select CAT_CL_NOMB"; + //BA.debugLineNum = 150;BA.debugLine="c2 = Starter.skmt.ExecQuery2(\"select CAT_CL_NOMB"; parent._c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("select CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_CODIGO, CAT_CL_LAT, CAT_CL_LONG from kmt_info where CAT_CL_RUTA = ? and gestion = 0 AND CAT_CL_RUTA <> 1000 order by CAT_CL_NOMBRE ",new String[]{parent._laruta}))); - //BA.debugLineNum = 150;BA.debugLine="Private thisLoc As Location"; + //BA.debugLineNum = 151;BA.debugLine="Private thisLoc As Location"; _thisloc = new anywheresoftware.b4a.gps.LocationWrapper(); - //BA.debugLineNum = 151;BA.debugLine="Private label1 As Label"; + //BA.debugLineNum = 152;BA.debugLine="Private label1 As Label"; _label1 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 152;BA.debugLine="Private label2 As Label"; + //BA.debugLineNum = 153;BA.debugLine="Private label2 As Label"; _label2 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 153;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; + //BA.debugLineNum = 154;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; _label1 = parent._listview1.getTwoLinesLayout().Label; - //BA.debugLineNum = 154;BA.debugLine="label1.TextSize = 15"; + //BA.debugLineNum = 155;BA.debugLine="label1.TextSize = 15"; _label1.setTextSize((float) (15)); - //BA.debugLineNum = 155;BA.debugLine="label1.TextColor = Colors.black"; + //BA.debugLineNum = 156;BA.debugLine="label1.TextColor = Colors.black"; _label1.setTextColor(parent.__c.Colors.Black); - //BA.debugLineNum = 156;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; + //BA.debugLineNum = 157;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; _label2 = parent._listview1.getTwoLinesLayout().SecondLabel; - //BA.debugLineNum = 157;BA.debugLine="label2.TextSize = 15"; + //BA.debugLineNum = 158;BA.debugLine="label2.TextSize = 15"; _label2.setTextSize((float) (15)); - //BA.debugLineNum = 158;BA.debugLine="label2.TextColor = Colors.black"; + //BA.debugLineNum = 159;BA.debugLine="label2.TextColor = Colors.black"; _label2.setTextColor(parent.__c.Colors.Black); - //BA.debugLineNum = 159;BA.debugLine="label2.Height = 57dip"; + //BA.debugLineNum = 160;BA.debugLine="label2.Height = 57dip"; _label2.setHeight(parent.__c.DipToCurrent((int) (57))); - //BA.debugLineNum = 160;BA.debugLine="thisLoc.Initialize"; + //BA.debugLineNum = 161;BA.debugLine="thisLoc.Initialize"; _thisloc.Initialize(); - //BA.debugLineNum = 161;BA.debugLine="If entro = 2 Then ListView1.TwoLinesLayout.ItemH"; + //BA.debugLineNum = 162;BA.debugLine="If entro = 2 Then ListView1.TwoLinesLayout.ItemH"; if (true) break; case 10: @@ -1513,16 +1516,16 @@ case 15: //C this.state = 16; ; - //BA.debugLineNum = 162;BA.debugLine="lfila.text = \"Nombre y Calle\""; + //BA.debugLineNum = 163;BA.debugLine="lfila.text = \"Nombre y Calle\""; parent._lfila.setText(BA.ObjectToCharSequence("Nombre y Calle")); - //BA.debugLineNum = 163;BA.debugLine="distOrderedMap.Initialize"; + //BA.debugLineNum = 164;BA.debugLine="distOrderedMap.Initialize"; parent._distorderedmap._initialize /*String*/ (ba); - //BA.debugLineNum = 164;BA.debugLine="If c2.RowCount > 0 Then"; + //BA.debugLineNum = 166;BA.debugLine="If c2.RowCount > 0 Then"; if (true) break; case 16: //if -this.state = 27; +this.state = 33; if (parent._c2.getRowCount()>0) { this.state = 18; }if (true) break; @@ -1530,129 +1533,165 @@ this.state = 18; case 18: //C this.state = 19; - //BA.debugLineNum = 165;BA.debugLine="For i = 0 To c2.RowCount -1 'Generamos mapa de"; + //BA.debugLineNum = 167;BA.debugLine="For i = 0 To c2.RowCount -1 'Generamos mapa de"; if (true) break; case 19: //for -this.state = 22; +this.state = 28; step34 = 1; limit34 = (int) (parent._c2.getRowCount()-1); _i = (int) (0) ; -this.state = 32; +this.state = 38; if (true) break; -case 32: +case 38: //C -this.state = 22; +this.state = 28; if ((step34 > 0 && _i <= limit34) || (step34 < 0 && _i >= limit34)) this.state = 21; if (true) break; -case 33: +case 39: //C -this.state = 32; +this.state = 38; _i = ((int)(0 + _i + step34)) ; if (true) break; case 21: //C -this.state = 33; - //BA.debugLineNum = 166;BA.debugLine="c2.Position = i"; +this.state = 22; + //BA.debugLineNum = 168;BA.debugLine="c2.Position = i"; parent._c2.setPosition(_i); - //BA.debugLineNum = 167;BA.debugLine="thisLoc.Latitude = c2.GetString(\"CAT_CL_LAT\")"; + //BA.debugLineNum = 169;BA.debugLine="thisLoc.Latitude = c2.GetString(\"CAT_CL_LAT\")"; _thisloc.setLatitude((double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LAT")))); - //BA.debugLineNum = 168;BA.debugLine="thisLoc.Longitude = c2.GetString(\"CAT_CL_LONG\""; + //BA.debugLineNum = 170;BA.debugLine="thisLoc.Longitude = c2.GetString(\"CAT_CL_LONG\""; _thisloc.setLongitude((double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LONG")))); - //BA.debugLineNum = 170;BA.debugLine="Private distancia As Int = Tracker.UUGCoords.D"; + //BA.debugLineNum = 172;BA.debugLine="Private distancia As Int = Tracker.UUGCoords.D"; _distancia = (int) (parent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ .DistanceTo((android.location.Location)(_thisloc.getObject()))); - //BA.debugLineNum = 171;BA.debugLine="Private esteCliente As Map = CreateMap(\"distan"; -_estecliente = new anywheresoftware.b4a.objects.collections.Map(); -_estecliente = parent.__c.createMap(new Object[] {(Object)("distancia"),(Object)(_distancia),(Object)("ubicacion"),(Object)(BA.NumberToString(_thisloc.getLongitude())+","+BA.NumberToString(_thisloc.getLatitude())),(Object)("codigo"),(Object)(parent._c2.GetString("CAT_CL_CODIGO")),(Object)("nomDirDist"),(Object)((""+parent.__c.SmartStringFormatter("",(Object)(parent._c2.GetString("CAT_CL_NOMBRE")))+" CALLE: "+parent.__c.SmartStringFormatter("",(Object)(parent._c2.GetString("CAT_CL_CALLE")))+" "+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+"Distancia: "+parent.__c.SmartStringFormatter("1.1",(Object)((_distancia/(double)1000)))+" kms"))}); - //BA.debugLineNum = 172;BA.debugLine="distOrderedMap.Put(distancia, esteCliente)"; -parent._distorderedmap._put /*String*/ ((Object)(_distancia),(Object)(_estecliente.getObject())); - if (true) break; + //BA.debugLineNum = 173;BA.debugLine="If distancia = 0 And distanciacero = 0 Then"; if (true) break; case 22: -//C -this.state = 23; -; - //BA.debugLineNum = 174;BA.debugLine="distOrderedMap.Keys.Sort(True) 'Ordenamos la ma"; -parent._distorderedmap._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().Sort(parent.__c.True); - //BA.debugLineNum = 175;BA.debugLine="ListView1.Clear"; -parent._listview1.Clear(); - //BA.debugLineNum = 176;BA.debugLine="Private m1 As Map"; -_m1 = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 177;BA.debugLine="For Each k As Object In distOrderedMap.Keys 'G"; -if (true) break; - -case 23: -//for +//if +this.state = 27; +if (_distancia==0 && parent._distanciacero==0) { +this.state = 24; +}else if(parent._distanciacero!=0 && _distancia==0) { this.state = 26; -group45 = parent._distorderedmap._getkeys /*anywheresoftware.b4a.objects.collections.List*/ (); -index45 = 0; -groupLen45 = group45.getSize(); -this.state = 34; -if (true) break; +}if (true) break; -case 34: +case 24: //C -this.state = 26; -if (index45 < groupLen45) { -this.state = 25; -_k = group45.Get(index45);} -if (true) break; - -case 35: -//C -this.state = 34; -index45++; -if (true) break; - -case 25: -//C -this.state = 35; - //BA.debugLineNum = 178;BA.debugLine="m1 = distOrderedMap.Get(k)"; -_m1 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._distorderedmap._get /*Object*/ (_k))); - //BA.debugLineNum = 179;BA.debugLine="m1.Get(\"codigo\")"; -_m1.Get((Object)("codigo")); - //BA.debugLineNum = 181;BA.debugLine="ListView1.AddTwoLines(m1.Get(\"codigo\"), m1.Get"; -parent._listview1.AddTwoLines(BA.ObjectToCharSequence(_m1.Get((Object)("codigo"))),BA.ObjectToCharSequence(_m1.Get((Object)("nomDirDist")))); +this.state = 27; + //BA.debugLineNum = 174;BA.debugLine="distancia = distancia + i"; +_distancia = (int) (_distancia+_i); + //BA.debugLineNum = 175;BA.debugLine="distanciacero = distancia"; +parent._distanciacero = _distancia; if (true) break; -if (true) break; case 26: //C this.state = 27; -; + //BA.debugLineNum = 177;BA.debugLine="distancia = distanciacero + i"; +_distancia = (int) (parent._distanciacero+_i); + //BA.debugLineNum = 178;BA.debugLine="distanciacero = distancia"; +parent._distanciacero = _distancia; if (true) break; case 27: //C -this.state = 30; +this.state = 39; ; - //BA.debugLineNum = 184;BA.debugLine="c2.Close"; + //BA.debugLineNum = 183;BA.debugLine="Private esteCliente As Map = CreateMap(\"distan"; +_estecliente = new anywheresoftware.b4a.objects.collections.Map(); +_estecliente = parent.__c.createMap(new Object[] {(Object)("distancia"),(Object)(_distancia),(Object)("ubicacion"),(Object)(BA.NumberToString(_thisloc.getLongitude())+","+BA.NumberToString(_thisloc.getLatitude())),(Object)("codigo"),(Object)(parent._c2.GetString("CAT_CL_CODIGO")),(Object)("nomDirDist"),(Object)((""+parent.__c.SmartStringFormatter("",(Object)(parent._c2.GetString("CAT_CL_NOMBRE")))+" CALLE: "+parent.__c.SmartStringFormatter("",(Object)(parent._c2.GetString("CAT_CL_CALLE")))+" "+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+"Distancia: "+parent.__c.SmartStringFormatter("1.1",(Object)((_distancia/(double)1000)))+" kms"))}); + //BA.debugLineNum = 185;BA.debugLine="distOrderedMap.Put(distancia, esteCliente)"; +parent._distorderedmap._put /*String*/ ((Object)(_distancia),(Object)(_estecliente.getObject())); + if (true) break; +if (true) break; + +case 28: +//C +this.state = 29; +; + //BA.debugLineNum = 188;BA.debugLine="distOrderedMap.Keys.Sort(True) 'Ordenamos la ma"; +parent._distorderedmap._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().Sort(parent.__c.True); + //BA.debugLineNum = 189;BA.debugLine="Log(distOrderedMap)"; +parent.__c.LogImpl("245678653",BA.ObjectToString(parent._distorderedmap),0); + //BA.debugLineNum = 190;BA.debugLine="ListView1.Clear"; +parent._listview1.Clear(); + //BA.debugLineNum = 191;BA.debugLine="Private m1 As Map"; +_m1 = new anywheresoftware.b4a.objects.collections.Map(); + //BA.debugLineNum = 192;BA.debugLine="For Each k As Object In distOrderedMap.Keys 'G"; +if (true) break; + +case 29: +//for +this.state = 32; +group53 = parent._distorderedmap._getkeys /*anywheresoftware.b4a.objects.collections.List*/ (); +index53 = 0; +groupLen53 = group53.getSize(); +this.state = 40; +if (true) break; + +case 40: +//C +this.state = 32; +if (index53 < groupLen53) { +this.state = 31; +_k = group53.Get(index53);} +if (true) break; + +case 41: +//C +this.state = 40; +index53++; +if (true) break; + +case 31: +//C +this.state = 41; + //BA.debugLineNum = 193;BA.debugLine="m1 = distOrderedMap.Get(k)"; +_m1 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._distorderedmap._get /*Object*/ (_k))); + //BA.debugLineNum = 194;BA.debugLine="m1.Get(\"codigo\")"; +_m1.Get((Object)("codigo")); + //BA.debugLineNum = 196;BA.debugLine="ListView1.AddTwoLines(m1.Get(\"codigo\"), m1.Get"; +parent._listview1.AddTwoLines(BA.ObjectToCharSequence(_m1.Get((Object)("codigo"))),BA.ObjectToCharSequence(_m1.Get((Object)("nomDirDist")))); + if (true) break; +if (true) break; + +case 32: +//C +this.state = 33; +; + if (true) break; + +case 33: +//C +this.state = 36; +; + //BA.debugLineNum = 199;BA.debugLine="c2.Close"; parent._c2.Close(); - //BA.debugLineNum = 185;BA.debugLine="entro = \"3\""; + //BA.debugLineNum = 200;BA.debugLine="entro = \"3\""; parent._entro = "3"; if (true) break; -case 29: +case 35: //C -this.state = 30; - //BA.debugLineNum = 188;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; +this.state = 36; + //BA.debugLineNum = 203;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CUENTAA"); - //BA.debugLineNum = 189;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA"; + //BA.debugLineNum = 204;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CUENTAA VALUES (?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{_value})); - //BA.debugLineNum = 190;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; + //BA.debugLineNum = 205;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; parent._b4xpages._showpage /*String*/ (ba,"Cliente"); if (true) break; -case 30: +case 36: //C this.state = -1; ; - //BA.debugLineNum = 192;BA.debugLine="End Sub"; + //BA.debugLineNum = 207;BA.debugLine="End Sub"; if (true) break; } @@ -1664,39 +1703,39 @@ String _sqlderuta = ""; anywheresoftware.b4a.objects.collections.List _avisitar = null; anywheresoftware.b4a.objects.collections.List _tmplist = null; anywheresoftware.b4a.sql.SQL.ResultSetWrapper _coords = null; - //BA.debugLineNum = 666;BA.debugLine="Sub todosAVisitar As List"; - //BA.debugLineNum = 667;BA.debugLine="Log(laRuta)"; -__c.LogImpl("810813441",_laruta,0); - //BA.debugLineNum = 668;BA.debugLine="Log(entro)"; -__c.LogImpl("810813442",_entro,0); - //BA.debugLineNum = 669;BA.debugLine="Private sqlDeRuta As String = \"\""; + //BA.debugLineNum = 681;BA.debugLine="Sub todosAVisitar As List"; + //BA.debugLineNum = 682;BA.debugLine="Log(laRuta)"; +__c.LogImpl("246465025",_laruta,0); + //BA.debugLineNum = 683;BA.debugLine="Log(entro)"; +__c.LogImpl("246465026",_entro,0); + //BA.debugLineNum = 684;BA.debugLine="Private sqlDeRuta As String = \"\""; _sqlderuta = ""; - //BA.debugLineNum = 670;BA.debugLine="If entro = 3 Then sqlDeRuta = $\"and CAT_CL_RUTA ="; + //BA.debugLineNum = 685;BA.debugLine="If entro = 3 Then sqlDeRuta = $\"and CAT_CL_RUTA ="; if ((_entro).equals(BA.NumberToString(3))) { _sqlderuta = ("and CAT_CL_RUTA = '"+__c.SmartStringFormatter("",(Object)(_laruta))+"'");}; - //BA.debugLineNum = 671;BA.debugLine="Private aVisitar, tmpList As List"; + //BA.debugLineNum = 686;BA.debugLine="Private aVisitar, tmpList As List"; _avisitar = new anywheresoftware.b4a.objects.collections.List(); _tmplist = new anywheresoftware.b4a.objects.collections.List(); - //BA.debugLineNum = 672;BA.debugLine="aVisitar.Initialize"; + //BA.debugLineNum = 687;BA.debugLine="aVisitar.Initialize"; _avisitar.Initialize(); - //BA.debugLineNum = 673;BA.debugLine="Private coords As ResultSet = Starter.skmt.ExecQu"; + //BA.debugLineNum = 688;BA.debugLine="Private coords As ResultSet = Starter.skmt.ExecQu"; _coords = new anywheresoftware.b4a.sql.SQL.ResultSetWrapper(); _coords = (anywheresoftware.b4a.sql.SQL.ResultSetWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.ResultSetWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select CAT_CL_CODIGO, CAT_CL_LAT, CAT_CL_LONG from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000 "+__c.SmartStringFormatter("",(Object)(_sqlderuta))+"")))); - //BA.debugLineNum = 674;BA.debugLine="Do While coords.NextRow"; + //BA.debugLineNum = 689;BA.debugLine="Do While coords.NextRow"; while (_coords.NextRow()) { - //BA.debugLineNum = 675;BA.debugLine="tmpList.Initialize"; + //BA.debugLineNum = 690;BA.debugLine="tmpList.Initialize"; _tmplist.Initialize(); - //BA.debugLineNum = 676;BA.debugLine="tmpList.AddAll(Array As String(coords.GetString("; + //BA.debugLineNum = 691;BA.debugLine="tmpList.AddAll(Array As String(coords.GetString("; _tmplist.AddAll(anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{_coords.GetString("CAT_CL_CODIGO"),_coords.GetString("CAT_CL_LONG"),_coords.GetString("CAT_CL_LAT")})); - //BA.debugLineNum = 677;BA.debugLine="aVisitar.Add(tmpList)"; + //BA.debugLineNum = 692;BA.debugLine="aVisitar.Add(tmpList)"; _avisitar.Add((Object)(_tmplist.getObject())); } ; - //BA.debugLineNum = 679;BA.debugLine="Log(aVisitar)"; -__c.LogImpl("810813453",BA.ObjectToString(_avisitar),0); - //BA.debugLineNum = 680;BA.debugLine="Return aVisitar"; + //BA.debugLineNum = 694;BA.debugLine="Log(aVisitar)"; +__c.LogImpl("246465037",BA.ObjectToString(_avisitar),0); + //BA.debugLineNum = 695;BA.debugLine="Return aVisitar"; if (true) return _avisitar; - //BA.debugLineNum = 681;BA.debugLine="End Sub"; + //BA.debugLineNum = 696;BA.debugLine="End Sub"; return null; } public void _traerutadia(reparto_intmex.keymon.lat.b4xorderedmap _avisitar) throws Exception{ @@ -1770,30 +1809,30 @@ return; case 0: //C this.state = 1; - //BA.debugLineNum = 301;BA.debugLine="Private coordsInicio As String = $\"${Starter.cedi"; + //BA.debugLineNum = 316;BA.debugLine="Private coordsInicio As String = $\"${Starter.cedi"; _coordsinicio = (""+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()))+","+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()))+""); - //BA.debugLineNum = 302;BA.debugLine="Log($\"Coordenadas de inicio: ${Starter.cedisLocat"; -parent.__c.LogImpl("810354690",("Coordenadas de inicio: "+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()))+","+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()))+""),0); - //BA.debugLineNum = 303;BA.debugLine="Private rutaCompleta As String = coordsInicio"; + //BA.debugLineNum = 317;BA.debugLine="Log($\"Coordenadas de inicio: ${Starter.cedisLocat"; +parent.__c.LogImpl("246006274",("Coordenadas de inicio: "+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude()))+","+parent.__c.SmartStringFormatter("",(Object)(parent._starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()))+""),0); + //BA.debugLineNum = 318;BA.debugLine="Private rutaCompleta As String = coordsInicio"; _rutacompleta = _coordsinicio; - //BA.debugLineNum = 304;BA.debugLine="Private preRuta As String = coordsInicio"; + //BA.debugLineNum = 319;BA.debugLine="Private preRuta As String = coordsInicio"; _preruta = _coordsinicio; - //BA.debugLineNum = 305;BA.debugLine="Private distanciaTotal, distanciaTotal0, tiempo0,"; + //BA.debugLineNum = 320;BA.debugLine="Private distanciaTotal, distanciaTotal0, tiempo0,"; _distanciatotal = 0; _distanciatotal0 = 0; _tiempo0 = 0; _tiempo = 0; - //BA.debugLineNum = 306;BA.debugLine="Private masDe100 As Boolean"; + //BA.debugLineNum = 321;BA.debugLine="Private masDe100 As Boolean"; _masde100 = false; - //BA.debugLineNum = 307;BA.debugLine="Private m4 As Map"; + //BA.debugLineNum = 322;BA.debugLine="Private m4 As Map"; _m4 = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 308;BA.debugLine="Private visitaActual As Int = 0"; + //BA.debugLineNum = 323;BA.debugLine="Private visitaActual As Int = 0"; _visitaactual = (int) (0); - //BA.debugLineNum = 309;BA.debugLine="Private cuantosAntes As Int = 0"; + //BA.debugLineNum = 324;BA.debugLine="Private cuantosAntes As Int = 0"; _cuantosantes = (int) (0); - //BA.debugLineNum = 310;BA.debugLine="listaWayPoints.Initialize"; + //BA.debugLineNum = 325;BA.debugLine="listaWayPoints.Initialize"; parent._listawaypoints.Initialize(); - //BA.debugLineNum = 311;BA.debugLine="If aVisitar.Keys.Size > 98 Then 'Si los clientes"; + //BA.debugLineNum = 326;BA.debugLine="If aVisitar.Keys.Size > 98 Then 'Si los clientes"; if (true) break; case 1: @@ -1806,13 +1845,13 @@ this.state = 3; case 3: //C this.state = 4; - //BA.debugLineNum = 312;BA.debugLine="cuantosAntes = aVisitar.Keys.Size - 98 'Definimo"; + //BA.debugLineNum = 327;BA.debugLine="cuantosAntes = aVisitar.Keys.Size - 98 'Definimo"; _cuantosantes = (int) (_avisitar._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().getSize()-98); - //BA.debugLineNum = 313;BA.debugLine="preRuta = coordsInicio 'Ponemos las coordenadas"; + //BA.debugLineNum = 328;BA.debugLine="preRuta = coordsInicio 'Ponemos las coordenadas"; _preruta = _coordsinicio; - //BA.debugLineNum = 314;BA.debugLine="rutaCompleta = \"\""; + //BA.debugLineNum = 329;BA.debugLine="rutaCompleta = \"\""; _rutacompleta = ""; - //BA.debugLineNum = 315;BA.debugLine="masDe100 = True"; + //BA.debugLineNum = 330;BA.debugLine="masDe100 = True"; _masde100 = parent.__c.True; if (true) break; @@ -1820,9 +1859,9 @@ case 4: //C this.state = 5; ; - //BA.debugLineNum = 317;BA.debugLine="Log($\"a visitar: ${aVisitar.Keys.Size}\"$)"; -parent.__c.LogImpl("810354705",("a visitar: "+parent.__c.SmartStringFormatter("",(Object)(_avisitar._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().getSize()))+""),0); - //BA.debugLineNum = 318;BA.debugLine="For Each k As Object In aVisitar.Keys"; + //BA.debugLineNum = 332;BA.debugLine="Log($\"a visitar: ${aVisitar.Keys.Size}\"$)"; +parent.__c.LogImpl("246006289",("a visitar: "+parent.__c.SmartStringFormatter("",(Object)(_avisitar._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().getSize()))+""),0); + //BA.debugLineNum = 333;BA.debugLine="For Each k As Object In aVisitar.Keys"; if (true) break; case 5: @@ -1851,11 +1890,11 @@ if (true) break; case 7: //C this.state = 8; - //BA.debugLineNum = 319;BA.debugLine="visitaActual = visitaActual + 1"; + //BA.debugLineNum = 334;BA.debugLine="visitaActual = visitaActual + 1"; _visitaactual = (int) (_visitaactual+1); - //BA.debugLineNum = 320;BA.debugLine="m4 = aVisitar.Get(k)"; + //BA.debugLineNum = 335;BA.debugLine="m4 = aVisitar.Get(k)"; _m4 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_avisitar._get /*Object*/ (_k))); - //BA.debugLineNum = 322;BA.debugLine="If visitaActual < cuantosAntes + 2 Then 'Si esta"; + //BA.debugLineNum = 337;BA.debugLine="If visitaActual < cuantosAntes + 2 Then 'Si esta"; if (true) break; case 8: @@ -1868,11 +1907,11 @@ this.state = 10; case 10: //C this.state = 11; - //BA.debugLineNum = 323;BA.debugLine="preRuta = preRuta & \";\" & m4.Get(\"coords\")"; + //BA.debugLineNum = 338;BA.debugLine="preRuta = preRuta & \";\" & m4.Get(\"coords\")"; _preruta = _preruta+";"+BA.ObjectToString(_m4.Get((Object)("coords"))); if (true) break; ; - //BA.debugLineNum = 326;BA.debugLine="If visitaActual >= cuantosAntes + 2 Then 'Si est"; + //BA.debugLineNum = 341;BA.debugLine="If visitaActual >= cuantosAntes + 2 Then 'Si est"; case 11: //if @@ -1884,7 +1923,7 @@ this.state = 13; case 13: //C this.state = 14; - //BA.debugLineNum = 327;BA.debugLine="rutaCompleta = rutaCompleta & \";\" & m4.Get(\"coo"; + //BA.debugLineNum = 342;BA.debugLine="rutaCompleta = rutaCompleta & \";\" & m4.Get(\"coo"; _rutacompleta = _rutacompleta+";"+BA.ObjectToString(_m4.Get((Object)("coords"))); if (true) break; @@ -1899,9 +1938,9 @@ case 15: //C this.state = 16; ; - //BA.debugLineNum = 331;BA.debugLine="rutaCompleta = rutaCompleta & \";\" & coordsInicio"; + //BA.debugLineNum = 346;BA.debugLine="rutaCompleta = rutaCompleta & \";\" & coordsInicio"; _rutacompleta = _rutacompleta+";"+_coordsinicio; - //BA.debugLineNum = 333;BA.debugLine="If rutaCompleta.StartsWith(\";\") Then rutaCompleta"; + //BA.debugLineNum = 348;BA.debugLine="If rutaCompleta.StartsWith(\";\") Then rutaCompleta"; if (true) break; case 16: @@ -1921,17 +1960,17 @@ case 21: //C this.state = 22; ; - //BA.debugLineNum = 336;BA.debugLine="ProgressDialogShow2(\"Calculando distancia y tiemp"; + //BA.debugLineNum = 351;BA.debugLine="ProgressDialogShow2(\"Calculando distancia y tiemp"; parent.__c.ProgressDialogShow2(ba,BA.ObjectToCharSequence("Calculando distancia y tiempo, un momento por favor."),parent.__c.False); - //BA.debugLineNum = 337;BA.debugLine="Private tiempoVisitas As Double 'TIMEPO DE 4 MINU"; + //BA.debugLineNum = 352;BA.debugLine="Private tiempoVisitas As Double 'TIMEPO DE 4 MINU"; _tiempovisitas = 0; - //BA.debugLineNum = 338;BA.debugLine="tiempoVisitas = aVisitar.Keys.Size * 4 * 60 'Aqui"; + //BA.debugLineNum = 353;BA.debugLine="tiempoVisitas = aVisitar.Keys.Size * 4 * 60 'Aqui"; _tiempovisitas = _avisitar._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().getSize()*4*60; - //BA.debugLineNum = 339;BA.debugLine="tiempo0 = 0"; + //BA.debugLineNum = 354;BA.debugLine="tiempo0 = 0"; _tiempo0 = 0; - //BA.debugLineNum = 340;BA.debugLine="distanciaTotal0 = 0"; + //BA.debugLineNum = 355;BA.debugLine="distanciaTotal0 = 0"; _distanciatotal0 = 0; - //BA.debugLineNum = 341;BA.debugLine="If masDe100 Then 'Si son mas de 100, entonces pri"; + //BA.debugLineNum = 356;BA.debugLine="If masDe100 Then 'Si son mas de 100, entonces pri"; if (true) break; case 22: @@ -1944,13 +1983,13 @@ this.state = 24; case 24: //C this.state = 25; - //BA.debugLineNum = 342;BA.debugLine="Dim j0 As HttpJob"; + //BA.debugLineNum = 357;BA.debugLine="Dim j0 As HttpJob"; _j0 = new reparto_intmex.keymon.lat.httpjob(); - //BA.debugLineNum = 343;BA.debugLine="j0.Initialize(\"trip0\", Me)"; + //BA.debugLineNum = 358;BA.debugLine="j0.Initialize(\"trip0\", Me)"; _j0._initialize /*String*/ (ba,"trip0",parent); - //BA.debugLineNum = 344;BA.debugLine="j0.Download(\"https://router.project-osrm.org/tri"; + //BA.debugLineNum = 359;BA.debugLine="j0.Download(\"https://router.project-osrm.org/tri"; _j0._download /*String*/ ("https://router.project-osrm.org/trip/v1/driving/"+_preruta+"?source=first&destination=last&roundtrip=false&geometries=geojson"); - //BA.debugLineNum = 346;BA.debugLine="Wait For (j0) JobDone(j0 As HttpJob)"; + //BA.debugLineNum = 361;BA.debugLine="Wait For (j0) JobDone(j0 As HttpJob)"; parent.__c.WaitFor("jobdone", ba, this, (Object)(_j0)); this.state = 72; return; @@ -1959,7 +1998,7 @@ case 72: this.state = 25; _j0 = (reparto_intmex.keymon.lat.httpjob) result[0]; ; - //BA.debugLineNum = 347;BA.debugLine="If j0.Success Then"; + //BA.debugLineNum = 362;BA.debugLine="If j0.Success Then"; if (true) break; case 25: @@ -1974,14 +2013,14 @@ this.state = 37; case 27: //C this.state = 28; - //BA.debugLineNum = 348;BA.debugLine="Dim jp0 As JSONParser"; + //BA.debugLineNum = 363;BA.debugLine="Dim jp0 As JSONParser"; _jp0 = new anywheresoftware.b4a.objects.collections.JSONParser(); - //BA.debugLineNum = 349;BA.debugLine="jp0.Initialize(j0.GetString)"; + //BA.debugLineNum = 364;BA.debugLine="jp0.Initialize(j0.GetString)"; _jp0.Initialize(_j0._getstring /*String*/ ()); - //BA.debugLineNum = 350;BA.debugLine="Dim m0 As Map = jp0.NextObject"; + //BA.debugLineNum = 365;BA.debugLine="Dim m0 As Map = jp0.NextObject"; _m0 = new anywheresoftware.b4a.objects.collections.Map(); _m0 = _jp0.NextObject(); - //BA.debugLineNum = 351;BA.debugLine="If m0.Get(\"code\") = \"Ok\" Then"; + //BA.debugLineNum = 366;BA.debugLine="If m0.Get(\"code\") = \"Ok\" Then"; if (true) break; case 28: @@ -1994,12 +2033,12 @@ this.state = 30; case 30: //C this.state = 31; - //BA.debugLineNum = 352;BA.debugLine="Dim puntos0 As List = m0.Get(\"waypoints\")"; + //BA.debugLineNum = 367;BA.debugLine="Dim puntos0 As List = m0.Get(\"waypoints\")"; _puntos0 = new anywheresoftware.b4a.objects.collections.List(); _puntos0 = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_m0.Get((Object)("waypoints")))); - //BA.debugLineNum = 353;BA.debugLine="Private esteWayPoint0 As Map"; + //BA.debugLineNum = 368;BA.debugLine="Private esteWayPoint0 As Map"; _estewaypoint0 = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 354;BA.debugLine="For p = 0 To puntos0.Size -1"; + //BA.debugLineNum = 369;BA.debugLine="For p = 0 To puntos0.Size -1"; if (true) break; case 31: @@ -2026,15 +2065,15 @@ if (true) break; case 33: //C this.state = 74; - //BA.debugLineNum = 355;BA.debugLine="esteWayPoint0 = puntos0.Get(p)"; + //BA.debugLineNum = 370;BA.debugLine="esteWayPoint0 = puntos0.Get(p)"; _estewaypoint0 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_puntos0.Get(_p))); - //BA.debugLineNum = 358;BA.debugLine="esteWayPoint0.Remove(\"hint\")"; + //BA.debugLineNum = 373;BA.debugLine="esteWayPoint0.Remove(\"hint\")"; _estewaypoint0.Remove((Object)("hint")); - //BA.debugLineNum = 359;BA.debugLine="esteWayPoint0.Remove(\"distance\")"; + //BA.debugLineNum = 374;BA.debugLine="esteWayPoint0.Remove(\"distance\")"; _estewaypoint0.Remove((Object)("distance")); - //BA.debugLineNum = 360;BA.debugLine="esteWayPoint0.Remove(\"trips_index\")"; + //BA.debugLineNum = 375;BA.debugLine="esteWayPoint0.Remove(\"trips_index\")"; _estewaypoint0.Remove((Object)("trips_index")); - //BA.debugLineNum = 361;BA.debugLine="listaWayPoints.Add(esteWayPoint0)"; + //BA.debugLineNum = 376;BA.debugLine="listaWayPoints.Add(esteWayPoint0)"; parent._listawaypoints.Add((Object)(_estewaypoint0.getObject())); if (true) break; if (true) break; @@ -2043,20 +2082,20 @@ case 34: //C this.state = 35; ; - //BA.debugLineNum = 364;BA.debugLine="Dim rutas0 As List = m0.Get(\"trips\")"; + //BA.debugLineNum = 379;BA.debugLine="Dim rutas0 As List = m0.Get(\"trips\")"; _rutas0 = new anywheresoftware.b4a.objects.collections.List(); _rutas0 = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_m0.Get((Object)("trips")))); - //BA.debugLineNum = 365;BA.debugLine="Dim rutas20 As Map = rutas0.Get(0)"; + //BA.debugLineNum = 380;BA.debugLine="Dim rutas20 As Map = rutas0.Get(0)"; _rutas20 = new anywheresoftware.b4a.objects.collections.Map(); _rutas20 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_rutas0.Get((int) (0)))); - //BA.debugLineNum = 368;BA.debugLine="distanciaTotal0 = rutas20.Get(\"distance\")"; + //BA.debugLineNum = 383;BA.debugLine="distanciaTotal0 = rutas20.Get(\"distance\")"; _distanciatotal0 = (double)(BA.ObjectToNumber(_rutas20.Get((Object)("distance")))); - //BA.debugLineNum = 369;BA.debugLine="tiempo0 = rutas20.Get(\"duration\")"; + //BA.debugLineNum = 384;BA.debugLine="tiempo0 = rutas20.Get(\"duration\")"; _tiempo0 = (double)(BA.ObjectToNumber(_rutas20.Get((Object)("duration")))); - //BA.debugLineNum = 370;BA.debugLine="tiempo0 = ((tiempo0 * 2) ) 'Tiempo X 2 (es muy"; + //BA.debugLineNum = 385;BA.debugLine="tiempo0 = ((tiempo0 * 2) ) 'Tiempo X 2 (es muy"; _tiempo0 = ((_tiempo0*2)); - //BA.debugLineNum = 371;BA.debugLine="Log($\"Distancia total ruta inicial: $1.1{dista"; -parent.__c.LogImpl("810354759",("Distancia total ruta inicial: "+parent.__c.SmartStringFormatter("1.1",(Object)(_distanciatotal0/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo0/(double)60))+" mins. ("+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo0/(double)60/(double)60))+" hrs)"),0); + //BA.debugLineNum = 386;BA.debugLine="Log($\"Distancia total ruta inicial: $1.1{dista"; +parent.__c.LogImpl("246006343",("Distancia total ruta inicial: "+parent.__c.SmartStringFormatter("1.1",(Object)(_distanciatotal0/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo0/(double)60))+" mins. ("+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo0/(double)60/(double)60))+" hrs)"),0); if (true) break; case 35: @@ -2068,15 +2107,15 @@ this.state = 38; case 37: //C this.state = 38; - //BA.debugLineNum = 375;BA.debugLine="Log(\"Error!\")"; -parent.__c.LogImpl("810354763","Error!",0); + //BA.debugLineNum = 390;BA.debugLine="Log(\"Error!\")"; +parent.__c.LogImpl("246006347","Error!",0); if (true) break; case 38: //C this.state = 39; ; - //BA.debugLineNum = 377;BA.debugLine="j0.Release"; + //BA.debugLineNum = 392;BA.debugLine="j0.Release"; _j0._release /*String*/ (); if (true) break; @@ -2084,13 +2123,13 @@ case 39: //C this.state = 40; ; - //BA.debugLineNum = 380;BA.debugLine="Dim j As HttpJob"; + //BA.debugLineNum = 395;BA.debugLine="Dim j As HttpJob"; _j = new reparto_intmex.keymon.lat.httpjob(); - //BA.debugLineNum = 381;BA.debugLine="j.Initialize(\"trip\", Me) 'Calculamos el resto de"; + //BA.debugLineNum = 396;BA.debugLine="j.Initialize(\"trip\", Me) 'Calculamos el resto de"; _j._initialize /*String*/ (ba,"trip",parent); - //BA.debugLineNum = 382;BA.debugLine="j.Download(\"https://router.project-osrm.org/trip/"; + //BA.debugLineNum = 397;BA.debugLine="j.Download(\"https://router.project-osrm.org/trip/"; _j._download /*String*/ ("https://router.project-osrm.org/trip/v1/driving/"+_rutacompleta+"?source=first&destination=last&roundtrip=false&geometries=geojson"); - //BA.debugLineNum = 384;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; + //BA.debugLineNum = 399;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; parent.__c.WaitFor("jobdone", ba, this, (Object)(_j)); this.state = 75; return; @@ -2099,7 +2138,7 @@ case 75: this.state = 40; _j = (reparto_intmex.keymon.lat.httpjob) result[0]; ; - //BA.debugLineNum = 385;BA.debugLine="If j.Success Then"; + //BA.debugLineNum = 400;BA.debugLine="If j.Success Then"; if (true) break; case 40: @@ -2114,14 +2153,14 @@ this.state = 52; case 42: //C this.state = 43; - //BA.debugLineNum = 386;BA.debugLine="Dim jp As JSONParser"; + //BA.debugLineNum = 401;BA.debugLine="Dim jp As JSONParser"; _jp = new anywheresoftware.b4a.objects.collections.JSONParser(); - //BA.debugLineNum = 387;BA.debugLine="jp.Initialize(j.GetString)"; + //BA.debugLineNum = 402;BA.debugLine="jp.Initialize(j.GetString)"; _jp.Initialize(_j._getstring /*String*/ ()); - //BA.debugLineNum = 388;BA.debugLine="Dim m As Map = jp.NextObject"; + //BA.debugLineNum = 403;BA.debugLine="Dim m As Map = jp.NextObject"; _m = new anywheresoftware.b4a.objects.collections.Map(); _m = _jp.NextObject(); - //BA.debugLineNum = 389;BA.debugLine="If m.Get(\"code\") = \"Ok\" Then"; + //BA.debugLineNum = 404;BA.debugLine="If m.Get(\"code\") = \"Ok\" Then"; if (true) break; case 43: @@ -2134,14 +2173,14 @@ this.state = 45; case 45: //C this.state = 46; - //BA.debugLineNum = 390;BA.debugLine="Dim puntos As List = m.Get(\"waypoints\")"; + //BA.debugLineNum = 405;BA.debugLine="Dim puntos As List = m.Get(\"waypoints\")"; _puntos = new anywheresoftware.b4a.objects.collections.List(); _puntos = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_m.Get((Object)("waypoints")))); - //BA.debugLineNum = 391;BA.debugLine="Private esteWayPoint As Map"; + //BA.debugLineNum = 406;BA.debugLine="Private esteWayPoint As Map"; _estewaypoint = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 392;BA.debugLine="Dim twpi As Int"; + //BA.debugLineNum = 407;BA.debugLine="Dim twpi As Int"; _twpi = 0; - //BA.debugLineNum = 393;BA.debugLine="For p = 0 To puntos.Size -1"; + //BA.debugLineNum = 408;BA.debugLine="For p = 0 To puntos.Size -1"; if (true) break; case 46: @@ -2168,21 +2207,21 @@ if (true) break; case 48: //C this.state = 77; - //BA.debugLineNum = 394;BA.debugLine="esteWayPoint = puntos.Get(p)"; + //BA.debugLineNum = 409;BA.debugLine="esteWayPoint = puntos.Get(p)"; _estewaypoint = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_puntos.Get(_p))); - //BA.debugLineNum = 397;BA.debugLine="esteWayPoint.Remove(\"hint\")"; + //BA.debugLineNum = 412;BA.debugLine="esteWayPoint.Remove(\"hint\")"; _estewaypoint.Remove((Object)("hint")); - //BA.debugLineNum = 398;BA.debugLine="esteWayPoint.Remove(\"distance\")"; + //BA.debugLineNum = 413;BA.debugLine="esteWayPoint.Remove(\"distance\")"; _estewaypoint.Remove((Object)("distance")); - //BA.debugLineNum = 399;BA.debugLine="esteWayPoint.Remove(\"trips_index\")"; + //BA.debugLineNum = 414;BA.debugLine="esteWayPoint.Remove(\"trips_index\")"; _estewaypoint.Remove((Object)("trips_index")); - //BA.debugLineNum = 400;BA.debugLine="twpi = esteWayPoint.Get(\"waypoint_index\")"; + //BA.debugLineNum = 415;BA.debugLine="twpi = esteWayPoint.Get(\"waypoint_index\")"; _twpi = (int)(BA.ObjectToNumber(_estewaypoint.Get((Object)("waypoint_index")))); - //BA.debugLineNum = 401;BA.debugLine="esteWayPoint.Remove(\"waypoint_index\")"; + //BA.debugLineNum = 416;BA.debugLine="esteWayPoint.Remove(\"waypoint_index\")"; _estewaypoint.Remove((Object)("waypoint_index")); - //BA.debugLineNum = 402;BA.debugLine="esteWayPoint.Put(\"waypoint_index\", (twpi + cua"; + //BA.debugLineNum = 417;BA.debugLine="esteWayPoint.Put(\"waypoint_index\", (twpi + cua"; _estewaypoint.Put((Object)("waypoint_index"),(Object)((_twpi+_cuantosantes+2))); - //BA.debugLineNum = 403;BA.debugLine="listaWayPoints.Add(esteWayPoint)"; + //BA.debugLineNum = 418;BA.debugLine="listaWayPoints.Add(esteWayPoint)"; parent._listawaypoints.Add((Object)(_estewaypoint.getObject())); if (true) break; if (true) break; @@ -2191,35 +2230,35 @@ case 49: //C this.state = 50; ; - //BA.debugLineNum = 406;BA.debugLine="Dim rutas As List = m.Get(\"trips\")"; + //BA.debugLineNum = 421;BA.debugLine="Dim rutas As List = m.Get(\"trips\")"; _rutas = new anywheresoftware.b4a.objects.collections.List(); _rutas = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_m.Get((Object)("trips")))); - //BA.debugLineNum = 407;BA.debugLine="Dim rutas2 As Map = rutas.Get(0)"; + //BA.debugLineNum = 422;BA.debugLine="Dim rutas2 As Map = rutas.Get(0)"; _rutas2 = new anywheresoftware.b4a.objects.collections.Map(); _rutas2 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_rutas.Get((int) (0)))); - //BA.debugLineNum = 408;BA.debugLine="distanciaTotal = rutas2.Get(\"distance\")"; + //BA.debugLineNum = 423;BA.debugLine="distanciaTotal = rutas2.Get(\"distance\")"; _distanciatotal = (double)(BA.ObjectToNumber(_rutas2.Get((Object)("distance")))); - //BA.debugLineNum = 409;BA.debugLine="Log(\"distancia ruta 2:\" & (distanciaTotal) & \"|"; -parent.__c.LogImpl("810354797","distancia ruta 2:"+BA.NumberToString((_distanciatotal))+"|"+BA.ObjectToString(_rutas2.Get((Object)("distance"))),0); - //BA.debugLineNum = 410;BA.debugLine="distanciaTotal = distanciaTotal + distanciaTota"; + //BA.debugLineNum = 424;BA.debugLine="Log(\"distancia ruta 2:\" & (distanciaTotal) & \"|"; +parent.__c.LogImpl("246006381","distancia ruta 2:"+BA.NumberToString((_distanciatotal))+"|"+BA.ObjectToString(_rutas2.Get((Object)("distance"))),0); + //BA.debugLineNum = 425;BA.debugLine="distanciaTotal = distanciaTotal + distanciaTota"; _distanciatotal = _distanciatotal+_distanciatotal0; - //BA.debugLineNum = 411;BA.debugLine="tiempo = rutas2.Get(\"duration\")"; + //BA.debugLineNum = 426;BA.debugLine="tiempo = rutas2.Get(\"duration\")"; _tiempo = (double)(BA.ObjectToNumber(_rutas2.Get((Object)("duration")))); - //BA.debugLineNum = 412;BA.debugLine="tiempo = (((tiempo + tiempo0) * 2) + tiempoVisi"; + //BA.debugLineNum = 427;BA.debugLine="tiempo = (((tiempo + tiempo0) * 2) + tiempoVisi"; _tiempo = (((_tiempo+_tiempo0)*2)+_tiempovisitas); - //BA.debugLineNum = 413;BA.debugLine="Log($\"Distancia total: $1.1{distanciaTotal/1000"; -parent.__c.LogImpl("810354801",("Distancia total: "+parent.__c.SmartStringFormatter("1.1",(Object)(_distanciatotal/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo/(double)60))+" mins. ("+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo/(double)60/(double)60))+" hrs)"),0); - //BA.debugLineNum = 414;BA.debugLine="l_rutaInfo.Text = $\"Distancia: $1.1{distanciaTo"; + //BA.debugLineNum = 428;BA.debugLine="Log($\"Distancia total: $1.1{distanciaTotal/1000"; +parent.__c.LogImpl("246006385",("Distancia total: "+parent.__c.SmartStringFormatter("1.1",(Object)(_distanciatotal/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo/(double)60))+" mins. ("+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo/(double)60/(double)60))+" hrs)"),0); + //BA.debugLineNum = 429;BA.debugLine="l_rutaInfo.Text = $\"Distancia: $1.1{distanciaTo"; parent._l_rutainfo.setText(BA.ObjectToCharSequence(("Distancia: "+parent.__c.SmartStringFormatter("1.1",(Object)(_distanciatotal/(double)1000))+" kms, tiempo aprox: "+parent.__c.SmartStringFormatter("1.1",(Object)(_tiempo/(double)60/(double)60))+" hrs"+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+"Visitas restantes: "+parent.__c.SmartStringFormatter("",(Object)(_avisitar._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().getSize()))+""))); - //BA.debugLineNum = 415;BA.debugLine="l_rutaInfo.Width = Root.Width * 0.9"; + //BA.debugLineNum = 430;BA.debugLine="l_rutaInfo.Width = Root.Width * 0.9"; parent._l_rutainfo.setWidth((int) (parent._root.getWidth()*0.9)); - //BA.debugLineNum = 416;BA.debugLine="Subs.centraEtiqueta(l_rutaInfo, Root.Width)"; + //BA.debugLineNum = 431;BA.debugLine="Subs.centraEtiqueta(l_rutaInfo, Root.Width)"; parent._subs._centraetiqueta /*String*/ (ba,parent._l_rutainfo,parent._root.getWidth()); - //BA.debugLineNum = 417;BA.debugLine="l_rutaInfo.Visible = True"; + //BA.debugLineNum = 432;BA.debugLine="l_rutaInfo.Visible = True"; parent._l_rutainfo.setVisible(parent.__c.True); - //BA.debugLineNum = 418;BA.debugLine="l_rutaInfo.BringToFront"; + //BA.debugLineNum = 433;BA.debugLine="l_rutaInfo.BringToFront"; parent._l_rutainfo.BringToFront(); - //BA.debugLineNum = 419;BA.debugLine="ListView1.Top = lv1Top + 100"; + //BA.debugLineNum = 434;BA.debugLine="ListView1.Top = lv1Top + 100"; parent._listview1.setTop((int) ((double)(Double.parseDouble(parent._lv1top))+100)); if (true) break; @@ -2232,28 +2271,28 @@ this.state = 53; case 52: //C this.state = 53; - //BA.debugLineNum = 422;BA.debugLine="LogColor(\"**************** Error! ************"; -parent.__c.LogImpl("810354810","**************** Error! ******************",parent.__c.Colors.Red); + //BA.debugLineNum = 437;BA.debugLine="LogColor(\"**************** Error! ************"; +parent.__c.LogImpl("246006394","**************** Error! ******************",parent.__c.Colors.Red); if (true) break; case 53: //C this.state = 54; ; - //BA.debugLineNum = 424;BA.debugLine="j.Release"; + //BA.debugLineNum = 439;BA.debugLine="j.Release"; _j._release /*String*/ (); - //BA.debugLineNum = 425;BA.debugLine="ProgressDialogHide"; + //BA.debugLineNum = 440;BA.debugLine="ProgressDialogHide"; parent.__c.ProgressDialogHide(); - //BA.debugLineNum = 427;BA.debugLine="Private r As Int = 1"; + //BA.debugLineNum = 442;BA.debugLine="Private r As Int = 1"; _r = (int) (1); - //BA.debugLineNum = 428;BA.debugLine="Private r1, wps As Map"; + //BA.debugLineNum = 443;BA.debugLine="Private r1, wps As Map"; _r1 = new anywheresoftware.b4a.objects.collections.Map(); _wps = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 429;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints\""; + //BA.debugLineNum = 444;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints\""; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from waypoints"); - //BA.debugLineNum = 430;BA.debugLine="Log(\"BORRAMOS WAYPOINTS\")"; -parent.__c.LogImpl("810354818","BORRAMOS WAYPOINTS",0); - //BA.debugLineNum = 431;BA.debugLine="For Each k As Object In clientesMapaO.Keys 'Guard"; + //BA.debugLineNum = 445;BA.debugLine="Log(\"BORRAMOS WAYPOINTS\")"; +parent.__c.LogImpl("246006402","BORRAMOS WAYPOINTS",0); + //BA.debugLineNum = 446;BA.debugLine="For Each k As Object In clientesMapaO.Keys 'Guard"; if (true) break; case 54: @@ -2282,7 +2321,7 @@ if (true) break; case 56: //C this.state = 57; - //BA.debugLineNum = 432;BA.debugLine="If listaWayPoints.Size > 0 Then"; + //BA.debugLineNum = 447;BA.debugLine="If listaWayPoints.Size > 0 Then"; if (true) break; case 57: @@ -2295,19 +2334,19 @@ this.state = 59; case 59: //C this.state = 60; - //BA.debugLineNum = 433;BA.debugLine="r1 = clientesMapaO.Get(k)"; + //BA.debugLineNum = 448;BA.debugLine="r1 = clientesMapaO.Get(k)"; _r1 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._clientesmapao._get /*Object*/ (_k))); - //BA.debugLineNum = 434;BA.debugLine="r1.Get(\"codigo\")"; + //BA.debugLineNum = 449;BA.debugLine="r1.Get(\"codigo\")"; _r1.Get((Object)("codigo")); - //BA.debugLineNum = 435;BA.debugLine="Log(listaWayPoints.Get(r) & \"|\" & r1.Get(\"coord"; -parent.__c.LogImpl("810354823",BA.ObjectToString(parent._listawaypoints.Get(_r))+"|"+BA.ObjectToString(_r1.Get((Object)("coords")))+"|"+BA.ObjectToString(_r1.Get((Object)("calle"))),0); - //BA.debugLineNum = 436;BA.debugLine="wps = listaWayPoints.Get(r)"; + //BA.debugLineNum = 450;BA.debugLine="Log(listaWayPoints.Get(r) & \"|\" & r1.Get(\"coord"; +parent.__c.LogImpl("246006407",BA.ObjectToString(parent._listawaypoints.Get(_r))+"|"+BA.ObjectToString(_r1.Get((Object)("coords")))+"|"+BA.ObjectToString(_r1.Get((Object)("calle"))),0); + //BA.debugLineNum = 451;BA.debugLine="wps = listaWayPoints.Get(r)"; _wps = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(parent._listawaypoints.Get(_r))); - //BA.debugLineNum = 437;BA.debugLine="Starter.skmt.ExecNonQuery($\"update kmt_info set"; + //BA.debugLineNum = 452;BA.debugLine="Starter.skmt.ExecNonQuery($\"update kmt_info set"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update kmt_info set SECUENCIA = "+parent.__c.SmartStringFormatter("",_wps.Get((Object)("waypoint_index")))+" where CAT_CL_CODIGO = '"+parent.__c.SmartStringFormatter("",_r1.Get((Object)("codigo")))+"'")); - //BA.debugLineNum = 438;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into waypoin"; + //BA.debugLineNum = 453;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into waypoin"; parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("insert into waypoints values (?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{_r1.Get((Object)("codigo")),_wps.Get((Object)("waypoint_index"))})); - //BA.debugLineNum = 439;BA.debugLine="r = r + 1"; + //BA.debugLineNum = 454;BA.debugLine="r = r + 1"; _r = (int) (_r+1); if (true) break; @@ -2322,9 +2361,9 @@ case 61: //C this.state = 62; ; - //BA.debugLineNum = 442;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 457;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); - //BA.debugLineNum = 443;BA.debugLine="Sleep(100)"; + //BA.debugLineNum = 458;BA.debugLine="Sleep(100)"; parent.__c.Sleep(ba,this,(int) (100)); this.state = 80; return; @@ -2332,26 +2371,26 @@ case 80: //C this.state = 62; ; - //BA.debugLineNum = 444;BA.debugLine="Dim label2 As Label"; + //BA.debugLineNum = 459;BA.debugLine="Dim label2 As Label"; _label2 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 445;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; + //BA.debugLineNum = 460;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; _label2 = parent._listview1.getTwoLinesLayout().SecondLabel; - //BA.debugLineNum = 446;BA.debugLine="label2.TextSize = 15"; + //BA.debugLineNum = 461;BA.debugLine="label2.TextSize = 15"; _label2.setTextSize((float) (15)); - //BA.debugLineNum = 447;BA.debugLine="label2.Height = 100dip"; + //BA.debugLineNum = 462;BA.debugLine="label2.Height = 100dip"; _label2.setHeight(parent.__c.DipToCurrent((int) (100))); - //BA.debugLineNum = 448;BA.debugLine="ListView1.TwoLinesLayout.ItemHeight = 70dip"; + //BA.debugLineNum = 463;BA.debugLine="ListView1.TwoLinesLayout.ItemHeight = 70dip"; parent._listview1.getTwoLinesLayout().setItemHeight(parent.__c.DipToCurrent((int) (70))); - //BA.debugLineNum = 449;BA.debugLine="Dim cs, cs2 As CSBuilder"; + //BA.debugLineNum = 464;BA.debugLine="Dim cs, cs2 As CSBuilder"; _cs = new anywheresoftware.b4a.objects.CSBuilder(); _cs2 = new anywheresoftware.b4a.objects.CSBuilder(); - //BA.debugLineNum = 450;BA.debugLine="entro = 3"; + //BA.debugLineNum = 465;BA.debugLine="entro = 3"; parent._entro = BA.NumberToString(3); - //BA.debugLineNum = 451;BA.debugLine="Log(\"Generamos ListView1 en traeRutaDia\")"; -parent.__c.LogImpl("810354839","Generamos ListView1 en traeRutaDia",0); - //BA.debugLineNum = 453;BA.debugLine="c=Starter.skmt.ExecQuery(\"select codigo, indice,"; + //BA.debugLineNum = 466;BA.debugLine="Log(\"Generamos ListView1 en traeRutaDia\")"; +parent.__c.LogImpl("246006423","Generamos ListView1 en traeRutaDia",0); + //BA.debugLineNum = 468;BA.debugLine="c=Starter.skmt.ExecQuery(\"select codigo, indice,"; parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select codigo, indice, CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_NOEXT from waypoints inner join kmt_info on waypoints.codigo = kmt_info.CAT_CL_CODIGO where gestion = 0 AND CAT_CL_RUTA <> 1000 order by indice"))); - //BA.debugLineNum = 454;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 469;BA.debugLine="If c.RowCount > 0 Then"; if (true) break; case 62: @@ -2364,7 +2403,7 @@ this.state = 64; case 64: //C this.state = 65; - //BA.debugLineNum = 455;BA.debugLine="For i=0 To c.RowCount -1 'Generamos el listView"; + //BA.debugLineNum = 470;BA.debugLine="For i=0 To c.RowCount -1 'Generamos el listView"; if (true) break; case 65: @@ -2391,13 +2430,13 @@ if (true) break; case 67: //C this.state = 82; - //BA.debugLineNum = 456;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 471;BA.debugLine="c.Position=i"; parent._c.setPosition(_i); - //BA.debugLineNum = 457;BA.debugLine="cs.Initialize"; + //BA.debugLineNum = 472;BA.debugLine="cs.Initialize"; _cs.Initialize(); - //BA.debugLineNum = 458;BA.debugLine="cs2.Initialize"; + //BA.debugLineNum = 473;BA.debugLine="cs2.Initialize"; _cs2.Initialize(); - //BA.debugLineNum = 459;BA.debugLine="ListView1.AddTwoLines(cs.Color(Colors.RGB(100,1"; + //BA.debugLineNum = 474;BA.debugLine="ListView1.AddTwoLines(cs.Color(Colors.RGB(100,1"; parent._listview1.AddTwoLines(BA.ObjectToCharSequence(_cs.Color(parent.__c.Colors.RGB((int) (100),(int) (149),(int) (237))).Append(BA.ObjectToCharSequence(parent._c.GetString("codigo"))).PopAll().getObject()),BA.ObjectToCharSequence(_cs2.Append(BA.ObjectToCharSequence(parent._c.GetString("CAT_CL_NOMBRE"))).Color(parent.__c.Colors.RGB((int) (100),(int) (149),(int) (237))).Append(BA.ObjectToCharSequence(" Calle: ")).Pop().Append(BA.ObjectToCharSequence(parent._c.GetString("CAT_CL_CALLE").trim()+" "+parent._c.GetString("CAT_CL_NOEXT"))).PopAll().getObject())); if (true) break; if (true) break; @@ -2412,9 +2451,9 @@ case 69: //C this.state = -1; ; - //BA.debugLineNum = 462;BA.debugLine="c.Close"; + //BA.debugLineNum = 477;BA.debugLine="c.Close"; parent._c.Close(); - //BA.debugLineNum = 463;BA.debugLine="End Sub"; + //BA.debugLineNum = 478;BA.debugLine="End Sub"; if (true) break; } @@ -2428,76 +2467,76 @@ int _i = 0; int _j = 0; int _distancia = 0; anywheresoftware.b4a.objects.collections.Map _estecliente = null; - //BA.debugLineNum = 515;BA.debugLine="Sub traeTodosAVisitar As B4XOrderedMap 'ignore"; - //BA.debugLineNum = 516;BA.debugLine="Log(\"Iniciamos traeTodosAVisitar\")"; -__c.LogImpl("810485761","Iniciamos traeTodosAVisitar",0); - //BA.debugLineNum = 519;BA.debugLine="Private thisLoc, ubicacionInicial As Location"; + //BA.debugLineNum = 530;BA.debugLine="Sub traeTodosAVisitar As B4XOrderedMap 'ignore"; + //BA.debugLineNum = 531;BA.debugLine="Log(\"Iniciamos traeTodosAVisitar\")"; +__c.LogImpl("246137345","Iniciamos traeTodosAVisitar",0); + //BA.debugLineNum = 534;BA.debugLine="Private thisLoc, ubicacionInicial As Location"; _thisloc = new anywheresoftware.b4a.gps.LocationWrapper(); _ubicacioninicial = new anywheresoftware.b4a.gps.LocationWrapper(); - //BA.debugLineNum = 520;BA.debugLine="ubicacionInicial = Starter.cedisLocation"; + //BA.debugLineNum = 535;BA.debugLine="ubicacionInicial = Starter.cedisLocation"; _ubicacioninicial = _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ ; - //BA.debugLineNum = 521;BA.debugLine="LogColor(ubicacionInicial, Colors.Gray)"; -__c.LogImpl("810485766",BA.ObjectToString(_ubicacioninicial),__c.Colors.Gray); - //BA.debugLineNum = 522;BA.debugLine="c=Starter.skmt.ExecQuery(\"select sum(gestion) as"; + //BA.debugLineNum = 536;BA.debugLine="LogColor(ubicacionInicial, Colors.Gray)"; +__c.LogImpl("246137350",BA.ObjectToString(_ubicacioninicial),__c.Colors.Gray); + //BA.debugLineNum = 537;BA.debugLine="c=Starter.skmt.ExecQuery(\"select sum(gestion) as"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select sum(gestion) as hayVisitados from kmt_info"))); - //BA.debugLineNum = 523;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 538;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 524;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 539;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 526;BA.debugLine="If c.GetString(\"hayVisitados\") > 0 Then ubicacio"; + //BA.debugLineNum = 541;BA.debugLine="If c.GetString(\"hayVisitados\") > 0 Then ubicacio"; if ((double)(Double.parseDouble(_c.GetString("hayVisitados")))>0) { _ubicacioninicial = _tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ ;}; }; - //BA.debugLineNum = 528;BA.debugLine="c.Close"; + //BA.debugLineNum = 543;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 529;BA.debugLine="LogColor(ubicacionInicial, Colors.Red)"; -__c.LogImpl("810485774",BA.ObjectToString(_ubicacioninicial),__c.Colors.Red); - //BA.debugLineNum = 530;BA.debugLine="thisLoc.Initialize"; + //BA.debugLineNum = 544;BA.debugLine="LogColor(ubicacionInicial, Colors.Red)"; +__c.LogImpl("246137358",BA.ObjectToString(_ubicacioninicial),__c.Colors.Red); + //BA.debugLineNum = 545;BA.debugLine="thisLoc.Initialize"; _thisloc.Initialize(); - //BA.debugLineNum = 531;BA.debugLine="clientesMapaO.Clear"; + //BA.debugLineNum = 546;BA.debugLine="clientesMapaO.Clear"; _clientesmapao._clear /*String*/ (); - //BA.debugLineNum = 533;BA.debugLine="c=Starter.skmt.ExecQuery(\"select CAT_CL_RUTA, cou"; + //BA.debugLineNum = 548;BA.debugLine="c=Starter.skmt.ExecQuery(\"select CAT_CL_RUTA, cou"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_RUTA, count(*) as cuantos from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000 group by CAT_CL_RUTA order by CAT_CL_RUTA asc"))); - //BA.debugLineNum = 534;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 549;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 536;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 551;BA.debugLine="For i=0 To c.RowCount -1"; { final int step16 = 1; final int limit16 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit16 ;_i = _i + step16 ) { - //BA.debugLineNum = 537;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 552;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 539;BA.debugLine="c2=Starter.skmt.ExecQuery2(\"select CAT_CL_NOMB"; + //BA.debugLineNum = 554;BA.debugLine="c2=Starter.skmt.ExecQuery2(\"select CAT_CL_NOMB"; _c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("select CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_CODIGO, CAT_CL_LAT, CAT_CL_LONG from kmt_info where CAT_CL_RUTA = ? and gestion = 0 AND CAT_CL_RUTA <> 1000 order by CAT_CL_NOMBRE ",new String[]{_c.GetString("CAT_CL_RUTA")}))); - //BA.debugLineNum = 540;BA.debugLine="If c2.RowCount>0 Then"; + //BA.debugLineNum = 555;BA.debugLine="If c2.RowCount>0 Then"; if (_c2.getRowCount()>0) { - //BA.debugLineNum = 541;BA.debugLine="For j=0 To c2.RowCount -1 'Generamos lista de"; + //BA.debugLineNum = 556;BA.debugLine="For j=0 To c2.RowCount -1 'Generamos lista de"; { final int step20 = 1; final int limit20 = (int) (_c2.getRowCount()-1); _j = (int) (0) ; for (;_j <= limit20 ;_j = _j + step20 ) { - //BA.debugLineNum = 542;BA.debugLine="c2.Position=j"; + //BA.debugLineNum = 557;BA.debugLine="c2.Position=j"; _c2.setPosition(_j); - //BA.debugLineNum = 544;BA.debugLine="thisLoc.Latitude = c2.GetString(\"CAT_CL_LAT\")"; + //BA.debugLineNum = 559;BA.debugLine="thisLoc.Latitude = c2.GetString(\"CAT_CL_LAT\")"; _thisloc.setLatitude((double)(Double.parseDouble(_c2.GetString("CAT_CL_LAT")))); - //BA.debugLineNum = 545;BA.debugLine="thisLoc.Longitude = c2.GetString(\"CAT_CL_LONG"; + //BA.debugLineNum = 560;BA.debugLine="thisLoc.Longitude = c2.GetString(\"CAT_CL_LONG"; _thisloc.setLongitude((double)(Double.parseDouble(_c2.GetString("CAT_CL_LONG")))); - //BA.debugLineNum = 546;BA.debugLine="If Not(thisLoc.Latitude = 0.0) And Not(thisLo"; + //BA.debugLineNum = 561;BA.debugLine="If Not(thisLoc.Latitude = 0.0) And Not(thisLo"; if (__c.Not(_thisloc.getLatitude()==0.0) && __c.Not(_thisloc.getLatitude()==0)) { - //BA.debugLineNum = 547;BA.debugLine="Private distancia As Int = ubicacionInicial."; + //BA.debugLineNum = 562;BA.debugLine="Private distancia As Int = ubicacionInicial."; _distancia = (int) (_ubicacioninicial.DistanceTo((android.location.Location)(_thisloc.getObject()))); - //BA.debugLineNum = 548;BA.debugLine="If clientesMapaO.ContainsKey(distancia) Then"; + //BA.debugLineNum = 563;BA.debugLine="If clientesMapaO.ContainsKey(distancia) Then"; if (_clientesmapao._containskey /*boolean*/ ((Object)(_distancia))) { _distancia = (int) (_distancia+1);}; - //BA.debugLineNum = 549;BA.debugLine="Private esteCliente As Map = CreateMap(\"dist"; + //BA.debugLineNum = 564;BA.debugLine="Private esteCliente As Map = CreateMap(\"dist"; _estecliente = new anywheresoftware.b4a.objects.collections.Map(); _estecliente = __c.createMap(new Object[] {(Object)("distancia"),(Object)(_distancia),(Object)("ordenDist"),(Object)(_j),(Object)("coords"),(Object)(_c2.GetString("CAT_CL_LONG")+","+_c2.GetString("CAT_CL_LAT")),(Object)("codigo"),(Object)(_c2.GetString("CAT_CL_CODIGO")),(Object)("nombre"),(Object)(_c2.GetString("CAT_CL_NOMBRE")),(Object)("calle"),(Object)(_c2.GetString("CAT_CL_CALLE"))}); - //BA.debugLineNum = 550;BA.debugLine="clientesMapaO.Put(distancia, esteCliente)"; + //BA.debugLineNum = 565;BA.debugLine="clientesMapaO.Put(distancia, esteCliente)"; _clientesmapao._put /*String*/ ((Object)(_distancia),(Object)(_estecliente.getObject())); }else { - //BA.debugLineNum = 552;BA.debugLine="ToastMessageShow(\"Hay tiendas SIN coordenada"; + //BA.debugLineNum = 567;BA.debugLine="ToastMessageShow(\"Hay tiendas SIN coordenada"; __c.ToastMessageShow(BA.ObjectToCharSequence("Hay tiendas SIN coordenadas, fueron excluidas!!"),__c.False); }; } @@ -2506,17 +2545,17 @@ __c.ToastMessageShow(BA.ObjectToCharSequence("Hay tiendas SIN coordenadas, fuero } }; }; - //BA.debugLineNum = 560;BA.debugLine="clientesMapaO.Keys.Sort(True) 'Ordenamos la lista"; + //BA.debugLineNum = 575;BA.debugLine="clientesMapaO.Keys.Sort(True) 'Ordenamos la lista"; _clientesmapao._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().Sort(__c.True); - //BA.debugLineNum = 561;BA.debugLine="c.Close"; + //BA.debugLineNum = 576;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 562;BA.debugLine="c2.Close"; + //BA.debugLineNum = 577;BA.debugLine="c2.Close"; _c2.Close(); - //BA.debugLineNum = 563;BA.debugLine="Log(c.RowCount & \" rutas, \" & clientesMapaO.Size"; -__c.LogImpl("810485808",BA.NumberToString(_c.getRowCount())+" rutas, "+BA.NumberToString(_clientesmapao._getsize /*int*/ ())+" clientes",0); - //BA.debugLineNum = 566;BA.debugLine="Return clientesMapaO"; + //BA.debugLineNum = 578;BA.debugLine="Log(c.RowCount & \" rutas, \" & clientesMapaO.Size"; +__c.LogImpl("246137392",BA.NumberToString(_c.getRowCount())+" rutas, "+BA.NumberToString(_clientesmapao._getsize /*int*/ ())+" clientes",0); + //BA.debugLineNum = 581;BA.debugLine="Return clientesMapaO"; if (true) return _clientesmapao; - //BA.debugLineNum = 567;BA.debugLine="End Sub"; + //BA.debugLineNum = 582;BA.debugLine="End Sub"; return null; } public Object callSub(String sub, Object sender, Object[] args) throws Exception { diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_detalleventa.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_detalleventa.java index 030a369..e24e769 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_detalleventa.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_detalleventa.java @@ -102,7 +102,7 @@ anywheresoftware.b4a.sql.SQL.CursorWrapper _c2 = null; //BA.debugLineNum = 651;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 653;BA.debugLine="LogColor(\"b_prodMas_Click\", Colors.Magenta)"; -__c.LogImpl("812124163","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("247775747","b_prodMas_Click",__c.Colors.Magenta); //BA.debugLineNum = 654;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 655;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -118,14 +118,14 @@ _lacant = _pnl.GetView((int) (2)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacant.getTag()))); //BA.debugLineNum = 662;BA.debugLine="Log(\"LC_TEXT:\"&laCant.Text&\"|LC_TAG:\"&laCant.Tag&"; -__c.LogImpl("812124172","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("247775756","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 663;BA.debugLine="If laCant.Text = \"\" Then laCant.Text = 0"; if ((_lacant.getText()).equals("")) { _lacant.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 665;BA.debugLine="Private maxProds = esteTag.Get(1) + esteTag.Get(4"; _maxprods = BA.NumberToString((double)(BA.ObjectToNumber(_estetag.Get((int) (1))))+(double)(BA.ObjectToNumber(_estetag.Get((int) (4))))); //BA.debugLineNum = 667;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("812124177",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("247775761",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 670;BA.debugLine="Private minimoadesc As String"; _minimoadesc = ""; //BA.debugLineNum = 671;BA.debugLine="Dim minimos As Cursor = Starter.skmt.ExecQuery2(\""; @@ -152,7 +152,7 @@ if ((_estetag.Get((int) (5))).equals(_estetag.Get((int) (6)))) { //BA.debugLineNum = 686;BA.debugLine="If laCant.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacant.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 687;BA.debugLine="Log($\"NuevaCant = ${laCant.Text + 1}\"$)"; -__c.LogImpl("812124197",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("247775781",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); //BA.debugLineNum = 688;BA.debugLine="laCant.Text = $\"$1.0{laCant.Text + 1}\"$"; _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""))); //BA.debugLineNum = 689;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunapro"; @@ -168,7 +168,7 @@ _b4xpage_appear(); //BA.debugLineNum = 703;BA.debugLine="If laCant.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacant.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 704;BA.debugLine="Log($\"NuevaCant = ${laCant.Text + 1}\"$)"; -__c.LogImpl("812124214",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("247775798",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); //BA.debugLineNum = 705;BA.debugLine="laCant.Text = $\"$1.0{laCant.Text + 1}\"$"; _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""))); //BA.debugLineNum = 706;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunapro"; @@ -220,7 +220,7 @@ String _maxprods = ""; //BA.debugLineNum = 929;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 931;BA.debugLine="LogColor(\"b_prodMas_Click\", Colors.Magenta)"; -__c.LogImpl("812451843","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("248103427","b_prodMas_Click",__c.Colors.Magenta); //BA.debugLineNum = 932;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 933;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -236,30 +236,30 @@ _lacantc = _pnl.GetView((int) (3)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacantc.getTag()))); //BA.debugLineNum = 940;BA.debugLine="Log(\"LC_TEXT:\"&laCantc.Text&\"|LC_TAG:\"&laCantc.Ta"; -__c.LogImpl("812451852","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("248103436","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 941;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 943;BA.debugLine="Private maxProds As String = (esteTag.Get(1) + es"; _maxprods = BA.NumberToString(((double)(BA.ObjectToNumber(_estetag.Get((int) (1))))+(double)(BA.ObjectToNumber(_estetag.Get((int) (4)))))); //BA.debugLineNum = 944;BA.debugLine="LogColor(esteTag.Get(1),Colors.Red)"; -__c.LogImpl("812451856",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); +__c.LogImpl("248103440",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); //BA.debugLineNum = 945;BA.debugLine="LogColor(esteTag.Get(4),Colors.Red)"; -__c.LogImpl("812451857",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); +__c.LogImpl("248103441",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); //BA.debugLineNum = 946;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("812451858",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("248103442",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 948;BA.debugLine="Log(maxProds)"; -__c.LogImpl("812451860",_maxprods,0); +__c.LogImpl("248103444",_maxprods,0); //BA.debugLineNum = 951;BA.debugLine="If esteTag.Get(7) <> \"1\" Then"; if ((_estetag.Get((int) (7))).equals((Object)("1")) == false) { //BA.debugLineNum = 954;BA.debugLine="If laCantc.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacantc.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 955;BA.debugLine="Log($\"NuevaCant = ${laCantc.Text + 1}\"$)"; -__c.LogImpl("812451867",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); +__c.LogImpl("248103451",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); //BA.debugLineNum = 956;BA.debugLine="laCantc.Text = $\"$1.0{laCantc.Text + 1}\"$"; _lacantc.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""))); //BA.debugLineNum = 958;BA.debugLine="Log(laCantc.Text)"; -__c.LogImpl("812451870",_lacantc.getText(),0); +__c.LogImpl("248103454",_lacantc.getText(),0); //BA.debugLineNum = 959;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VENTAS"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENTAS set HVD_RECHAZO = 1, HVD_RECHAZOCANT = IFNULL(HVD_RECHAZOCANT,0) -(1 * "+__c.SmartStringFormatter("",(Object)(_subs._traeconversion /*String*/ (ba,BA.ObjectToString(_estetag.Get((int) (2))))))+") WHERE HVD_PROID = '"+__c.SmartStringFormatter("",_estetag.Get((int) (2)))+"' and HVD_cliente in (Select CUENTA from cuentaa) AND CONSECUTIVO = '"+__c.SmartStringFormatter("",_estetag.Get((int) (8)))+"'")); //BA.debugLineNum = 967;BA.debugLine="B4XPage_Appear"; @@ -284,9 +284,9 @@ float _preciou = 0f; //BA.debugLineNum = 507;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 508;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("812058626","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("247710210","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 509;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("812058627","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("247710211","b_prodMenos_Click",__c.Colors.Magenta); //BA.debugLineNum = 510;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 511;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -302,7 +302,7 @@ _lacant = _pnl.GetView((int) (2)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacant.getTag()))); //BA.debugLineNum = 516;BA.debugLine="Log(\"LC_TEXT:\"&laCant.Text&\"|PROMO:\"&esteTag.Get("; -__c.LogImpl("812058634","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("247710218","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 517;BA.debugLine="Private minimoadesc As String"; _minimoadesc = ""; //BA.debugLineNum = 518;BA.debugLine="Dim minimos As Cursor = Starter.skmt.ExecQuery2(\""; @@ -381,9 +381,9 @@ _c2.setPosition((int) (0)); //BA.debugLineNum = 563;BA.debugLine="If c2.GetString(\"HVD_RECHAZO\") = \"0\" Then"; if ((_c2.GetString("HVD_RECHAZO")).equals("0")) { //BA.debugLineNum = 566;BA.debugLine="Log(\"ES PROMO\")"; -__c.LogImpl("812058684","ES PROMO",0); +__c.LogImpl("247710268","ES PROMO",0); //BA.debugLineNum = 567;BA.debugLine="Log(esteTag.Get(3))"; -__c.LogImpl("812058685",BA.ObjectToString(_estetag.Get((int) (3))),0); +__c.LogImpl("247710269",BA.ObjectToString(_estetag.Get((int) (3))),0); //BA.debugLineNum = 568;BA.debugLine="result = Msgbox2(\"Si se modifica una promoc"; _result = BA.NumberToString(__c.Msgbox2(BA.ObjectToCharSequence("Si se modifica una promoción, la promoción se rompe y solo quedarán los productos sueltos, ¿seguro que desea continuar?"),BA.ObjectToCharSequence("Modificar Promoción"),"Si","","No",(android.graphics.Bitmap)(__c.LoadBitmap(__c.File.getDirAssets(),"alert2.png").getObject()),ba)); //BA.debugLineNum = 569;BA.debugLine="If result = DialogResponse.POSITIVE Then 'Qu"; @@ -391,7 +391,7 @@ if ((_result).equals(BA.NumberToString(__c.DialogResponse.POSITIVE))) { //BA.debugLineNum = 570;BA.debugLine="prodsMap.Remove(esteTag.Get(3))"; _prodsmap.Remove(_estetag.Get((int) (3))); //BA.debugLineNum = 574;BA.debugLine="LogColor(esteTag.Get(3),Colors.Blue)"; -__c.LogImpl("812058692",BA.ObjectToString(_estetag.Get((int) (3))),__c.Colors.Blue); +__c.LogImpl("247710276",BA.ObjectToString(_estetag.Get((int) (3))),__c.Colors.Blue); //BA.debugLineNum = 577;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VEN"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENTAS set HVD_RECHAZO = 1, HVD_RECHAZOCANT = HVD_CANT WHERE HVD_CODPROMO = '"+__c.SmartStringFormatter("",_estetag.Get((int) (3)))+"' and HVD_CLIENTE in (Select CUENTA from cuentaa)")); //BA.debugLineNum = 578;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VEN"; @@ -399,7 +399,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENT //BA.debugLineNum = 581;BA.debugLine="c.Close"; _c.Close(); //BA.debugLineNum = 582;BA.debugLine="LogColor(prodsMap, Colors.red)"; -__c.LogImpl("812058700",BA.ObjectToString(_prodsmap),__c.Colors.Red); +__c.LogImpl("247710284",BA.ObjectToString(_prodsmap),__c.Colors.Red); //BA.debugLineNum = 583;BA.debugLine="reconstruirPedido = True"; _reconstruirpedido = __c.True; //BA.debugLineNum = 584;BA.debugLine="promoABorrar = esteTag.Get(3)"; @@ -417,7 +417,7 @@ _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Obje if ((double)(Double.parseDouble(_lacant.getText()))<0) { _lacant.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 591;BA.debugLine="Log(\"NO ES promo\")"; -__c.LogImpl("812058709","NO ES promo",0); +__c.LogImpl("247710293","NO ES promo",0); //BA.debugLineNum = 592;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VENT"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENTAS set HVD_RECHAZO = 1, HVD_RECHAZOCANT = IFNULL(HVD_RECHAZOCANT,0) + (1*'"+__c.SmartStringFormatter("",(Object)(_minimoadesc))+"') WHERE HVD_PROID = '"+__c.SmartStringFormatter("",_estetag.Get((int) (2)))+"' and HVD_cliente in (Select CUENTA from cuentaa) AND CONSECUTIVO = '"+__c.SmartStringFormatter("",_estetag.Get((int) (8)))+"'")); //BA.debugLineNum = 593;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunap"; @@ -435,7 +435,7 @@ _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Obje if ((double)(Double.parseDouble(_lacant.getText()))<0) { _lacant.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 600;BA.debugLine="Log(\"NO ES promo\")"; -__c.LogImpl("812058718","NO ES promo",0); +__c.LogImpl("247710302","NO ES promo",0); //BA.debugLineNum = 601;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VENTA"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENTAS set HVD_RECHAZO = 1, HVD_RECHAZOCANT = IFNULL(HVD_RECHAZOCANT,0) + (1*'"+__c.SmartStringFormatter("",(Object)(_minimoadesc))+"'), BCAJAS = 0, CANTC = 0 WHERE HVD_PROID = '"+__c.SmartStringFormatter("",_estetag.Get((int) (2)))+"' and HVD_cliente in (Select CUENTA from cuentaa) AND CONSECUTIVO = '"+__c.SmartStringFormatter("",_estetag.Get((int) (8)))+"'")); //BA.debugLineNum = 602;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunapr"; @@ -454,7 +454,7 @@ _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Obje if ((double)(Double.parseDouble(_lacant.getText()))<0) { _lacant.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 611;BA.debugLine="Log(\"NO ES promo\")"; -__c.LogImpl("812058729","NO ES promo",0); +__c.LogImpl("247710313","NO ES promo",0); //BA.debugLineNum = 616;BA.debugLine="Private c3 As Cursor = Starter.skmt.ExecQuery2("; _c3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("SELECT PE_CANT FROM PEDIDO WHERE PE_PROID = ? AND PE_CLIENTE IN (SELECT CUENTA FROM CUENTAA) AND CONSECUTIVO = ?",new String[]{BA.ObjectToString(_estetag.Get((int) (2))),BA.ObjectToString(_estetag.Get((int) (8)))}))); @@ -494,7 +494,7 @@ _b4xpage_appear(); //BA.debugLineNum = 636;BA.debugLine="Dim preciou As Float = esteTag.Get(0)/esteTag.Get"; _preciou = (float) ((double)(BA.ObjectToNumber(_estetag.Get((int) (0))))/(double)(double)(BA.ObjectToNumber(_estetag.Get((int) (1))))); //BA.debugLineNum = 637;BA.debugLine="Log(\"PU: \" & preciou)"; -__c.LogImpl("812058755","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("247710339","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 648;BA.debugLine="End Sub"; return ""; } @@ -510,9 +510,9 @@ float _preciou = 0f; //BA.debugLineNum = 973;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 974;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("812517378","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("248168962","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 975;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("812517379","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("248168963","b_prodMenos_Click",__c.Colors.Magenta); //BA.debugLineNum = 976;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 977;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -528,22 +528,22 @@ _lacantc = _pnl.GetView((int) (3)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacantc.getTag()))); //BA.debugLineNum = 982;BA.debugLine="Log(\"LC_TEXT:\"&laCantc.Text&\"|PROMO:\"&esteTag.Get"; -__c.LogImpl("812517386","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("248168970","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 983;BA.debugLine="Log(esteTag)"; -__c.LogImpl("812517387",BA.ObjectToString(_estetag),0); +__c.LogImpl("248168971",BA.ObjectToString(_estetag),0); //BA.debugLineNum = 985;BA.debugLine="If esteTag.Get(7) = \"1\" Then"; if ((_estetag.Get((int) (7))).equals((Object)("1"))) { //BA.debugLineNum = 986;BA.debugLine="Private c3 As Cursor = Starter.skmt.ExecQuery2(\""; _c3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("SELECT PE_CAJAS, CONSECUTIVO FROM PEDIDO WHERE PE_PROID = ? AND PE_CLIENTE IN (SELECT CUENTA FROM CUENTAA) AND CONSECUTIVO = ? ",new String[]{BA.ObjectToString(_estetag.Get((int) (2))),BA.ObjectToString(_estetag.Get((int) (8)))}))); //BA.debugLineNum = 987;BA.debugLine="Log(c3.RowCount)"; -__c.LogImpl("812517391",BA.NumberToString(_c3.getRowCount()),0); +__c.LogImpl("248168975",BA.NumberToString(_c3.getRowCount()),0); //BA.debugLineNum = 988;BA.debugLine="Log(esteTag.Get(8))"; -__c.LogImpl("812517392",BA.ObjectToString(_estetag.Get((int) (8))),0); +__c.LogImpl("248168976",BA.ObjectToString(_estetag.Get((int) (8))),0); //BA.debugLineNum = 989;BA.debugLine="If c3.RowCount > 0 Then"; if (_c3.getRowCount()>0) { //BA.debugLineNum = 990;BA.debugLine="Log(\"AQUI VEMOS SI ACTUALIZAMOS\")"; -__c.LogImpl("812517394","AQUI VEMOS SI ACTUALIZAMOS",0); +__c.LogImpl("248168978","AQUI VEMOS SI ACTUALIZAMOS",0); //BA.debugLineNum = 991;BA.debugLine="c3.Position = 0"; _c3.setPosition((int) (0)); //BA.debugLineNum = 992;BA.debugLine="If c3.GetString(\"PE_CAJAS\") > 1 Then"; @@ -556,7 +556,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("delete from PEDI }; }; //BA.debugLineNum = 998;BA.debugLine="Log(\"entre al if o algo asi \")"; -__c.LogImpl("812517402","entre al if o algo asi ",0); +__c.LogImpl("248168986","entre al if o algo asi ",0); //BA.debugLineNum = 999;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; @@ -573,7 +573,7 @@ if ((_estetag.Get((int) (5))).equals(_estetag.Get((int) (6)))) { //BA.debugLineNum = 1009;BA.debugLine="If laCantc.Text > 0 Then"; if ((double)(Double.parseDouble(_lacantc.getText()))>0) { //BA.debugLineNum = 1010;BA.debugLine="Log(\"entre al if o algo asi \")"; -__c.LogImpl("812517414","entre al if o algo asi ",0); +__c.LogImpl("248168998","entre al if o algo asi ",0); //BA.debugLineNum = 1011;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; @@ -599,7 +599,7 @@ _c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjec //BA.debugLineNum = 1027;BA.debugLine="If c3.RowCount > 0 Then"; if (_c3.getRowCount()>0) { //BA.debugLineNum = 1028;BA.debugLine="Log(\"AQUI VEMOS SI ACTUALIZAMOS\")"; -__c.LogImpl("812517432","AQUI VEMOS SI ACTUALIZAMOS",0); +__c.LogImpl("248169016","AQUI VEMOS SI ACTUALIZAMOS",0); //BA.debugLineNum = 1029;BA.debugLine="c3.Position = 0"; _c3.setPosition((int) (0)); //BA.debugLineNum = 1030;BA.debugLine="If c3.GetString(\"PE_CAJAS\") > 1 Then"; @@ -612,7 +612,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("delete from PEDI }; }; //BA.debugLineNum = 1036;BA.debugLine="Log(\"entre al if o algo asi \")"; -__c.LogImpl("812517440","entre al if o algo asi ",0); +__c.LogImpl("248169024","entre al if o algo asi ",0); //BA.debugLineNum = 1037;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; @@ -630,7 +630,7 @@ _b4xpage_appear(); //BA.debugLineNum = 1048;BA.debugLine="Dim preciou As Float = esteTag.Get(0)/esteTag.Get"; _preciou = (float) ((double)(BA.ObjectToNumber(_estetag.Get((int) (0))))/(double)(double)(BA.ObjectToNumber(_estetag.Get((int) (1))))); //BA.debugLineNum = 1049;BA.debugLine="Log(\"PU: \" & preciou)"; -__c.LogImpl("812517453","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("248169037","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 1050;BA.debugLine="End Sub"; return ""; } @@ -861,7 +861,7 @@ _textcolor = __c.Colors.Black; //BA.debugLineNum = 174;BA.debugLine="clv_pedido.Add(CreateListItem2(c3.GetString(\"P"; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem2(_c3.GetString("PE_PRONOMBRE"),_c3.GetString("PE_COSTOU"),(int)(Double.parseDouble(_c3.GetString("PE_CANT"))),(int) (0),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c3.GetString("PE_PROID"),_bgcolor,_textcolor,_subs._traealmacen /*String*/ (ba),_subs._traecliente /*String*/ (ba),_c3.GetString("PE_CLIENTEOR"),BA.NumberToString(1),(int)(Double.parseDouble(_c3.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); //BA.debugLineNum = 175;BA.debugLine="Log(\"#####################\"&c3.GetString(\"PE_P"; -__c.LogImpl("811534443","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); +__c.LogImpl("247186027","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); }else { //BA.debugLineNum = 177;BA.debugLine="Private bgColor, textColor As Int"; _bgcolor = 0; @@ -871,7 +871,7 @@ _bgcolor = __c.Colors.RGB((int) (221),(int) (132),(int) (132)); //BA.debugLineNum = 179;BA.debugLine="textColor = Colors.black"; _textcolor = __c.Colors.Black; //BA.debugLineNum = 180;BA.debugLine="Log(\"#####################\"&c3.GetString(\"PE_P"; -__c.LogImpl("811534448","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); +__c.LogImpl("247186032","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); //BA.debugLineNum = 181;BA.debugLine="clv_pedido.Add(CreateListItem(c3.GetString(\"PE"; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_c3.GetString("PE_PRONOMBRE"),_c3.GetString("PE_COSTOU"),(int)(Double.parseDouble(_c3.GetString("PE_CANT"))),(int) (0),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c3.GetString("PE_PROID"),_bgcolor,_textcolor,_subs._traealmacen /*String*/ (ba),_subs._traecliente /*String*/ (ba),_c3.GetString("PE_CLIENTEOR"),BA.NumberToString(1),(int)(Double.parseDouble(_c3.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); }; @@ -907,7 +907,7 @@ _c4.setPosition((int) (0)); //BA.debugLineNum = 198;BA.debugLine="cantres = c4.GetString(\"PE_CANT\")"; _cantres = (int)(Double.parseDouble(_c4.GetString("PE_CANT"))); //BA.debugLineNum = 199;BA.debugLine="Log(c4.GetString(\"PE_CANT\"))"; -__c.LogImpl("811534467",_c4.GetString("PE_CANT"),0); +__c.LogImpl("247186051",_c4.GetString("PE_CANT"),0); }else { //BA.debugLineNum = 201;BA.debugLine="cantres = 0"; _cantres = (int) (0); @@ -1061,9 +1061,9 @@ if ((double)(Double.parseDouble(_arti3))<0) { _arti = BA.NumberToString(0); }; //BA.debugLineNum = 296;BA.debugLine="Log(Cuenta&\",\"&Cuenta1&\",\"&Cuenta2&\",\"&Cuenta3)"; -__c.LogImpl("811534564",_cuenta+","+_cuenta1+","+_cuenta2+","+_cuenta3,0); +__c.LogImpl("247186148",_cuenta+","+_cuenta1+","+_cuenta2+","+_cuenta3,0); //BA.debugLineNum = 297;BA.debugLine="Log(arti&\",\"&arti1&\",\"&arti2&\",\"&arti3)"; -__c.LogImpl("811534565",_arti+","+_arti1+","+_arti2+","+_arti3,0); +__c.LogImpl("247186149",_arti+","+_arti1+","+_arti2+","+_arti3,0); //BA.debugLineNum = 298;BA.debugLine="If Cuenta + Cuenta1 + Cuenta2 + Cuenta3 < 0 Then"; if ((double)(Double.parseDouble(_cuenta))+(double)(Double.parseDouble(_cuenta1))+(double)(Double.parseDouble(_cuenta2))+(double)(Double.parseDouble(_cuenta3))<0) { //BA.debugLineNum = 299;BA.debugLine="L_TOTAL.Text = 0"; @@ -1371,7 +1371,7 @@ return ""; public String _p_prods_click() throws Exception{ //BA.debugLineNum = 924;BA.debugLine="Sub p_prods_Click"; //BA.debugLineNum = 925;BA.debugLine="Log(Sender.As(Panel).tag)"; -__c.LogImpl("812386305",BA.ObjectToString(((anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(__c.Sender(ba)))).getTag()),0); +__c.LogImpl("248037889",BA.ObjectToString(((anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(__c.Sender(ba)))).getTag()),0); //BA.debugLineNum = 926;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_foto.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_foto.java index b42e666..933c25d 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_foto.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_foto.java @@ -146,7 +146,7 @@ String _flash = ""; //BA.debugLineNum = 129;BA.debugLine="Dim f() As Float = camEx.GetFocusDistances"; _f = _camex._getfocusdistances /*float[]*/ (); //BA.debugLineNum = 130;BA.debugLine="Log(f(0) & \", \" & f(1) & \", \" & f(2))"; -__c.LogImpl("813565954",BA.NumberToString(_f[(int) (0)])+", "+BA.NumberToString(_f[(int) (1)])+", "+BA.NumberToString(_f[(int) (2)]),0); +__c.LogImpl("249217538",BA.NumberToString(_f[(int) (0)])+", "+BA.NumberToString(_f[(int) (1)])+", "+BA.NumberToString(_f[(int) (2)]),0); //BA.debugLineNum = 131;BA.debugLine="Dim flashModes As List = camEx.GetSupportedFlashM"; _flashmodes = new anywheresoftware.b4a.objects.collections.List(); _flashmodes = _camex._getsupportedflashmodes /*anywheresoftware.b4a.objects.collections.List*/ (); @@ -306,7 +306,7 @@ _camex._commitparameters /*String*/ (); //BA.debugLineNum = 55;BA.debugLine="camEx.StartPreview"; _camex._startpreview /*String*/ (); //BA.debugLineNum = 56;BA.debugLine="Log(camEx.GetPreviewSize)"; -__c.LogImpl("813172741",BA.ObjectToString(_camex._getpreviewsize /*reparto_intmex.keymon.lat.cameraexclass._camerasize*/ ()),0); +__c.LogImpl("248824325",BA.ObjectToString(_camex._getpreviewsize /*reparto_intmex.keymon.lat.cameraexclass._camerasize*/ ()),0); }else { //BA.debugLineNum = 58;BA.debugLine="ToastMessageShow(\"Cannot open camera.\", True)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Cannot open camera."),__c.True); diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_historico.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_historico.java index 8b1f096..a160eb5 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_historico.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_historico.java @@ -92,7 +92,7 @@ anywheresoftware.b4a.objects.collections.Map _cym = null; //BA.debugLineNum = 384;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 386;BA.debugLine="LogColor(\"b_prodMas_Click\", Colors.Magenta)"; -__c.LogImpl("817104899","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("252756483","b_prodMas_Click",__c.Colors.Magenta); //BA.debugLineNum = 387;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 388;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -108,18 +108,18 @@ _lacant = _pnl.GetView((int) (2)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacant.getTag()))); //BA.debugLineNum = 395;BA.debugLine="Log(\"LC_TEXT:\"&laCant.Text&\"|LC_TAG:\"&laCant.Tag&"; -__c.LogImpl("817104908","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("252756492","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 396;BA.debugLine="If laCant.Text = \"\" Then laCant.Text = 0"; if ((_lacant.getText()).equals("")) { _lacant.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 398;BA.debugLine="Private maxProds as string = esteTag.Get(1) + est"; _maxprods = BA.NumberToString((double)(BA.ObjectToNumber(_estetag.Get((int) (1))))+(double)(BA.ObjectToNumber(_estetag.Get((int) (4))))); //BA.debugLineNum = 400;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("817104913",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("252756497",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 402;BA.debugLine="If laCant.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacant.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 403;BA.debugLine="Log($\"NuevaCant = ${laCant.Text + 1}\"$)"; -__c.LogImpl("817104916",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("252756500",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); //BA.debugLineNum = 404;BA.debugLine="laCant.Text = $\"$1.0{laCant.Text + 1}\"$"; _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""))); //BA.debugLineNum = 405;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunaprod"; @@ -149,9 +149,9 @@ anywheresoftware.b4a.objects.collections.Map _cym = null; //BA.debugLineNum = 341;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 342;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("817039362","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("252690946","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 343;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("817039363","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("252690947","b_prodMenos_Click",__c.Colors.Magenta); //BA.debugLineNum = 344;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 345;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -167,11 +167,11 @@ _lacant = _pnl.GetView((int) (2)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacant.getTag()))); //BA.debugLineNum = 350;BA.debugLine="Log(\"LC_TEXT:\"&laCant.Text&\"|PROMO:\"&esteTag.Get("; -__c.LogImpl("817039370","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("252690954","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 351;BA.debugLine="If esteTag.Get(3) <> \"1\" Then 'Si es PROMO entonc"; if ((_estetag.Get((int) (3))).equals((Object)("1")) == false) { //BA.debugLineNum = 352;BA.debugLine="Log(\"ES PROMO\")"; -__c.LogImpl("817039372","ES PROMO",0); +__c.LogImpl("252690956","ES PROMO",0); //BA.debugLineNum = 353;BA.debugLine="result = Msgbox2(\"Si se modifica una promoción,"; _result = BA.NumberToString(__c.Msgbox2(BA.ObjectToCharSequence("Si se modifica una promoción, la promoción se rompe y solo quedarán los productos sueltos, ¿seguro que desea continuar?"),BA.ObjectToCharSequence("Modificar Promoción"),"Si","","No",(android.graphics.Bitmap)(__c.LoadBitmap(__c.File.getDirAssets(),"alert2.png").getObject()),ba)); //BA.debugLineNum = 354;BA.debugLine="If result = DialogResponse.POSITIVE Then 'Quitam"; @@ -183,7 +183,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENT //BA.debugLineNum = 357;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VENTAS"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENTAS set HVD_CODPROMO = '"+__c.SmartStringFormatter("",(Object)(_subs._traealmacen /*String*/ (ba)))+"' WHERE HVD_cliente in (Select CUENTA from cuentaa) AND HVD_CODPROMO = '"+__c.SmartStringFormatter("",_estetag.Get((int) (3)))+"'")); //BA.debugLineNum = 358;BA.debugLine="LogColor(prodsMap, Colors.red)"; -__c.LogImpl("817039378",BA.ObjectToString(_prodsmap),__c.Colors.Red); +__c.LogImpl("252690962",BA.ObjectToString(_prodsmap),__c.Colors.Red); //BA.debugLineNum = 359;BA.debugLine="reconstruirPedido = True"; _reconstruirpedido = __c.True; //BA.debugLineNum = 360;BA.debugLine="promoABorrar = esteTag.Get(3)"; @@ -206,7 +206,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("update cat_gunap //BA.debugLineNum = 369;BA.debugLine="Dim preciou As Float = esteTag.Get(0)/esteTag.Get"; _preciou = (float) ((double)(BA.ObjectToNumber(_estetag.Get((int) (0))))/(double)(double)(BA.ObjectToNumber(_estetag.Get((int) (1))))); //BA.debugLineNum = 370;BA.debugLine="Log(\"PU: \" & preciou)"; -__c.LogImpl("817039390","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("252690974","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 376;BA.debugLine="Subs.prodRechazo(esteTag.Get(5), esteTag.Get(2))"; _subs._prodrechazo /*String*/ (ba,BA.ObjectToString(_estetag.Get((int) (5))),BA.ObjectToString(_estetag.Get((int) (2)))); //BA.debugLineNum = 377;BA.debugLine="Private cym As Map = Subs.traemosCantYMonto(clv_p"; @@ -326,7 +326,7 @@ _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware. _vc = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select * from REPARTO where REP_CLIENTE in (select cuenta from cuentaa) and REP_RECHAZO = '0' and REP_CANT > 0 order by REP_PRONOMBRE"))); //BA.debugLineNum = 113;BA.debugLine="Log($\"VENTA: ${vc.RowCount}\"$)"; -__c.LogImpl("816580662",("VENTA: "+__c.SmartStringFormatter("",(Object)(_vc.getRowCount()))+""),0); +__c.LogImpl("252232246",("VENTA: "+__c.SmartStringFormatter("",(Object)(_vc.getRowCount()))+""),0); //BA.debugLineNum = 114;BA.debugLine="If vc.RowCount > 0 Then"; if (_vc.getRowCount()>0) { //BA.debugLineNum = 117;BA.debugLine="textColor = Colors.RGB(0,87,142)"; @@ -612,13 +612,13 @@ anywheresoftware.b4a.sql.SQL.CursorWrapper _z = null; String _cantidad2 = ""; //BA.debugLineNum = 428;BA.debugLine="Sub cuentaProds(accion As String)"; //BA.debugLineNum = 430;BA.debugLine="Log(\"*********************************************"; -__c.LogImpl("817170434","*******************************************************",0); +__c.LogImpl("252822018","*******************************************************",0); //BA.debugLineNum = 431;BA.debugLine="Private cantRechazada As Int = 0"; _cantrechazada = (int) (0); //BA.debugLineNum = 432;BA.debugLine="If Not(reconstruirPedido) Then"; if (__c.Not(_reconstruirpedido)) { //BA.debugLineNum = 433;BA.debugLine="Log(\"*********** CUENTAPRODS - NO RECONSTRUIR\")"; -__c.LogImpl("817170437","*********** CUENTAPRODS - NO RECONSTRUIR",0); +__c.LogImpl("252822021","*********** CUENTAPRODS - NO RECONSTRUIR",0); //BA.debugLineNum = 434;BA.debugLine="prodsMap.Initialize"; _prodsmap.Initialize(); //BA.debugLineNum = 435;BA.debugLine="For i = 0 To clv_pedido.GetSize - 1"; @@ -643,9 +643,9 @@ _cant1.setText(BA.ObjectToCharSequence(0));}; _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_cant1.getTag()))); //BA.debugLineNum = 442;BA.debugLine="Log(\"-------------------------------------\")"; -__c.LogImpl("817170446","-------------------------------------",0); +__c.LogImpl("252822030","-------------------------------------",0); //BA.debugLineNum = 443;BA.debugLine="Log($\"ET: ${esteTag}\"$)"; -__c.LogImpl("817170447",("ET: "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),0); +__c.LogImpl("252822031",("ET: "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),0); //BA.debugLineNum = 444;BA.debugLine="Private esteProd As String = esteTag.Get(2)"; _esteprod = BA.ObjectToString(_estetag.Get((int) (2))); //BA.debugLineNum = 445;BA.debugLine="Private estaCant As Int = cant1.Text"; @@ -668,9 +668,9 @@ _cant1.setText(BA.ObjectToCharSequence(_maxprods));}; //BA.debugLineNum = 455;BA.debugLine="cantRechazada = esteTag.Get(4) - cant1.Text"; _cantrechazada = (int) ((double)(BA.ObjectToNumber(_estetag.Get((int) (4))))-(double)(Double.parseDouble(_cant1.getText()))); //BA.debugLineNum = 458;BA.debugLine="Log($\"${Subs.traeCantidadRechazada(esteClienteO"; -__c.LogImpl("817170462",(""+__c.SmartStringFormatter("",(Object)(_subs._traecantidadrechazada /*int*/ (ba,BA.NumberToString(_esteclienteoriginal),_esteprod)))+", "+__c.SmartStringFormatter("",(Object)(_subs._traecantidadvendida /*int*/ (ba,BA.NumberToString(_esteclienteoriginal),_esteprod)))+""),0); +__c.LogImpl("252822046",(""+__c.SmartStringFormatter("",(Object)(_subs._traecantidadrechazada /*int*/ (ba,BA.NumberToString(_esteclienteoriginal),_esteprod)))+", "+__c.SmartStringFormatter("",(Object)(_subs._traecantidadvendida /*int*/ (ba,BA.NumberToString(_esteclienteoriginal),_esteprod)))+""),0); //BA.debugLineNum = 461;BA.debugLine="LogColor($\"cantRechazada = ${cantRechazada}\"$,"; -__c.LogImpl("817170465",("cantRechazada = "+__c.SmartStringFormatter("",(Object)(_cantrechazada))+""),__c.Colors.Magenta); +__c.LogImpl("252822049",("cantRechazada = "+__c.SmartStringFormatter("",(Object)(_cantrechazada))+""),__c.Colors.Magenta); //BA.debugLineNum = 462;BA.debugLine="Private estePrecio As String = 0"; _esteprecio = BA.NumberToString(0); //BA.debugLineNum = 463;BA.debugLine="If Subs.traePrecio(esteProd, 1) <> Null Then es"; @@ -686,7 +686,7 @@ _rr.setPosition((int) (0)); //BA.debugLineNum = 472;BA.debugLine="If rr.GetString(\"hayRechazo\") = 0 Then"; if ((_rr.GetString("hayRechazo")).equals(BA.NumberToString(0))) { //BA.debugLineNum = 473;BA.debugLine="Log(\"INSERTAMOS EN REPARTO\")"; -__c.LogImpl("817170477","INSERTAMOS EN REPARTO",0); +__c.LogImpl("252822061","INSERTAMOS EN REPARTO",0); //BA.debugLineNum = 474;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into repart"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("insert into reparto(REP_CLIENTE, REP_PRONOMBRE, REP_CANT, REP_COSTO_TOT, REP_FECHA, REP_RECHAZO, REP_PRODID, REP_PRECIO, REP_CLI_ORIG) VALUES (?,?,?,?,?,1,?,?,?) ",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{_estecliente,_esteprodnombre,BA.NumberToString(0),_esteprecio,_fechareparto,_esteprod,_esteprecio,_estecliente})); //BA.debugLineNum = 475;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into repart"; @@ -694,7 +694,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("insert into repa }else if(_esteclienteoriginal==(double)(Double.parseDouble("0"))) { }else { //BA.debugLineNum = 480;BA.debugLine="Log($\"Actualizamos REP_CANT RECHAZO = ${cantRe"; -__c.LogImpl("817170484",("Actualizamos REP_CANT RECHAZO = "+__c.SmartStringFormatter("",(Object)(_cantrechazada))+""),0); +__c.LogImpl("252822068",("Actualizamos REP_CANT RECHAZO = "+__c.SmartStringFormatter("",(Object)(_cantrechazada))+""),0); }; //BA.debugLineNum = 485;BA.debugLine="If cant1.Text > 0 Then"; if ((double)(Double.parseDouble(_cant1.getText()))>0) { @@ -706,7 +706,7 @@ _m = __c.createMap(new Object[] {(Object)("cant"),(Object)(_cant1.getText()),(Ob _prodsmap.Put(_estetag.Get((int) (2)),(Object)(_m.getObject())); }; //BA.debugLineNum = 493;BA.debugLine="Log(\"-------------------------------------\")"; -__c.LogImpl("817170497","-------------------------------------",0); +__c.LogImpl("252822081","-------------------------------------",0); } }; }; @@ -716,14 +716,14 @@ _textcolor = 0; //BA.debugLineNum = 498;BA.debugLine="If reconstruirPedido Then"; if (_reconstruirpedido) { //BA.debugLineNum = 499;BA.debugLine="Log(\"*********** CUENTAPRODS - SI RECONSTRUIR\")"; -__c.LogImpl("817170503","*********** CUENTAPRODS - SI RECONSTRUIR",0); +__c.LogImpl("252822087","*********** CUENTAPRODS - SI RECONSTRUIR",0); //BA.debugLineNum = 500;BA.debugLine="Private newPromo, newPrecio As String"; _newpromo = ""; _newprecio = ""; //BA.debugLineNum = 501;BA.debugLine="clv_pedido.Clear"; _clv_pedido._clear(); //BA.debugLineNum = 502;BA.debugLine="Log(\"Usamos PRODSMAP\")"; -__c.LogImpl("817170506","Usamos PRODSMAP",0); +__c.LogImpl("252822090","Usamos PRODSMAP",0); //BA.debugLineNum = 503;BA.debugLine="For Each pr As String In prodsMap.Keys"; { final anywheresoftware.b4a.BA.IterableList group53 = _prodsmap.Keys(); @@ -736,7 +736,7 @@ _pr = BA.ObjectToString(group53.Get(index53)); _pr1 = new anywheresoftware.b4a.objects.collections.Map(); _pr1 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_prodsmap.Get((Object)(_pr)))); //BA.debugLineNum = 505;BA.debugLine="Log(\"PPP: \" & pr & \"|PromoABorrar=\" & promoABor"; -__c.LogImpl("817170509","PPP: "+_pr+"|PromoABorrar="+_promoaborrar+"|"+BA.ObjectToString(_pr1),0); +__c.LogImpl("252822093","PPP: "+_pr+"|PromoABorrar="+_promoaborrar+"|"+BA.ObjectToString(_pr1),0); //BA.debugLineNum = 506;BA.debugLine="bgColor = Colors.RGB(177, 200, 249)'azul"; _bgcolor = __c.Colors.RGB((int) (177),(int) (200),(int) (249)); //BA.debugLineNum = 507;BA.debugLine="textColor = Colors.black"; @@ -746,7 +746,7 @@ _newpromo = BA.ObjectToString(_pr1.Get((Object)("promo"))); //BA.debugLineNum = 509;BA.debugLine="newPrecio = pr1.Get(\"precio\")"; _newprecio = BA.ObjectToString(_pr1.Get((Object)("precio"))); //BA.debugLineNum = 510;BA.debugLine="Log(\"AAA: \" & newPromo & \"|\" & promoABorrar)"; -__c.LogImpl("817170514","AAA: "+_newpromo+"|"+_promoaborrar,0); +__c.LogImpl("252822098","AAA: "+_newpromo+"|"+_promoaborrar,0); //BA.debugLineNum = 511;BA.debugLine="If newPromo = promoABorrar Then"; if ((_newpromo).equals(_promoaborrar)) { //BA.debugLineNum = 512;BA.debugLine="newPromo = 1"; @@ -756,7 +756,7 @@ _newprecio = BA.NumberToString((double)(Double.parseDouble(_subs._traeprecio /*S //BA.debugLineNum = 515;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VENTAS"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update HIST_VENTAS set HVD_COSTO_TOT = "+__c.SmartStringFormatter("",(Object)(_newprecio))+", HVD_CODPROMO = '"+__c.SmartStringFormatter("",(Object)(_subs._traealmacen /*String*/ (ba)))+"' WHERE HVD_PRONOMBRE = '"+__c.SmartStringFormatter("",_pr1.Get((Object)("nombre")))+"' and HVD_cliente in (Select CUENTA from cuentaa)")); //BA.debugLineNum = 516;BA.debugLine="LogColor(\"CAMBIAMOS PROMO: \" & newPromo, Color"; -__c.LogImpl("817170520","CAMBIAMOS PROMO: "+_newpromo,__c.Colors.Magenta); +__c.LogImpl("252822104","CAMBIAMOS PROMO: "+_newpromo,__c.Colors.Magenta); }; //BA.debugLineNum = 518;BA.debugLine="If newPromo <> \"1\" Then"; if ((_newpromo).equals("1") == false) { @@ -764,7 +764,7 @@ if ((_newpromo).equals("1") == false) { _bgcolor = __c.Colors.White; }; //BA.debugLineNum = 522;BA.debugLine="Log($\"CLI: ${pr1.Get(\"nombre\")}, ${newPrecio},"; -__c.LogImpl("817170526",("CLI: "+__c.SmartStringFormatter("",_pr1.Get((Object)("nombre")))+", "+__c.SmartStringFormatter("",(Object)(_newprecio))+", "+__c.SmartStringFormatter("",_pr1.Get((Object)("cant")))+", "+__c.SmartStringFormatter("",_pr1.Get((Object)("cant2")))+""),0); +__c.LogImpl("252822110",("CLI: "+__c.SmartStringFormatter("",_pr1.Get((Object)("nombre")))+", "+__c.SmartStringFormatter("",(Object)(_newprecio))+", "+__c.SmartStringFormatter("",_pr1.Get((Object)("cant")))+", "+__c.SmartStringFormatter("",_pr1.Get((Object)("cant2")))+""),0); //BA.debugLineNum = 523;BA.debugLine="clv_pedido.Add(CreateListItem(pr1.Get(\"nombre\")"; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(BA.ObjectToString(_pr1.Get((Object)("nombre"))),_newprecio,(int)(BA.ObjectToNumber(_pr1.Get((Object)("cant")))),(int)(BA.ObjectToNumber(_pr1.Get((Object)("cant2")))),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (50)),_bmp,_pr,_bgcolor,_textcolor,_newpromo,BA.ObjectToString(_pr1.Get((Object)("cli_orig")))).getObject())),_pr1.Get((Object)("nombre"))); //BA.debugLineNum = 524;BA.debugLine="reconstruirPedido = False"; @@ -775,11 +775,11 @@ _reconstruirpedido = __c.False; _promoaborrar = ""; }; //BA.debugLineNum = 528;BA.debugLine="Log($\"Total Prods: ${totalProds}, Total Compra: $"; -__c.LogImpl("817170532",("Total Prods: "+__c.SmartStringFormatter("",(Object)(_totalprods))+", Total Compra: $"+__c.SmartStringFormatter("1.2",(Object)(_totalcompra))+""),0); +__c.LogImpl("252822116",("Total Prods: "+__c.SmartStringFormatter("",(Object)(_totalprods))+", Total Compra: $"+__c.SmartStringFormatter("1.2",(Object)(_totalcompra))+""),0); //BA.debugLineNum = 529;BA.debugLine="LogColor(\"prodsMap=\" & prodsMap, Colors.Green)"; -__c.LogImpl("817170533","prodsMap="+BA.ObjectToString(_prodsmap),__c.Colors.Green); +__c.LogImpl("252822117","prodsMap="+BA.ObjectToString(_prodsmap),__c.Colors.Green); //BA.debugLineNum = 532;BA.debugLine="LogColor(prodsMap, Colors.Blue)"; -__c.LogImpl("817170536",BA.ObjectToString(_prodsmap),__c.Colors.Blue); +__c.LogImpl("252822120",BA.ObjectToString(_prodsmap),__c.Colors.Blue); //BA.debugLineNum = 533;BA.debugLine="c = Starter.skmt.ExecQuery($\"SELECT sum(HVD_CANT)"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("SELECT sum(HVD_CANT) as CANTIDAD FROM HIST_VENTAS WHERE HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)")))); //BA.debugLineNum = 534;BA.debugLine="Dim cantidad1 As String = 0"; @@ -901,7 +901,7 @@ return ""; public String _p_prods_click() throws Exception{ //BA.debugLineNum = 601;BA.debugLine="Sub p_prods_Click"; //BA.debugLineNum = 602;BA.debugLine="Log(Sender.As(Panel).tag)"; -__c.LogImpl("817367041",BA.ObjectToString(((anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(__c.Sender(ba)))).getTag()),0); +__c.LogImpl("253018625",BA.ObjectToString(((anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(__c.Sender(ba)))).getTag()),0); //BA.debugLineNum = 603;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_noventa.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_noventa.java index 13d8d2a..c4a996f 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_noventa.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_noventa.java @@ -230,7 +230,7 @@ _rut.setPosition((int) (0)); _rutaactualizar = _rut.GetString("CAT_CL_RUTA"); }; //BA.debugLineNum = 92;BA.debugLine="Starter.skmt.ExecNonQuery($\"DELETE FROM NOVENTA"; -_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) AND NV_RUTA ='"+__c.SmartStringFormatter("",(Object)(_rutaactualizar))+"' ")); +_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa) ")); //BA.debugLineNum = 94;BA.debugLine="c=Starter.skmt.ExecQuery(\"select HVD_NUM_REGIST"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select HVD_NUM_REGISTRO, HVD_CLIENTE, HVD_PRONOMBRE, HVD_CANT, HVD_COSTO_TOT, HVD_FECHA, HVD_PROID, CAT_GP_PRECIO from HIST_VENTAS2 join CAT_GUNAPROD on CAT_GP_ID = HVD_PROID WHERE HVD_CLIENTE IN (Select CUENTA from cuentaa) order by HVD_PRONOMBRE asc"))); //BA.debugLineNum = 95;BA.debugLine="If c.RowCount > 0 Then 'Si hay pedido en HIST_"; @@ -251,7 +251,7 @@ for (;_i2 <= limit37 ;_i2 = _i2 + step37 ) { //BA.debugLineNum = 102;BA.debugLine="rv.Position = i2"; _rv.setPosition(_i2); //BA.debugLineNum = 103;BA.debugLine="Log($\"Actualizamos REPARTO - cliente=${rv.Ge"; -__c.LogImpl("818022444",("Actualizamos REPARTO - cliente="+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CLIENTE")))+", cliente orignal="+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CLI_ORIG")))+", le agregamos "+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CANT")))+""),0); +__c.LogImpl("253674028",("Actualizamos REPARTO - cliente="+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CLIENTE")))+", cliente orignal="+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CLI_ORIG")))+", le agregamos "+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CANT")))+""),0); //BA.debugLineNum = 104;BA.debugLine="Starter.skmt.ExecNonQuery($\"update REPARTO s"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update REPARTO set REP_CANT = REP_CANT + "+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CANT")))+" where REP_RECHAZO = '1' and REP_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CLI_ORIG")))+"' and REP_CLI_ORIG = '"+__c.SmartStringFormatter("",(Object)(_rv.GetString("REP_CLI_ORIG")))+"'")); } @@ -268,7 +268,7 @@ for (;_i <= limit44 ;_i = _i + step44 ) { //BA.debugLineNum = 110;BA.debugLine="c.Position=i"; _c.setPosition(_i); //BA.debugLineNum = 111;BA.debugLine="Log($\"REGISTRO= ${c.GetString(\"HVD_NUM_REGIST"; -__c.LogImpl("818022452",("REGISTRO= "+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_NUM_REGISTRO")))+""),0); +__c.LogImpl("253674036",("REGISTRO= "+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_NUM_REGISTRO")))+""),0); //BA.debugLineNum = 112;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into repar"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("insert into reparto(REP_CLIENTE, REP_PRONOMBRE, REP_CANT, REP_COSTO_TOT, REP_FECHA, REP_RECHAZO, REP_PRODID, REP_PRECIO, REP_PRODREGISTRO, REP_CLI_ORIG) VALUES (?,?,?,?,?,1,?,?,?,?) ",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{_c.GetString("HVD_CLIENTE"),_c.GetString("HVD_PRONOMBRE"),_c.GetString("HVD_CANT"),_c.GetString("HVD_COSTO_TOT"),_c.GetString("HVD_FECHA"),_c.GetString("HVD_PROID"),_c.GetString("CAT_GP_PRECIO"),_c.GetString("HVD_NUM_REGISTRO"),_c.GetString("HVD_CLIENTE")})); //BA.debugLineNum = 113;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into repar"; @@ -343,12 +343,12 @@ Object[] _records = null; String _k = ""; //BA.debugLineNum = 174;BA.debugLine="Sub JobDone(Job As HttpJob)"; //BA.debugLineNum = 175;BA.debugLine="Log(Job.Success)"; -__c.LogImpl("818153473",BA.ObjectToString(_job._success /*boolean*/ ),0); +__c.LogImpl("253805057",BA.ObjectToString(_job._success /*boolean*/ ),0); //BA.debugLineNum = 176;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { }else { //BA.debugLineNum = 179;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("818153477","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); +__c.LogImpl("253805061","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); //BA.debugLineNum = 180;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { //BA.debugLineNum = 181;BA.debugLine="Dim resultado As DBResult = reqManager.HandleJo"; @@ -360,7 +360,7 @@ _cliente = BA.ObjectToString(_resultado.Tag /*Object*/ ); //BA.debugLineNum = 184;BA.debugLine="cliente = cliente.SubString(cliente.IndexOf(\"_"; _cliente = _cliente.substring((int) (_cliente.indexOf("_")+24)); //BA.debugLineNum = 185;BA.debugLine="Log($\"Cliente1:${cliente}\"$)"; -__c.LogImpl("818153483",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); +__c.LogImpl("253805067",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); //BA.debugLineNum = 186;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update REPARTO_GEO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("update REPARTO_GEO SET ENVIO = ? WHERE CLIENTE = ? AND ENVIO <> ?",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{"1",_cliente,"1"})); //BA.debugLineNum = 187;BA.debugLine="For Each records() As Object In resultado.Rows"; @@ -380,7 +380,7 @@ final int groupLen13 = group13.getSize() for (; index13 < groupLen13;index13++){ _k = BA.ObjectToString(group13.Get(index13)); //BA.debugLineNum = 189;BA.debugLine="Log(resultado.Tag & \": \" & k & \": \" & record"; -__c.LogImpl("818153487",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); +__c.LogImpl("253805071",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_principal.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_principal.java index fbd2908..27f8827 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_principal.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_principal.java @@ -212,10 +212,10 @@ if ((_c.GetString("gestion")).equals("2")) { //BA.debugLineNum = 1989;BA.debugLine="ESTATUS = \"ENTREGADO\""; _estatus = "ENTREGADO"; //BA.debugLineNum = 1990;BA.debugLine="Log(\"entrega\")"; -__c.LogImpl("815728668","entrega",0); +__c.LogImpl("250724892","entrega",0); }else if((_c.GetString("gestion")).equals("3")) { //BA.debugLineNum = 1992;BA.debugLine="Log(\"no entrega\")"; -__c.LogImpl("815728670","no entrega",0); +__c.LogImpl("250724894","no entrega",0); //BA.debugLineNum = 1993;BA.debugLine="ESTATUS = \"RECHAZADO\""; _estatus = "RECHAZADO"; }else { @@ -356,7 +356,7 @@ _totalcantidad = BA.NumberToString((double)(Double.parseDouble(_arti))+(double)( //BA.debugLineNum = 2073;BA.debugLine="ListView1.AddTwoLines(c.GetString(\"CAT_CL_COD"; _listview1.AddTwoLines(BA.ObjectToCharSequence(_c.GetString("CAT_CL_CODIGO")+" - "+_c.GetString("CAT_CL_NOMBRE")),BA.ObjectToCharSequence("Articulos :"+_totalcantidad+" Monto :"+__c.NumberFormat2((double)(Double.parseDouble(_totalmonto)),(int) (0),(int) (2),(int) (2),__c.True)+" "+_estatus)); //BA.debugLineNum = 2074;BA.debugLine="Log(\"si entre2\")"; -__c.LogImpl("815728752","si entre2",0); +__c.LogImpl("250724976","si entre2",0); }else if((_estatus).equals("RECHAZADO")) { //BA.debugLineNum = 2078;BA.debugLine="Private vc As Cursor = Starter.skmt.ExecQuery"; _vc = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); @@ -490,7 +490,7 @@ _totalmonto = BA.NumberToString((double)(Double.parseDouble(_cuenta0))+(double)( //BA.debugLineNum = 2149;BA.debugLine="Private TOTALcantidad As String = arti + arti"; _totalcantidad = BA.NumberToString((double)(Double.parseDouble(_arti))+(double)(Double.parseDouble(_arti1))+(double)(Double.parseDouble(_arti2))+(double)(Double.parseDouble(_arti3))); //BA.debugLineNum = 2151;BA.debugLine="Log(\"si entre\")"; -__c.LogImpl("815728829","si entre",0); +__c.LogImpl("250725053","si entre",0); //BA.debugLineNum = 2152;BA.debugLine="ListView1.AddTwoLines(c.GetString(\"CAT_CL_COD"; _listview1.AddTwoLines(BA.ObjectToCharSequence(_c.GetString("CAT_CL_CODIGO")+" - "+_c.GetString("CAT_CL_NOMBRE")),BA.ObjectToCharSequence("Articulos :"+_totalcantidad+" Monto :"+__c.NumberFormat2((double)(Double.parseDouble(_totalmonto)),(int) (0),(int) (2),(int) (2),__c.True)+" "+_estatus)); }; @@ -589,7 +589,7 @@ return ""; public String _b_regresa_click() throws Exception{ //BA.debugLineNum = 2189;BA.debugLine="Sub B_REGRESA_Click"; //BA.debugLineNum = 2190;BA.debugLine="Log(\"B_REGRESA_Click\")"; -__c.LogImpl("815794177","B_REGRESA_Click",0); +__c.LogImpl("250790401","B_REGRESA_Click",0); //BA.debugLineNum = 2191;BA.debugLine="BUSCA.Visible = False"; _busca.setVisible(__c.False); //BA.debugLineNum = 2192;BA.debugLine="connecta.Visible = True"; @@ -1040,7 +1040,7 @@ _totalcantped = _r6.GetString("PE_CANT"); _totalcantped = BA.NumberToString(0); }; //BA.debugLineNum = 409;BA.debugLine="Log(r5.GetString(\"HVD_RECHAZOCANT\") &\" - \"& tot"; -__c.LogImpl("814614775",_r5.GetString("HVD_RECHAZOCANT")+" - "+_totalcantped,0); +__c.LogImpl("249610999",_r5.GetString("HVD_RECHAZOCANT")+" - "+_totalcantped,0); //BA.debugLineNum = 410;BA.debugLine="rescant = rescant + ((r5.GetString(\"HVD_COSTO_T"; _rescant = BA.NumberToString((double)(Double.parseDouble(_rescant))+(((double)(Double.parseDouble(_r5.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble((_r5.GetString("HVD_CANT")))))*(((double)(Double.parseDouble(_r5.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_totalcantped)))))); //BA.debugLineNum = 412;BA.debugLine="r6.Close"; @@ -1052,7 +1052,7 @@ _r6.Close(); if ((_rescant).equals("NaN")) { _rescant = BA.NumberToString(0);}; //BA.debugLineNum = 416;BA.debugLine="LogColor(rescant,Colors.Red)"; -__c.LogImpl("814614782",_rescant,__c.Colors.Red); +__c.LogImpl("249611006",_rescant,__c.Colors.Red); //BA.debugLineNum = 417;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 421;BA.debugLine="Private r5 As Cursor = Starter.skmt.ExecQuery($\"s"; @@ -1088,7 +1088,7 @@ _r6.Close(); if (_rescant2==(double)(Double.parseDouble("NaN"))) { _rescant2 = 0;}; //BA.debugLineNum = 438;BA.debugLine="Log(rescant2)"; -__c.LogImpl("814614804",BA.NumberToString(_rescant2),0); +__c.LogImpl("249611028",BA.NumberToString(_rescant2),0); //BA.debugLineNum = 439;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 444;BA.debugLine="Private r5r As Cursor = Starter.skmt.ExecQuery($\""; @@ -1124,7 +1124,7 @@ _rescantr = BA.NumberToString(0);}; //BA.debugLineNum = 460;BA.debugLine="r5r.Close"; _r5r.Close(); //BA.debugLineNum = 462;BA.debugLine="Log(rescantr)"; -__c.LogImpl("814614828",_rescantr,0); +__c.LogImpl("249611052",_rescantr,0); //BA.debugLineNum = 464;BA.debugLine="Private r5r As Cursor = Starter.skmt.ExecQuery($\""; _r5r = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _r5r = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select IFNULL(HVD_COSTO_TOT,0) AS HVD_COSTO_TOT, IFNULL(HVD_CANT,0) AS HVD_CANT,IFNULL(CANTC,0) AS CANTC, IFNULL(HVD_RECHAZOCANT,0) AS HVD_RECHAZOCANT, HVD_PROID, HVD_CLIENTE, CONSECUTIVO from HIST_VENTAS where HVD_RECHAZO = '1' and BCAJAS = '1' ")))); @@ -1158,9 +1158,9 @@ _rescant2r = BA.NumberToString(0);}; //BA.debugLineNum = 481;BA.debugLine="r5r.Close"; _r5r.Close(); //BA.debugLineNum = 482;BA.debugLine="Log(rescant2r)"; -__c.LogImpl("814614848",_rescant2r,0); +__c.LogImpl("249611072",_rescant2r,0); //BA.debugLineNum = 483;BA.debugLine="Log(rescant2r+rescantr)"; -__c.LogImpl("814614849",BA.NumberToString((double)(Double.parseDouble(_rescant2r))+(double)(Double.parseDouble(_rescantr))),0); +__c.LogImpl("249611073",BA.NumberToString((double)(Double.parseDouble(_rescant2r))+(double)(Double.parseDouble(_rescantr))),0); //BA.debugLineNum = 499;BA.debugLine="Private r55 As Cursor = Starter.skmt.ExecQuery($\""; _r55 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _r55 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select HVD_COSTO_TOT from HIST_VENTAS where HVD_RECHAZO = '0' and BCAJAS = '0' ")))); @@ -1184,7 +1184,7 @@ _rescant3 = (double)(Double.parseDouble(__c.NumberFormat2(_rescant3,(int) (0),(i }; }; //BA.debugLineNum = 509;BA.debugLine="Log(rescant3)"; -__c.LogImpl("814614875",BA.NumberToString(_rescant3),0); +__c.LogImpl("249611099",BA.NumberToString(_rescant3),0); //BA.debugLineNum = 510;BA.debugLine="r55.Close"; _r55.Close(); //BA.debugLineNum = 515;BA.debugLine="Private r5 As Cursor = Starter.skmt.ExecQuery($\"s"; @@ -1200,7 +1200,7 @@ _r5.setPosition((int) (0)); _rescant4 = (double)(Double.parseDouble(_r5.GetString("HVD_COSTO_TOT"))); }; //BA.debugLineNum = 521;BA.debugLine="Log(rescant4)"; -__c.LogImpl("814614887",BA.NumberToString(_rescant4),0); +__c.LogImpl("249611111",BA.NumberToString(_rescant4),0); //BA.debugLineNum = 522;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 524;BA.debugLine="Private r5 As Cursor = Starter.skmt.ExecQuery($\"s"; @@ -1216,7 +1216,7 @@ _r5.setPosition((int) (0)); _rescant5 = (double)(Double.parseDouble(_r5.GetString("PE_COSTO_TOT"))); }; //BA.debugLineNum = 530;BA.debugLine="Log(rescant5)"; -__c.LogImpl("814614896",BA.NumberToString(_rescant5),0); +__c.LogImpl("249611120",BA.NumberToString(_rescant5),0); //BA.debugLineNum = 531;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 536;BA.debugLine="Private r5 As Cursor = Starter.skmt.ExecQuery($\"s"; @@ -1250,7 +1250,7 @@ _r6.Close(); if (_rescant6==(double)(Double.parseDouble("NaN"))) { _rescant6 = 0;}; //BA.debugLineNum = 551;BA.debugLine="LogColor(rescant6,Colors.Red)"; -__c.LogImpl("814614917",BA.NumberToString(_rescant6),__c.Colors.Red); +__c.LogImpl("249611141",BA.NumberToString(_rescant6),__c.Colors.Red); //BA.debugLineNum = 552;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 554;BA.debugLine="Private r5 As Cursor = Starter.skmt.ExecQuery($\"s"; @@ -1284,7 +1284,7 @@ _r6.Close(); if (_rescant7==(double)(Double.parseDouble("NaN"))) { _rescant7 = 0;}; //BA.debugLineNum = 567;BA.debugLine="Log(rescant7)"; -__c.LogImpl("814614933",BA.NumberToString(_rescant7),0); +__c.LogImpl("249611157",BA.NumberToString(_rescant7),0); //BA.debugLineNum = 568;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 571;BA.debugLine="l_rechazo.text = NumberFormat2((rescant + rescant"; @@ -1372,7 +1372,7 @@ case 3: //C this.state = 8; //BA.debugLineNum = 1858;BA.debugLine="Log(\"PANEL1 VISIBLE\")"; -parent.__c.LogImpl("815269891","PANEL1 VISIBLE",0); +parent.__c.LogImpl("250266115","PANEL1 VISIBLE",0); //BA.debugLineNum = 1859;BA.debugLine="B_REGRESA_Click"; parent._b_regresa_click(); if (true) break; @@ -1524,11 +1524,11 @@ _cp.setPosition((int) (0)); //BA.debugLineNum = 1144;BA.debugLine="Private fecha As String = cp.GetString(\"NV_FECHA"; _fecha = _cp.GetString("NV_FECHA"); //BA.debugLineNum = 1145;BA.debugLine="Log(cp.GetString(\"NV_FECHA\"))"; -__c.LogImpl("815138822",_cp.GetString("NV_FECHA"),0); +__c.LogImpl("250135046",_cp.GetString("NV_FECHA"),0); //BA.debugLineNum = 1146;BA.debugLine="Dim fecha2() As String = Regex.Split(\" \",fecha)"; _fecha2 = __c.Regex.Split(" ",_fecha); //BA.debugLineNum = 1147;BA.debugLine="Log(fecha2(0))"; -__c.LogImpl("815138824",_fecha2[(int) (0)],0); +__c.LogImpl("250135048",_fecha2[(int) (0)],0); //BA.debugLineNum = 1148;BA.debugLine="Dim fecha3() As String = Regex.Split(\"/\",fecha2("; _fecha3 = __c.Regex.Split("/",_fecha2[(int) (0)]); //BA.debugLineNum = 1149;BA.debugLine="DateTime.DateFormat = \"yyyyMMdd\""; @@ -1538,11 +1538,11 @@ __c.DateTime.setTimeFormat(""); //BA.debugLineNum = 1151;BA.debugLine="Dim dia As String = fecha3(2)&fecha3(0)&fecha3(1"; _dia = _fecha3[(int) (2)]+_fecha3[(int) (0)]+_fecha3[(int) (1)]; //BA.debugLineNum = 1152;BA.debugLine="Log(dia)"; -__c.LogImpl("815138829",_dia,0); +__c.LogImpl("250135053",_dia,0); //BA.debugLineNum = 1153;BA.debugLine="Dim dia2 As String = DateTime.Date(DateTime.Now)"; _dia2 = __c.DateTime.Date(__c.DateTime.getNow()); //BA.debugLineNum = 1154;BA.debugLine="Log(dia & \" , \" & dia2)"; -__c.LogImpl("815138831",_dia+" , "+_dia2,0); +__c.LogImpl("250135055",_dia+" , "+_dia2,0); //BA.debugLineNum = 1155;BA.debugLine="If dia < dia2 Then"; if ((double)(Double.parseDouble(_dia))<(double)(Double.parseDouble(_dia2))) { //BA.debugLineNum = 1156;BA.debugLine="pedidodiaanterior = True"; @@ -1552,7 +1552,7 @@ _pedidodiaanterior = __c.True; //BA.debugLineNum = 1159;BA.debugLine="If Not (pedidodiaanterior) Then"; if (__c.Not(_pedidodiaanterior)) { //BA.debugLineNum = 1160;BA.debugLine="Log(\"CUMPLE\")"; -__c.LogImpl("815138837","CUMPLE",0); +__c.LogImpl("250135061","CUMPLE",0); //BA.debugLineNum = 1161;BA.debugLine="EJECUTANDO = 1"; _ejecutando = BA.NumberToString(1); //BA.debugLineNum = 1162;BA.debugLine="reqs.Initialize"; @@ -1560,7 +1560,7 @@ _reqs.Initialize(); //BA.debugLineNum = 1163;BA.debugLine="TOPE = 0"; _tope = (int) (0); //BA.debugLineNum = 1164;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.serve"; -__c.LogImpl("815138841",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("250135065",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 1165;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serv"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 1167;BA.debugLine="Dim cmd As DBCommand"; @@ -1588,7 +1588,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from PUNTE //BA.debugLineNum = 1181;BA.debugLine="If l_ruta.Text = \"0\" Then '"; if ((_l_ruta.getText()).equals("0")) { //BA.debugLineNum = 1182;BA.debugLine="Log(\"********************* No hay ruta, BORRAM"; -__c.LogImpl("815138859","********************* No hay ruta, BORRAMOS TODO",0); +__c.LogImpl("250135083","********************* No hay ruta, BORRAMOS TODO",0); //BA.debugLineNum = 1183;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cat_gunaprod"); //BA.debugLineNum = 1184;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; @@ -1603,7 +1603,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from HIST_ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from NOVENTA"); }else { //BA.debugLineNum = 1190;BA.debugLine="Log(\"********************* Hay ruta, NO BORRAM"; -__c.LogImpl("815138867","********************* Hay ruta, NO BORRAMOS TODO",0); +__c.LogImpl("250135091","********************* Hay ruta, NO BORRAMOS TODO",0); }; //BA.debugLineNum = 1194;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from us"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select usuario from usuarioa"))); @@ -1620,7 +1620,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object //BA.debugLineNum = 1201;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"punteo\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("punteo")); //BA.debugLineNum = 1202;BA.debugLine="Log($\"Pedimos Punteo\"$)"; -__c.LogImpl("815138879",("Pedimos Punteo"),0); +__c.LogImpl("250135103",("Pedimos Punteo"),0); //BA.debugLineNum = 1203;BA.debugLine="reqs.Add(\"punteo\")"; _reqs.Add((Object)("punteo")); //BA.debugLineNum = 1206;BA.debugLine="cmd.Initialize"; @@ -1632,7 +1632,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; //BA.debugLineNum = 1209;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"gunaprod\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("gunaprod")); //BA.debugLineNum = 1210;BA.debugLine="Log($\"Pedimos gunaprod - ${ALMACEN}, ${e_ruta.te"; -__c.LogImpl("815138887",("Pedimos gunaprod - "+__c.SmartStringFormatter("",(Object)(_almacen))+", "+__c.SmartStringFormatter("",(Object)(_e_ruta.getText()))+""),0); +__c.LogImpl("250135111",("Pedimos gunaprod - "+__c.SmartStringFormatter("",(Object)(_almacen))+", "+__c.SmartStringFormatter("",(Object)(_e_ruta.getText()))+""),0); //BA.debugLineNum = 1211;BA.debugLine="reqs.Add(\"gunaprod\")"; _reqs.Add((Object)("gunaprod")); //BA.debugLineNum = 1215;BA.debugLine="cmd.Initialize"; @@ -1644,7 +1644,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object //BA.debugLineNum = 1218;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"kmt_datos\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("kmt_datos")); //BA.debugLineNum = 1219;BA.debugLine="Log($\"Pedimos kmt_datos\"$)"; -__c.LogImpl("815138896",("Pedimos kmt_datos"),0); +__c.LogImpl("250135120",("Pedimos kmt_datos"),0); //BA.debugLineNum = 1220;BA.debugLine="reqs.Add(\"kmt_datos\")"; _reqs.Add((Object)("kmt_datos")); //BA.debugLineNum = 1222;BA.debugLine="cmd.Initialize"; @@ -1656,7 +1656,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object //BA.debugLineNum = 1225;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"hist_datos\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("hist_datos")); //BA.debugLineNum = 1226;BA.debugLine="Log($\"Pedimos hist_datos\"$)"; -__c.LogImpl("815138903",("Pedimos hist_datos"),0); +__c.LogImpl("250135127",("Pedimos hist_datos"),0); //BA.debugLineNum = 1227;BA.debugLine="reqs.Add(\"hist_datos\")"; _reqs.Add((Object)("hist_datos")); //BA.debugLineNum = 1244;BA.debugLine="If ALMACEN = \"32\" Then"; @@ -1731,7 +1731,7 @@ if (__c.Not(_isconnectedtointernet())) { __c.MsgboxAsync(BA.ObjectToCharSequence("No hay conexión a Internet"),BA.ObjectToCharSequence("Revisa tu conexión"),ba);}; }else { //BA.debugLineNum = 1317;BA.debugLine="Log(\"XXXX\")"; -__c.LogImpl("815138994","XXXX",0); +__c.LogImpl("250135218","XXXX",0); //BA.debugLineNum = 1318;BA.debugLine="MsgboxAsync(\"Para poder cargar día no puedes ten"; __c.MsgboxAsync(BA.ObjectToCharSequence("Para poder cargar día no puedes tener venta del día anterior. Por favor haz FIN DIA e intenta nuevamente."),BA.ObjectToCharSequence("Atención"),ba); }; @@ -1757,11 +1757,11 @@ _cp.setPosition((int) (0)); //BA.debugLineNum = 986;BA.debugLine="Private fecha As String = cp.GetString(\"NV_FECHA"; _fecha = _cp.GetString("NV_FECHA"); //BA.debugLineNum = 987;BA.debugLine="Log(cp.GetString(\"NV_FECHA\"))"; -__c.LogImpl("815073286",_cp.GetString("NV_FECHA"),0); +__c.LogImpl("250069510",_cp.GetString("NV_FECHA"),0); //BA.debugLineNum = 988;BA.debugLine="Dim fecha2() As String = Regex.Split(\" \",fecha)"; _fecha2 = __c.Regex.Split(" ",_fecha); //BA.debugLineNum = 989;BA.debugLine="Log(fecha2(0))"; -__c.LogImpl("815073288",_fecha2[(int) (0)],0); +__c.LogImpl("250069512",_fecha2[(int) (0)],0); //BA.debugLineNum = 990;BA.debugLine="Dim fecha3() As String = Regex.Split(\"/\",fecha2("; _fecha3 = __c.Regex.Split("/",_fecha2[(int) (0)]); //BA.debugLineNum = 991;BA.debugLine="DateTime.DateFormat = \"yyyyMMdd\""; @@ -1771,11 +1771,11 @@ __c.DateTime.setTimeFormat(""); //BA.debugLineNum = 993;BA.debugLine="Dim dia As String = fecha3(2)&fecha3(0)&fecha3(1"; _dia = _fecha3[(int) (2)]+_fecha3[(int) (0)]+_fecha3[(int) (1)]; //BA.debugLineNum = 994;BA.debugLine="Log(dia)"; -__c.LogImpl("815073293",_dia,0); +__c.LogImpl("250069517",_dia,0); //BA.debugLineNum = 995;BA.debugLine="Dim dia2 As String = DateTime.Date(DateTime.Now)"; _dia2 = __c.DateTime.Date(__c.DateTime.getNow()); //BA.debugLineNum = 996;BA.debugLine="Log(dia & \" , \" & dia2)"; -__c.LogImpl("815073295",_dia+" , "+_dia2,0); +__c.LogImpl("250069519",_dia+" , "+_dia2,0); //BA.debugLineNum = 997;BA.debugLine="If dia < dia2 Then"; if ((double)(Double.parseDouble(_dia))<(double)(Double.parseDouble(_dia2))) { //BA.debugLineNum = 998;BA.debugLine="pedidodiaanterior = True"; @@ -1785,7 +1785,7 @@ _pedidodiaanterior = __c.True; //BA.debugLineNum = 1001;BA.debugLine="If Not (pedidodiaanterior) Then"; if (__c.Not(_pedidodiaanterior)) { //BA.debugLineNum = 1002;BA.debugLine="Log(\"CUMPLE\")"; -__c.LogImpl("815073301","CUMPLE",0); +__c.LogImpl("250069525","CUMPLE",0); //BA.debugLineNum = 1003;BA.debugLine="EJECUTANDO = 1"; _ejecutando = BA.NumberToString(1); //BA.debugLineNum = 1004;BA.debugLine="reqs.Initialize"; @@ -1793,7 +1793,7 @@ _reqs.Initialize(); //BA.debugLineNum = 1005;BA.debugLine="TOPE = 0"; _tope = (int) (0); //BA.debugLineNum = 1006;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.serve"; -__c.LogImpl("815073305",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("250069529",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 1007;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serv"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 1009;BA.debugLine="Dim cmd As DBCommand"; @@ -1821,7 +1821,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from PUNTE //BA.debugLineNum = 1023;BA.debugLine="If l_ruta.Text = \"0\" Then '"; if ((_l_ruta.getText()).equals("0")) { //BA.debugLineNum = 1024;BA.debugLine="Log(\"********************* No hay ruta, BORRAM"; -__c.LogImpl("815073323","********************* No hay ruta, BORRAMOS TODO",0); +__c.LogImpl("250069547","********************* No hay ruta, BORRAMOS TODO",0); //BA.debugLineNum = 1025;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cat_gunaprod"); //BA.debugLineNum = 1026;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; @@ -1838,7 +1838,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from NOVEN _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM ABONOSP"); }else { //BA.debugLineNum = 1033;BA.debugLine="Log(\"********************* Hay ruta, NO BORRAM"; -__c.LogImpl("815073332","********************* Hay ruta, NO BORRAMOS TODO",0); +__c.LogImpl("250069556","********************* Hay ruta, NO BORRAMOS TODO",0); }; //BA.debugLineNum = 1037;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from us"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select usuario from usuarioa"))); @@ -1855,7 +1855,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object //BA.debugLineNum = 1044;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"punteo\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("punteo")); //BA.debugLineNum = 1045;BA.debugLine="Log($\"Pedimos Punteo\"$)"; -__c.LogImpl("815073344",("Pedimos Punteo"),0); +__c.LogImpl("250069568",("Pedimos Punteo"),0); //BA.debugLineNum = 1046;BA.debugLine="reqs.Add(\"punteo\")"; _reqs.Add((Object)("punteo")); //BA.debugLineNum = 1048;BA.debugLine="cmd.Initialize"; @@ -1867,7 +1867,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; //BA.debugLineNum = 1051;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"gunaprod\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("gunaprod")); //BA.debugLineNum = 1052;BA.debugLine="Log($\"Pedimos gunaprod - ${ALMACEN}, ${e_ruta.te"; -__c.LogImpl("815073351",("Pedimos gunaprod - "+__c.SmartStringFormatter("",(Object)(_almacen))+", "+__c.SmartStringFormatter("",(Object)(_e_ruta.getText()))+""),0); +__c.LogImpl("250069575",("Pedimos gunaprod - "+__c.SmartStringFormatter("",(Object)(_almacen))+", "+__c.SmartStringFormatter("",(Object)(_e_ruta.getText()))+""),0); //BA.debugLineNum = 1053;BA.debugLine="reqs.Add(\"gunaprod\")"; _reqs.Add((Object)("gunaprod")); //BA.debugLineNum = 1055;BA.debugLine="cmd.Initialize"; @@ -1880,14 +1880,14 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen),(Object)(_e_ruta _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("select_abonosp")); //BA.debugLineNum = 1060;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 1061;BA.debugLine="cmd.Name = \"select_cliente_INTMEX_re_REPG\""; -_cmd.Name /*String*/ = "select_cliente_INTMEX_re_REPG"; + //BA.debugLineNum = 1061;BA.debugLine="cmd.Name = \"select_cliente_INTMEX_re_REPG2\""; +_cmd.Name /*String*/ = "select_cliente_INTMEX_re_REPG2"; //BA.debugLineNum = 1062;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text, AL"; -_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object)(_almacen),(Object)(_almacen),(Object)(_e_ruta.getText()),(Object)(_almacen)}; +_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object)(_almacen),(Object)(_almacen),(Object)(_e_ruta.getText())}; //BA.debugLineNum = 1063;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"kmt_datos\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("kmt_datos")); //BA.debugLineNum = 1064;BA.debugLine="Log($\"Pedimos kmt_datos\"$)"; -__c.LogImpl("815073363",("Pedimos kmt_datos"),0); +__c.LogImpl("250069587",("Pedimos kmt_datos"),0); //BA.debugLineNum = 1065;BA.debugLine="reqs.Add(\"kmt_datos\")"; _reqs.Add((Object)("kmt_datos")); //BA.debugLineNum = 1067;BA.debugLine="cmd.Initialize"; @@ -1899,7 +1899,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object //BA.debugLineNum = 1070;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"hist_datos\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("hist_datos")); //BA.debugLineNum = 1071;BA.debugLine="Log($\"Pedimos hist_datos\"$)"; -__c.LogImpl("815073370",("Pedimos hist_datos"),0); +__c.LogImpl("250069594",("Pedimos hist_datos"),0); //BA.debugLineNum = 1072;BA.debugLine="reqs.Add(\"hist_datos\")"; _reqs.Add((Object)("hist_datos")); //BA.debugLineNum = 1074;BA.debugLine="cmd.Initialize"; @@ -1935,7 +1935,7 @@ if (__c.Not(_isconnectedtointernet())) { __c.MsgboxAsync(BA.ObjectToCharSequence("No hay conexión a Internet"),BA.ObjectToCharSequence("Revisa tu conexión"),ba);}; }else { //BA.debugLineNum = 1133;BA.debugLine="Log(\"XXXX\")"; -__c.LogImpl("815073432","XXXX",0); +__c.LogImpl("250069656","XXXX",0); //BA.debugLineNum = 1134;BA.debugLine="MsgboxAsync(\"Para poder cargar día no puedes ten"; __c.MsgboxAsync(BA.ObjectToCharSequence("Para poder cargar día no puedes tener venta del día anterior. Por favor haz FIN DIA e intenta nuevamente."),BA.ObjectToCharSequence("Atención"),ba); }; @@ -2144,7 +2144,7 @@ return ""; public String _connecta_click() throws Exception{ //BA.debugLineNum = 1869;BA.debugLine="Sub connecta_Click"; //BA.debugLineNum = 1870;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("815335425",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("250331649",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 1871;BA.debugLine="If Not(IsConnectedToInternet) Then MsgboxAsync(\"N"; if (__c.Not(_isconnectedtointernet())) { __c.MsgboxAsync(BA.ObjectToCharSequence("No hay conexión a conexión a Internet"),BA.ObjectToCharSequence("Revisa tu conexión"),ba);}; @@ -2265,7 +2265,6 @@ String _fechapre = ""; int _restarechazos = 0; double _costorechazos = 0; String[] _fechatabulador = null; -String[] _fechatabulador2 = null; String _fechatabulador3 = ""; //BA.debugLineNum = 686;BA.debugLine="Sub envioinfo"; //BA.debugLineNum = 691;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT NV_CLIENTE,NV_"; @@ -2326,7 +2325,7 @@ if (_o.getRowCount()>0) { //BA.debugLineNum = 716;BA.debugLine="o.Position = 0"; _o.setPosition((int) (0)); //BA.debugLineNum = 717;BA.debugLine="Log(\"Enviamos reprogramados: \" & r.RowCount)"; -__c.LogImpl("815007775","Enviamos reprogramados: "+BA.NumberToString(_r.getRowCount()),0); +__c.LogImpl("250003999","Enviamos reprogramados: "+BA.NumberToString(_r.getRowCount()),0); //BA.debugLineNum = 719;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_intmex.keymon.lat.dbrequestmanager._dbcommand(); //BA.debugLineNum = 720;BA.debugLine="cmd.Initialize"; @@ -2398,7 +2397,7 @@ _pa.Close(); _ab = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _ab = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("SELECT * from ABONOS where a_enviado is null")))); //BA.debugLineNum = 759;BA.debugLine="Log(ab.RowCount)"; -__c.LogImpl("815007817",BA.NumberToString(_ab.getRowCount()),0); +__c.LogImpl("250004041",BA.NumberToString(_ab.getRowCount()),0); //BA.debugLineNum = 760;BA.debugLine="If ab.RowCount > 0 Then"; if (_ab.getRowCount()>0) { //BA.debugLineNum = 761;BA.debugLine="For i=0 To ab.RowCount -1"; @@ -2430,7 +2429,7 @@ _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_ab.GetString("a_usuario") //BA.debugLineNum = 776;BA.debugLine="reqManager.ExecuteCommand(cmd , $\"ins_abonosPen"; _reqmanager._executecommand /*String*/ (_cmd,(Object)(("ins_abonosPendientes_"+__c.SmartStringFormatter("",(Object)(_ab.GetString("a_cliente")))+""))); //BA.debugLineNum = 777;BA.debugLine="Log($\"ins_abonosPendientes_${ab.GetString(\"a_cl"; -__c.LogImpl("815007835",("ins_abonosPendientes_"+__c.SmartStringFormatter("",(Object)(_ab.GetString("a_cliente")))+""),0); +__c.LogImpl("250004059",("ins_abonosPendientes_"+__c.SmartStringFormatter("",(Object)(_ab.GetString("a_cliente")))+""),0); } }; }; @@ -2503,7 +2502,7 @@ _c.Close(); //BA.debugLineNum = 861;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT CLIENTE, USUARI"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("SELECT CLIENTE, USUARIO, FECHA_PUNTEO, LATITUD, LONGITUD, ALMACEN, RUTA_REPARTO, RUTA_PREV, FECHA_PREVENTA, MOTIVO, COMENTARIO,TIPO FROM REPARTO_GEO"))); //BA.debugLineNum = 862;BA.debugLine="Log($\"REPARTO_Cliente PENDIENTE: ${c.RowCount}\"$)"; -__c.LogImpl("815007920",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); +__c.LogImpl("250004144",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); //BA.debugLineNum = 863;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { //BA.debugLineNum = 864;BA.debugLine="For i=0 To c.RowCount -1"; @@ -2557,10 +2556,8 @@ _c.setPosition(_i); _cmd = new reparto_intmex.keymon.lat.dbrequestmanager._dbcommand(); //BA.debugLineNum = 889;BA.debugLine="Dim fechatabulador() As String = Regex.Split(\""; _fechatabulador = __c.Regex.Split(" ",_f.GetString("HVD_FECHA")); - //BA.debugLineNum = 890;BA.debugLine="Dim fechatabulador2() As String = Regex.Split(\""; -_fechatabulador2 = __c.Regex.Split("-",_fechatabulador[(int) (0)]); - //BA.debugLineNum = 891;BA.debugLine="Dim fechatabulador3 As String = fechatabulador2"; -_fechatabulador3 = _fechatabulador2[(int) (1)]+"/"+_fechatabulador2[(int) (2)]+"/"+_fechatabulador2[(int) (0)]; + //BA.debugLineNum = 891;BA.debugLine="Dim fechatabulador3 As String = fechatabulador("; +_fechatabulador3 = _fechatabulador[(int) (0)]; //BA.debugLineNum = 892;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); //BA.debugLineNum = 893;BA.debugLine="cmd.Name = \"insert_tabulador_monedas_INTMEX\""; @@ -2598,20 +2595,18 @@ _f.setPosition((int) (0)); if (_c.getRowCount()>0) { //BA.debugLineNum = 955;BA.debugLine="For i = 0 To c.RowCount - 1"; { -final int step151 = 1; -final int limit151 = (int) (_c.getRowCount()-1); +final int step150 = 1; +final int limit150 = (int) (_c.getRowCount()-1); _i = (int) (0) ; -for (;_i <= limit151 ;_i = _i + step151 ) { +for (;_i <= limit150 ;_i = _i + step150 ) { //BA.debugLineNum = 956;BA.debugLine="c.Position=i"; _c.setPosition(_i); //BA.debugLineNum = 957;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_intmex.keymon.lat.dbrequestmanager._dbcommand(); //BA.debugLineNum = 958;BA.debugLine="Dim fechatabulador() As String = Regex.Split(\""; _fechatabulador = __c.Regex.Split(" ",_f.GetString("HVD_FECHA")); - //BA.debugLineNum = 959;BA.debugLine="Dim fechatabulador2() As String = Regex.Split(\""; -_fechatabulador2 = __c.Regex.Split("-",_fechatabulador[(int) (0)]); - //BA.debugLineNum = 960;BA.debugLine="Dim fechatabulador3 As String = fechatabulador2"; -_fechatabulador3 = _fechatabulador2[(int) (1)]+"/"+_fechatabulador2[(int) (2)]+"/"+_fechatabulador2[(int) (0)]; + //BA.debugLineNum = 960;BA.debugLine="Dim fechatabulador3 As String = fechatabulador("; +_fechatabulador3 = _fechatabulador[(int) (0)]; //BA.debugLineNum = 961;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); //BA.debugLineNum = 962;BA.debugLine="cmd.Name = \"insert_tabulador_billetes_INTMEX\""; @@ -2770,10 +2765,10 @@ String _k = ""; //BA.debugLineNum = 1325;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { //BA.debugLineNum = 1326;BA.debugLine="LogColor(\"** \" & Job.Tag & \" Error: \" & Job.Erro"; -__c.LogImpl("815204355","** "+BA.ObjectToString(_job._tag /*Object*/ )+" Error: "+_job._errormessage /*String*/ ,__c.Colors.Red); +__c.LogImpl("250200579","** "+BA.ObjectToString(_job._tag /*Object*/ )+" Error: "+_job._errormessage /*String*/ ,__c.Colors.Red); }else { //BA.debugLineNum = 1329;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("815204358","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); +__c.LogImpl("250200582","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); //BA.debugLineNum = 1330;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { //BA.debugLineNum = 1331;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; @@ -2893,7 +2888,7 @@ if (_reqs.IndexOf((Object)("gunaprod3"))>-1) { //BA.debugLineNum = 1395;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprod3\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("gunaprod3"))); //BA.debugLineNum = 1396;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("815204425",BA.NumberToString(_reqs.getSize()),0); +__c.LogImpl("250200649",BA.NumberToString(_reqs.getSize()),0); }; //BA.debugLineNum = 1398;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); @@ -2967,13 +2962,13 @@ _result = _reqmanager._handlejob /*reparto_intmex.keymon.lat.dbrequestmanager._d //BA.debugLineNum = 1435;BA.debugLine="If result.Tag = \"gunaprod\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("gunaprod"))) { //BA.debugLineNum = 1436;BA.debugLine="Log(\"Entramos a GUNA_PROD<--------------------"; -__c.LogImpl("815204465","Entramos a GUNA_PROD<---------------------------------",0); +__c.LogImpl("250200689","Entramos a GUNA_PROD<---------------------------------",0); //BA.debugLineNum = 1437;BA.debugLine="If reqs.IndexOf(\"gunaprod\") > -1 Then"; if (_reqs.IndexOf((Object)("gunaprod"))>-1) { //BA.debugLineNum = 1438;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprod\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("gunaprod"))); //BA.debugLineNum = 1439;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("815204468",BA.NumberToString(_reqs.getSize()),0); +__c.LogImpl("250200692",BA.NumberToString(_reqs.getSize()),0); }; //BA.debugLineNum = 1441;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); @@ -3010,7 +3005,7 @@ _precioconver = BA.NumberToString(0); //BA.debugLineNum = 1454;BA.debugLine="Dim CAT_GP_IMG() As Byte = records(result.Col"; _cat_gp_img = (byte[])(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_IMG"))))]); //BA.debugLineNum = 1459;BA.debugLine="Log(CAT_GP_NOMBRE & \"<-----------------------"; -__c.LogImpl("815204488",_cat_gp_nombre+"<-------------------------------------",0); +__c.LogImpl("250200712",_cat_gp_nombre+"<-------------------------------------",0); //BA.debugLineNum = 1460;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_G"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CAT_GUNAPROD(CAT_GP_ID,CAT_GP_NOMBRE,CAT_GP_IMP1,CAT_GP_IMP2,CAT_GP_PRECIO,CAT_GP_CLASIF,CAT_GP_STS,CAT_GP_TIPO,CAT_GP_SUBTIPO,CAT_GP_IMG,CAT_GP_ALMACEN,CONVERSION,PRECIOCONVER) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_cat_gp_id),(Object)(_cat_gp_nombre),(Object)(_cat_gp_imp1),(Object)(_cat_gp_imp2),(Object)(_cat_gp_precio),(Object)(_cat_gp_clasif),(Object)(_cat_gp_sts),(Object)(_cat_gp_tipo),(Object)(_cat_gp_subtipo),(Object)(_cat_gp_img),(Object)(0),(Object)(_conversion),(Object)(_precioconver)})); } @@ -3045,7 +3040,7 @@ if (_reqs.IndexOf((Object)("gunaprodp"))>-1) { //BA.debugLineNum = 1478;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprodp\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("gunaprodp"))); //BA.debugLineNum = 1479;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("815204508",BA.NumberToString(_reqs.getSize()),0); +__c.LogImpl("250200732",BA.NumberToString(_reqs.getSize()),0); }; //BA.debugLineNum = 1481;BA.debugLine="For Each records() As Object In result.Rows"; { @@ -3114,7 +3109,7 @@ if (_reqs.IndexOf((Object)("detallepaq"))>-1) { //BA.debugLineNum = 1515;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"detallepaq\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("detallepaq"))); //BA.debugLineNum = 1516;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("815204545",BA.NumberToString(_reqs.getSize()),0); +__c.LogImpl("250200769",BA.NumberToString(_reqs.getSize()),0); }; //BA.debugLineNum = 1518;BA.debugLine="For Each records() As Object In result.Rows"; { @@ -3218,7 +3213,7 @@ if (_reqs.IndexOf((Object)("punteo"))>0) { //BA.debugLineNum = 1571;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"punteo\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("punteo"))); //BA.debugLineNum = 1572;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("815204601",BA.NumberToString(_reqs.getSize()),0); +__c.LogImpl("250200825",BA.NumberToString(_reqs.getSize()),0); }; //BA.debugLineNum = 1574;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); @@ -3258,9 +3253,9 @@ if (_reqs.IndexOf((Object)("hist_datos"))>-1) { _reqs.RemoveAt(_reqs.IndexOf((Object)("hist_datos"))); }; //BA.debugLineNum = 1594;BA.debugLine="Log(l_ruta.text)"; -__c.LogImpl("815204623",_l_ruta.getText(),0); +__c.LogImpl("250200847",_l_ruta.getText(),0); //BA.debugLineNum = 1595;BA.debugLine="Log($\"******** Insertamos HV - ${result.Rows."; -__c.LogImpl("815204624",("******** Insertamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); +__c.LogImpl("250200848",("******** Insertamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); //BA.debugLineNum = 1596;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); //BA.debugLineNum = 1597;BA.debugLine="Dim consecutivo As Int= 0"; @@ -3302,7 +3297,7 @@ _consecutivo = (int) (_consecutivo+1); //BA.debugLineNum = 1614;BA.debugLine="If l_ruta.Text = \"0\" Then 'Si no hay ruta car"; if ((_l_ruta.getText()).equals("0")) { //BA.debugLineNum = 1615;BA.debugLine="Log(\"No hay ruta, guardamos todos\")"; -__c.LogImpl("815204644","No hay ruta, guardamos todos",0); +__c.LogImpl("250200868","No hay ruta, guardamos todos",0); //BA.debugLineNum = 1616;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIST"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO HIST_VENTAS(HVD_CLIENTE, HVD_PRONOMBRE, HVD_CANT,HVD_COSTO_TOT, HVD_FECHA, HVD_CODPROMO, HVD_PROID,HVD_NUM_TICKET, HVD_NUM_REGISTRO, HVD_RECHAZO, HVD_ESTATUS, HVD_PARCIAL, BCAJAS,CANTC,CONSECUTIVO,BCAJAS_OR,CANTC_OR) VALUES (?,?,?,?,?,?,?,?,?,?,0,0,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_hvd_cliente),(Object)(_hvd_pronombre),(Object)(_hvd_cant),(Object)(_hvd_costo_tot),(Object)(_hvd_fecha),(Object)(_hvd_codpromo),(Object)(_hvd_proid),(Object)(_hvd_num_ticket),(Object)(_hvd_num_registro),(Object)(_hvd_rechazo),(Object)(_bcajas),(Object)(_cantc),(Object)(_consecutivo),(Object)(_bcajas),(Object)(_cantc)})); //BA.debugLineNum = 1617;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIST"; @@ -3314,7 +3309,7 @@ _tc = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjec //BA.debugLineNum = 1621;BA.debugLine="If tc.RowCount = 0 Then"; if (_tc.getRowCount()==0) { //BA.debugLineNum = 1622;BA.debugLine="Log($\"Guardamos ${HVD_CLIENTE}\"$)"; -__c.LogImpl("815204651",("Guardamos "+__c.SmartStringFormatter("",(Object)(_hvd_cliente))+""),0); +__c.LogImpl("250200875",("Guardamos "+__c.SmartStringFormatter("",(Object)(_hvd_cliente))+""),0); //BA.debugLineNum = 1623;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIS"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO HIST_VENTAS(HVD_CLIENTE,HVD_PRONOMBRE,HVD_CANT,HVD_COSTO_TOT, HVD_FECHA, HVD_CODPROMO, HVD_PROID,HVD_NUM_TICKET, HVD_NUM_REGISTRO, HVD_RECHAZO, HVD_ESTATUS, HVD_PARCIAL, BCAJAS,CANTC,CONSECUTIVO,BCAJAS_OR,CANTC_OR) VALUES (?,?,?,?,?,?,?,?,?,?,0,0,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_hvd_cliente),(Object)(_hvd_pronombre),(Object)(_hvd_cant),(Object)(_hvd_costo_tot),(Object)(_hvd_fecha),(Object)(_hvd_codpromo),(Object)(_hvd_proid),(Object)(_hvd_num_ticket),(Object)(_hvd_num_registro),(Object)(_hvd_rechazo),(Object)(_bcajas),(Object)(_cantc),(Object)(_consecutivo),(Object)(_bcajas),(Object)(_cantc)})); //BA.debugLineNum = 1624;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIS"; @@ -3328,7 +3323,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .TransactionSuccessful(); //BA.debugLineNum = 1629;BA.debugLine="Starter.skmt.EndTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .EndTransaction(); //BA.debugLineNum = 1630;BA.debugLine="Log($\"******** Terminamos HV - ${result.Rows."; -__c.LogImpl("815204659",("******** Terminamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); +__c.LogImpl("250200883",("******** Terminamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); //BA.debugLineNum = 1644;BA.debugLine="Listo3 =1"; _listo3 = BA.NumberToString(1); //BA.debugLineNum = 1645;BA.debugLine="If Listo1 = 1 And Listo3 = 1 Then"; @@ -3541,7 +3536,7 @@ if (_reqs.IndexOf((Object)("ruta"))>-1) { //BA.debugLineNum = 1759;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"ruta\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("ruta"))); //BA.debugLineNum = 1760;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("815204789",BA.NumberToString(_reqs.getSize()),0); +__c.LogImpl("250201013",BA.NumberToString(_reqs.getSize()),0); }; //BA.debugLineNum = 1762;BA.debugLine="For Each records() As Object In result.Rows"; { @@ -3610,7 +3605,7 @@ final int groupLen401 = group401.getSize() for (; index401 < groupLen401;index401++){ _records = (Object[])(group401.Get(index401)); //BA.debugLineNum = 1795;BA.debugLine="Log(\"Coordenadas del almacen: \" & records(res"; -__c.LogImpl("815204824","Coordenadas del almacen: "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LATITUD"))))])+","+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LONGITUD"))))]),0); +__c.LogImpl("250201048","Coordenadas del almacen: "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LATITUD"))))])+","+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LONGITUD"))))]),0); //BA.debugLineNum = 1796;BA.debugLine="Private lat, lon As Double"; _lat = 0; _lon = 0; @@ -3660,7 +3655,7 @@ final int groupLen421 = group421.getSize() for (; index421 < groupLen421;index421++){ _k = BA.ObjectToString(group421.Get(index421)); //BA.debugLineNum = 1817;BA.debugLine="Log(k & \": \" & records(result.Columns.Get(k)"; -__c.LogImpl("815204846",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); +__c.LogImpl("250201070",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } @@ -3690,7 +3685,7 @@ final int groupLen431 = group431.getSize() for (; index431 < groupLen431;index431++){ _k = BA.ObjectToString(group431.Get(index431)); //BA.debugLineNum = 1828;BA.debugLine="Log(k & \": \" & records(result.Columns.Get(k)"; -__c.LogImpl("815204857",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); +__c.LogImpl("250201081",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } @@ -3724,11 +3719,11 @@ public String _listview1_itemclick(int _position,Object _value) throws Exceptio String[] _clieasing = null; //BA.debugLineNum = 2224;BA.debugLine="Private Sub ListView1_ItemClick (Position As Int,"; //BA.debugLineNum = 2225;BA.debugLine="Log(Value)"; -__c.LogImpl("816056321",BA.ObjectToString(_value),0); +__c.LogImpl("251052545",BA.ObjectToString(_value),0); //BA.debugLineNum = 2227;BA.debugLine="Dim clieasing() As String = Regex.Split(\" \", Valu"; _clieasing = __c.Regex.Split(" ",BA.ObjectToString(_value)); //BA.debugLineNum = 2228;BA.debugLine="Log(clieasing(0))"; -__c.LogImpl("816056324",_clieasing[(int) (0)],0); +__c.LogImpl("251052548",_clieasing[(int) (0)],0); //BA.debugLineNum = 2230;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CUENTAA"); //BA.debugLineNum = 2231;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA V"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_productos.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_productos.java index a470d13..b9d39e2 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_productos.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_productos.java @@ -122,7 +122,7 @@ _sdate = __c.DateTime.Date(__c.DateTime.getNow()); //BA.debugLineNum = 670;BA.debugLine="sTime = DateTime.Time(DateTime.Now)"; _stime = __c.DateTime.Time(__c.DateTime.getNow()); //BA.debugLineNum = 672;BA.debugLine="LogColor(\"b_prodMas_Click\", Colors.Magenta)"; -__c.LogImpl("819464200","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("255115784","b_prodMas_Click",__c.Colors.Magenta); //BA.debugLineNum = 673;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 674;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -138,7 +138,7 @@ _lacant = _pnl.GetView((int) (2)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacant.getTag()))); //BA.debugLineNum = 681;BA.debugLine="Log(\"LC_TEXT:\"&laCant.Text&\"|LC_TAG:\"&laCant.Tag&"; -__c.LogImpl("819464209","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("255115793","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 682;BA.debugLine="If laCant.Text = \"\" Then laCant.Text = 0"; if ((_lacant.getText()).equals("")) { _lacant.setText(BA.ObjectToCharSequence(0));}; @@ -164,16 +164,16 @@ _minimos.Close(); //BA.debugLineNum = 695;BA.debugLine="minimoadesc = \"1\""; _minimoadesc = "1"; //BA.debugLineNum = 698;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("819464226",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("255115810",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 699;BA.debugLine="Log(esteTag.get(4))"; -__c.LogImpl("819464227",BA.ObjectToString(_estetag.Get((int) (4))),0); +__c.LogImpl("255115811",BA.ObjectToString(_estetag.Get((int) (4))),0); //BA.debugLineNum = 700;BA.debugLine="If esteTag.Get(4) = \"0\" Then"; if ((_estetag.Get((int) (4))).equals((Object)("0"))) { }else { //BA.debugLineNum = 703;BA.debugLine="If laCant.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacant.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 704;BA.debugLine="Log($\"NuevaCant = ${laCant.Text + 1}\"$)"; -__c.LogImpl("819464232",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("255115816",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); //BA.debugLineNum = 705;BA.debugLine="laCant.Text = $\"$1.0{laCant.Text + 1}\"$"; _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""))); //BA.debugLineNum = 706;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunaprod"; @@ -257,42 +257,42 @@ if ((_c2.GetString("HVD_CODPROMO")).equals(_subs._traealmacen /*String*/ (ba))) //BA.debugLineNum = 754;BA.debugLine="Private pup As String = c2.GetString(\"HVD_CO"; _pup = BA.NumberToString((double)(Double.parseDouble(_c2.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_c2.GetString("HVD_CANT")))); //BA.debugLineNum = 757;BA.debugLine="Log(\"algo1\")"; -__c.LogImpl("819464285","algo1",0); +__c.LogImpl("255115869","algo1",0); //BA.debugLineNum = 758;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PEDI"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO PEDIDO(PE_PROID,PE_PRONOMBRE,PE_CANT,PE_CLIENTEOR,PE_CLIENTE,PE_COSTOU,PE_COSTO_TOT,PE_CAJAS,PE_BCAJAS,CONSECUTIVO,PE_RUTA, PE_TIPO,PE_CEDIS,PE_FECHA,PE_USUARIO,FECHA_PREV,RUTA_REP,PE_REGALO) VALUES (?,?,?,?,?,?,?,0,0,?,?,?,?,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{BA.ObjectToString(_estetag.Get((int) (2))),_c2.GetString("HVD_PRONOMBRE"),BA.NumberToString(1*(double)(Double.parseDouble(_minimoadesc))),BA.ObjectToString(_estetag.Get((int) (5))),_subs._traecliente /*String*/ (ba),BA.NumberToString(((double)(Double.parseDouble(_pup))*(double)(Double.parseDouble(_minimoadesc)))),BA.NumberToString(((double)(Double.parseDouble(_pup))*(double)(Double.parseDouble(_minimoadesc)))),BA.ObjectToString(_estetag.Get((int) (6))),_subs._traerutaprev /*String*/ (ba),"PREVENTA",_subs._traealmacen /*String*/ (ba),_sdate+" "+_stime,_subs._traeusuario /*String*/ (ba),_subs._traefechaprev /*String*/ (ba),_subs._traerutareparto /*String*/ (ba),_esregalo})); }else { //BA.debugLineNum = 760;BA.debugLine="Log(\"|\" & preciofull& \"|\")"; -__c.LogImpl("819464288","|"+_preciofull+"|",0); +__c.LogImpl("255115872","|"+_preciofull+"|",0); //BA.debugLineNum = 761;BA.debugLine="Log(\"|\" & minimoadesc& \"|\")"; -__c.LogImpl("819464289","|"+_minimoadesc+"|",0); +__c.LogImpl("255115873","|"+_minimoadesc+"|",0); //BA.debugLineNum = 765;BA.debugLine="Log(esteTag.Get(2))"; -__c.LogImpl("819464293",BA.ObjectToString(_estetag.Get((int) (2))),0); +__c.LogImpl("255115877",BA.ObjectToString(_estetag.Get((int) (2))),0); //BA.debugLineNum = 766;BA.debugLine="Log(c2.GetString(\"HVD_PRONOMBRE\"))"; -__c.LogImpl("819464294",_c2.GetString("HVD_PRONOMBRE"),0); +__c.LogImpl("255115878",_c2.GetString("HVD_PRONOMBRE"),0); //BA.debugLineNum = 767;BA.debugLine="Log((1*minimoadesc))"; -__c.LogImpl("819464295",BA.NumberToString((1*(double)(Double.parseDouble(_minimoadesc)))),0); +__c.LogImpl("255115879",BA.NumberToString((1*(double)(Double.parseDouble(_minimoadesc)))),0); //BA.debugLineNum = 768;BA.debugLine="Log(esteTag.Get(5))"; -__c.LogImpl("819464296",BA.ObjectToString(_estetag.Get((int) (5))),0); +__c.LogImpl("255115880",BA.ObjectToString(_estetag.Get((int) (5))),0); //BA.debugLineNum = 769;BA.debugLine="Log(Subs.traeCliente)"; -__c.LogImpl("819464297",_subs._traecliente /*String*/ (ba),0); +__c.LogImpl("255115881",_subs._traecliente /*String*/ (ba),0); //BA.debugLineNum = 770;BA.debugLine="Log((preciofull*minimoadesc))"; -__c.LogImpl("819464298",BA.NumberToString(((double)(Double.parseDouble(_preciofull))*(double)(Double.parseDouble(_minimoadesc)))),0); +__c.LogImpl("255115882",BA.NumberToString(((double)(Double.parseDouble(_preciofull))*(double)(Double.parseDouble(_minimoadesc)))),0); //BA.debugLineNum = 771;BA.debugLine="Log(esteTag.Get(6))"; -__c.LogImpl("819464299",BA.ObjectToString(_estetag.Get((int) (6))),0); +__c.LogImpl("255115883",BA.ObjectToString(_estetag.Get((int) (6))),0); //BA.debugLineNum = 772;BA.debugLine="Log(Subs.traerUTAPREV)"; -__c.LogImpl("819464300",_subs._traerutaprev /*String*/ (ba),0); +__c.LogImpl("255115884",_subs._traerutaprev /*String*/ (ba),0); //BA.debugLineNum = 773;BA.debugLine="Log(Subs.traeAlmacen)"; -__c.LogImpl("819464301",_subs._traealmacen /*String*/ (ba),0); +__c.LogImpl("255115885",_subs._traealmacen /*String*/ (ba),0); //BA.debugLineNum = 774;BA.debugLine="Log(sDate & \" \" & sTime)"; -__c.LogImpl("819464302",_sdate+" "+_stime,0); +__c.LogImpl("255115886",_sdate+" "+_stime,0); //BA.debugLineNum = 775;BA.debugLine="Log(Subs.traeUsuario)"; -__c.LogImpl("819464303",_subs._traeusuario /*String*/ (ba),0); +__c.LogImpl("255115887",_subs._traeusuario /*String*/ (ba),0); //BA.debugLineNum = 776;BA.debugLine="Log(Subs.traefECHAPREV)"; -__c.LogImpl("819464304",_subs._traefechaprev /*String*/ (ba),0); +__c.LogImpl("255115888",_subs._traefechaprev /*String*/ (ba),0); //BA.debugLineNum = 777;BA.debugLine="Log(Subs.traeRutaReparto)"; -__c.LogImpl("819464305",_subs._traerutareparto /*String*/ (ba),0); +__c.LogImpl("255115889",_subs._traerutareparto /*String*/ (ba),0); //BA.debugLineNum = 778;BA.debugLine="Log(esregalo)"; -__c.LogImpl("819464306",_esregalo,0); +__c.LogImpl("255115890",_esregalo,0); //BA.debugLineNum = 781;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PEDI"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO PEDIDO(PE_PROID,PE_PRONOMBRE,PE_CANT,PE_CLIENTEOR,PE_CLIENTE,PE_COSTOU,PE_COSTO_TOT,PE_CAJAS,PE_BCAJAS,CONSECUTIVO,PE_RUTA, PE_TIPO,PE_CEDIS,PE_FECHA,PE_USUARIO,FECHA_PREV,RUTA_REP,PE_REGALO) VALUES (?,?,?,?,?,?,?,0,0,?,?,?,?,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{BA.ObjectToString(_estetag.Get((int) (2))),_c2.GetString("HVD_PRONOMBRE"),BA.NumberToString(1*(double)(Double.parseDouble(_minimoadesc))),BA.ObjectToString(_estetag.Get((int) (5))),_subs._traecliente /*String*/ (ba),BA.NumberToString(((double)(Double.parseDouble(_preciofull))*(double)(Double.parseDouble(_minimoadesc)))),BA.NumberToString(((double)(Double.parseDouble(_preciofull))*(double)(Double.parseDouble(_minimoadesc)))),BA.ObjectToString(_estetag.Get((int) (6))),_subs._traerutaprev /*String*/ (ba),"PREVENTA",_subs._traealmacen /*String*/ (ba),_sdate+" "+_stime,_subs._traeusuario /*String*/ (ba),_subs._traefechaprev /*String*/ (ba),_subs._traerutareparto /*String*/ (ba),_esregalo})); }; @@ -320,7 +320,7 @@ String _puc = ""; //BA.debugLineNum = 814;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 816;BA.debugLine="LogColor(\"b_prodMas_Click\", Colors.Magenta)"; -__c.LogImpl("819529731","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("255181315","b_prodMas_Click",__c.Colors.Magenta); //BA.debugLineNum = 817;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 818;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -333,40 +333,40 @@ _pnl = _pnl0.GetView((int) (0)); _lacantc = new anywheresoftware.b4a.objects.B4XViewWrapper(); _lacantc = _pnl.GetView((int) (3)).GetView((int) (3)); //BA.debugLineNum = 821;BA.debugLine="LogColor(laCantc.Text&\"--------------------------"; -__c.LogImpl("819529736",_lacantc.getText()+"-----------------------------",__c.Colors.Blue); +__c.LogImpl("255181320",_lacantc.getText()+"-----------------------------",__c.Colors.Blue); //BA.debugLineNum = 825;BA.debugLine="Dim esteTag As List = Regex.Split(\"\\|\", laCantc.T"; _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacantc.getTag()))); //BA.debugLineNum = 826;BA.debugLine="Log(\"LC_TEXT:\"&laCantc.Text&\"|LC_TAG:\"&laCantc.Ta"; -__c.LogImpl("819529741","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("255181325","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 827;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 829;BA.debugLine="Private maxProds As String = (esteTag.Get(1) + es"; _maxprods = BA.NumberToString(((double)(BA.ObjectToNumber(_estetag.Get((int) (1))))+(double)(BA.ObjectToNumber(_estetag.Get((int) (4)))))); //BA.debugLineNum = 830;BA.debugLine="LogColor(esteTag.Get(1),Colors.Red)"; -__c.LogImpl("819529745",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); +__c.LogImpl("255181329",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); //BA.debugLineNum = 831;BA.debugLine="LogColor(esteTag.Get(4),Colors.Red)"; -__c.LogImpl("819529746",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); +__c.LogImpl("255181330",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); //BA.debugLineNum = 832;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("819529747",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("255181331",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 834;BA.debugLine="Log(maxProds)"; -__c.LogImpl("819529749",_maxprods,0); +__c.LogImpl("255181333",_maxprods,0); //BA.debugLineNum = 837;BA.debugLine="Log(esteTag.Get(4))"; -__c.LogImpl("819529752",BA.ObjectToString(_estetag.Get((int) (4))),0); +__c.LogImpl("255181336",BA.ObjectToString(_estetag.Get((int) (4))),0); //BA.debugLineNum = 838;BA.debugLine="If esteTag.Get(4) = \"0\" Then"; if ((_estetag.Get((int) (4))).equals((Object)("0"))) { }else { //BA.debugLineNum = 841;BA.debugLine="If laCantc.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacantc.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 842;BA.debugLine="Log($\"NuevaCant = ${laCantc.Text + 1}\"$)"; -__c.LogImpl("819529757",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); +__c.LogImpl("255181341",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); //BA.debugLineNum = 844;BA.debugLine="laCantc.Text = $\"$1.0{laCantc.Text + 1}\"$"; _lacantc.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""))); //BA.debugLineNum = 845;BA.debugLine="LogColor(esteTag,Colors.Magenta)"; -__c.LogImpl("819529760",BA.ObjectToString(_estetag),__c.Colors.Magenta); +__c.LogImpl("255181344",BA.ObjectToString(_estetag),__c.Colors.Magenta); //BA.debugLineNum = 847;BA.debugLine="LogColor(laCantc.Text,Colors.Red)"; -__c.LogImpl("819529762",_lacantc.getText(),__c.Colors.Red); +__c.LogImpl("255181346",_lacantc.getText(),__c.Colors.Red); //BA.debugLineNum = 850;BA.debugLine="c = Starter.skmt.ExecQuery2(\"SELECT * FROM PEDI"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("SELECT * FROM PEDIDO WHERE PE_PROID = ? and PE_CLIENTE IN (SELECT CUENTA FROM CUENTAA) AND CONSECUTIVO = ? ",new String[]{BA.ObjectToString(_estetag.Get((int) (2))),BA.ObjectToString(_estetag.Get((int) (6)))}))); //BA.debugLineNum = 851;BA.debugLine="If c.RowCount > 0 Then"; @@ -385,7 +385,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update PEDIDO se //BA.debugLineNum = 858;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); //BA.debugLineNum = 859;BA.debugLine="Log(\"aqui2\")"; -__c.LogImpl("819529774","aqui2",0); +__c.LogImpl("255181358","aqui2",0); }; }else { //BA.debugLineNum = 862;BA.debugLine="Private c2 As Cursor = Starter.skmt.ExecQuery2"; @@ -398,7 +398,7 @@ _c2.setPosition((int) (0)); //BA.debugLineNum = 865;BA.debugLine="Private puc As String = c2.GetString(\"HVD_COS"; _puc = BA.NumberToString((double)(Double.parseDouble(_c2.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_c2.GetString("CANTC")))); //BA.debugLineNum = 866;BA.debugLine="Log(puc)"; -__c.LogImpl("819529781",_puc,0); +__c.LogImpl("255181365",_puc,0); //BA.debugLineNum = 869;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PEDID"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO PEDIDO(PE_PROID,PE_PRONOMBRE,PE_CANT,PE_CLIENTEOR,PE_CLIENTE,PE_COSTOU,PE_COSTO_TOT,PE_CAJAS,PE_BCAJAS,CONSECUTIVO,PE_RUTA, PE_TIPO,PE_CEDIS,PE_FECHA,PE_USUARIO,FECHA_PREV,RUTA_REP,PE_REGALO) VALUES (?,?,?,?,?,?,?,1,1,?,?,?,?,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{BA.ObjectToString(_estetag.Get((int) (2))),_c2.GetString("HVD_PRONOMBRE"),_subs._traeconversion /*String*/ (ba,BA.ObjectToString(_estetag.Get((int) (2)))),BA.ObjectToString(_estetag.Get((int) (5))),_subs._traecliente /*String*/ (ba),_puc,_puc,BA.ObjectToString(_estetag.Get((int) (6))),_subs._traerutaprev /*String*/ (ba),"PREVENTA",_subs._traealmacen /*String*/ (ba),_sdate+" "+_stime,_subs._traeusuario /*String*/ (ba),_subs._traefechaprev /*String*/ (ba),_subs._traerutareparto /*String*/ (ba),BA.NumberToString(0)})); //BA.debugLineNum = 870;BA.debugLine="B4XPage_Appear"; @@ -425,9 +425,9 @@ float _preciou = 0f; //BA.debugLineNum = 559;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 560;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("819398658","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("255050242","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 561;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("819398659","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("255050243","b_prodMenos_Click",__c.Colors.Magenta); //BA.debugLineNum = 562;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 563;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -443,7 +443,7 @@ _lacant = _pnl.GetView((int) (2)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacant.getTag()))); //BA.debugLineNum = 568;BA.debugLine="Log(\"LC_TEXT:\"&laCant.Text&\"|PROMO:\"&esteTag.Get("; -__c.LogImpl("819398666","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("255050250","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 570;BA.debugLine="Private minimoadesc As String"; _minimoadesc = ""; //BA.debugLineNum = 571;BA.debugLine="Dim minimos As Cursor = Starter.skmt.ExecQuery2(\""; @@ -474,7 +474,7 @@ _lacant.setText(BA.ObjectToCharSequence((""+__c.SmartStringFormatter("1.0",(Obje if ((double)(Double.parseDouble(_lacant.getText()))<0) { _lacant.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 619;BA.debugLine="Log(\"NO ES promo\")"; -__c.LogImpl("819398717","NO ES promo",0); +__c.LogImpl("255050301","NO ES promo",0); //BA.debugLineNum = 624;BA.debugLine="Private c3 As Cursor = Starter.skmt.ExecQuery2(\""; _c3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery2("SELECT PE_CANT FROM PEDIDO WHERE PE_PROID = ? AND PE_CLIENTE IN (SELECT CUENTA FROM CUENTAA) AND CONSECUTIVO = ? ",new String[]{BA.ObjectToString(_estetag.Get((int) (2))),BA.ObjectToString(_estetag.Get((int) (6)))}))); @@ -513,7 +513,7 @@ _b4xpage_appear(); //BA.debugLineNum = 650;BA.debugLine="Dim preciou As Float = esteTag.Get(0)/esteTag.Get"; _preciou = (float) ((double)(BA.ObjectToNumber(_estetag.Get((int) (0))))/(double)(double)(BA.ObjectToNumber(_estetag.Get((int) (1))))); //BA.debugLineNum = 651;BA.debugLine="Log(\"PU: \" & preciou)"; -__c.LogImpl("819398749","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("255050333","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 662;BA.debugLine="End Sub"; return ""; } @@ -529,9 +529,9 @@ float _preciou = 0f; //BA.debugLineNum = 879;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 880;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("819595266","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("255246850","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 881;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("819595267","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("255246851","b_prodMenos_Click",__c.Colors.Magenta); //BA.debugLineNum = 882;BA.debugLine="Dim index As Int = clv_pedido.GetItemFromView(Sen"; _index = _clv_pedido._getitemfromview((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(__c.Sender(ba)))); //BA.debugLineNum = 883;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -547,7 +547,7 @@ _lacantc = _pnl.GetView((int) (3)).GetView((int) (3)); _estetag = new anywheresoftware.b4a.objects.collections.List(); _estetag = anywheresoftware.b4a.keywords.Common.ArrayToList(__c.Regex.Split("\\|",BA.ObjectToString(_lacantc.getTag()))); //BA.debugLineNum = 888;BA.debugLine="Log(\"LC_TEXT:\"&laCantc.Text&\"|PROMO:\"&esteTag.Get"; -__c.LogImpl("819595274","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("255246858","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 892;BA.debugLine="If laCantc.Text > 0 Then"; if ((double)(Double.parseDouble(_lacantc.getText()))>0) { //BA.debugLineNum = 895;BA.debugLine="Private c3 As Cursor = Starter.skmt.ExecQuery2(\""; @@ -567,7 +567,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("delete from PEDI }; }; //BA.debugLineNum = 904;BA.debugLine="Log(\"entre al if o algo asi \")"; -__c.LogImpl("819595290","entre al if o algo asi ",0); +__c.LogImpl("255246874","entre al if o algo asi ",0); //BA.debugLineNum = 905;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; @@ -583,7 +583,7 @@ _b4xpage_appear(); //BA.debugLineNum = 914;BA.debugLine="Dim preciou As Float = esteTag.Get(0)/esteTag.Get"; _preciou = (float) ((double)(BA.ObjectToNumber(_estetag.Get((int) (0))))/(double)(double)(BA.ObjectToNumber(_estetag.Get((int) (1))))); //BA.debugLineNum = 915;BA.debugLine="Log(\"PU: \" & preciou)"; -__c.LogImpl("819595301","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("255246885","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 916;BA.debugLine="End Sub"; return ""; } @@ -741,16 +741,16 @@ _preciofull = _preciocat.GetString("CAT_GP_PRECIO"); //BA.debugLineNum = 167;BA.debugLine="preciocat.Close"; _preciocat.Close(); //BA.debugLineNum = 168;BA.debugLine="Log(c.GetString(\"HVD_CODPROMO\"))"; -__c.LogImpl("818874462",_c.GetString("HVD_CODPROMO"),0); +__c.LogImpl("254526046",_c.GetString("HVD_CODPROMO"),0); //BA.debugLineNum = 169;BA.debugLine="Log(Subs.traeAlmacen)"; -__c.LogImpl("818874463",_subs._traealmacen /*String*/ (ba),0); +__c.LogImpl("254526047",_subs._traealmacen /*String*/ (ba),0); //BA.debugLineNum = 172;BA.debugLine="If c.GetString(\"HVD_CODPROMO\") = Subs.traeAl"; if ((_c.GetString("HVD_CODPROMO")).equals(_subs._traealmacen /*String*/ (ba))) { //BA.debugLineNum = 173;BA.debugLine="clv_pedido.Add(CreateListItem(c.GetString(\""; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_c.GetString("HVD_PRONOMBRE"),_subs._traeprecio2 /*String*/ (ba,_c.GetString("HVD_PROID"),_c.GetString("HVD_CODPROMO"),_c.GetString("CONSECUTIVO")),(int)(Double.parseDouble(_c2.GetString("PE_CANT"))),(int) ((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_c2.GetString("PE_CANT")))-(double)(Double.parseDouble(_resta))),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c.GetString("HVD_PROID"),_bgcolor,_textcolor,_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_CLIENTE"),(int)(Double.parseDouble(_c.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); }else { //BA.debugLineNum = 175;BA.debugLine="Log(\"aqui arriba\")"; -__c.LogImpl("818874469","aqui arriba",0); +__c.LogImpl("254526053","aqui arriba",0); //BA.debugLineNum = 176;BA.debugLine="clv_pedido.Add(CreateListItem(c.GetString(\""; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_c.GetString("HVD_PRONOMBRE"),_preciofull,(int)(Double.parseDouble(_c2.GetString("PE_CANT"))),(int) ((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_c2.GetString("PE_CANT")))-(double)(Double.parseDouble(_resta))),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c.GetString("HVD_PROID"),_bgcolor,_textcolor,_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_CLIENTE"),(int)(Double.parseDouble(_c.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); }; @@ -783,16 +783,16 @@ _preciofull = _preciocat.GetString("CAT_GP_PRECIO"); //BA.debugLineNum = 199;BA.debugLine="preciocat.Close"; _preciocat.Close(); //BA.debugLineNum = 200;BA.debugLine="Log(c.GetString(\"HVD_CODPROMO\"))"; -__c.LogImpl("818874494",_c.GetString("HVD_CODPROMO"),0); +__c.LogImpl("254526078",_c.GetString("HVD_CODPROMO"),0); //BA.debugLineNum = 201;BA.debugLine="Log(Subs.traeAlmacen)"; -__c.LogImpl("818874495",_subs._traealmacen /*String*/ (ba),0); +__c.LogImpl("254526079",_subs._traealmacen /*String*/ (ba),0); //BA.debugLineNum = 203;BA.debugLine="If c.GetString(\"HVD_CODPROMO\") = Subs.traeAl"; if ((_c.GetString("HVD_CODPROMO")).equals(_subs._traealmacen /*String*/ (ba))) { //BA.debugLineNum = 204;BA.debugLine="clv_pedido.Add(CreateListItem(c.GetString(\""; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_c.GetString("HVD_PRONOMBRE"),_subs._traeprecio2 /*String*/ (ba,_c.GetString("HVD_PROID"),_c.GetString("HVD_CODPROMO"),_c.GetString("CONSECUTIVO")),(int) (0),(int) ((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_resta))),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c.GetString("HVD_PROID"),_bgcolor,_textcolor,_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_CLIENTE"),(int)(Double.parseDouble(_c.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); }else { //BA.debugLineNum = 206;BA.debugLine="Log(\"aqui abajo\")"; -__c.LogImpl("818874500","aqui abajo",0); +__c.LogImpl("254526084","aqui abajo",0); //BA.debugLineNum = 207;BA.debugLine="clv_pedido.Add(CreateListItem(c.GetString(\""; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem(_c.GetString("HVD_PRONOMBRE"),_preciofull,(int) (0),(int) ((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_resta))),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c.GetString("HVD_PROID"),_bgcolor,_textcolor,_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_CLIENTE"),(int)(Double.parseDouble(_c.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); }; @@ -802,7 +802,7 @@ _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware. _c2.Close(); }else if((_c.GetString("BCAJAS")).equals("1")) { //BA.debugLineNum = 218;BA.debugLine="Log(\"AQUI1\")"; -__c.LogImpl("818874512","AQUI1",0); +__c.LogImpl("254526096","AQUI1",0); //BA.debugLineNum = 221;BA.debugLine="Private oc As Cursor = Starter.skmt.ExecQuery("; _oc = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _oc = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select HVD_CANT from HIST_VENTAS WHERE HVD_CLIENTE IN (Select CUENTA from cuentaa) and hvd_proid = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_PROID")))+"' and HVD_NUM_REGISTRO = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_NUM_REGISTRO")))+"'")))); @@ -864,9 +864,9 @@ if (_c2.getRowCount()>0) { //BA.debugLineNum = 255;BA.debugLine="c2.Position = 0"; _c2.setPosition((int) (0)); //BA.debugLineNum = 256;BA.debugLine="Log(\"SI ENTRO A PONER CAJAS BIEN \")"; -__c.LogImpl("818874550","SI ENTRO A PONER CAJAS BIEN ",0); +__c.LogImpl("254526134","SI ENTRO A PONER CAJAS BIEN ",0); //BA.debugLineNum = 257;BA.debugLine="Log(c2.GetString(\"PE_CAJAS\"))"; -__c.LogImpl("818874551",_c2.GetString("PE_CAJAS"),0); +__c.LogImpl("254526135",_c2.GetString("PE_CAJAS"),0); //BA.debugLineNum = 258;BA.debugLine="Private c3 As Cursor=Starter.skmt.ExecQuery("; _c3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select Ifnull(sum(PE_CANT),0) AS PE_CANT from PEDIDO WHERE PE_CLIENTE NOT IN (SELECT CUENTA FROM CUENTAA) AND PE_CLIENTEOR = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_CLIENTE")))+"' AND PE_PROID ='"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_PROID")))+"' AND CONSECUTIVO = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CONSECUTIVO")))+"'")))); @@ -885,12 +885,12 @@ _resta = BA.NumberToString(0); //BA.debugLineNum = 269;BA.debugLine="Private puc As String = c.GetString(\"HVD_COS"; _puc = BA.NumberToString((double)(Double.parseDouble(_c.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_c.GetString("CANTC")))); //BA.debugLineNum = 270;BA.debugLine="LogColor((restacant/Subs.traeConversion(c.Ge"; -__c.LogImpl("818874564",BA.NumberToString(((double)(Double.parseDouble(_restacant))/(double)(double)(Double.parseDouble(_subs._traeconversion /*String*/ (ba,_c.GetString("HVD_PROID")))))),__c.Colors.Green); +__c.LogImpl("254526148",BA.NumberToString(((double)(Double.parseDouble(_restacant))/(double)(double)(Double.parseDouble(_subs._traeconversion /*String*/ (ba,_c.GetString("HVD_PROID")))))),__c.Colors.Green); //BA.debugLineNum = 271;BA.debugLine="clv_pedido.Add(CreateListItem2(c.GetString(\""; _clv_pedido._add((anywheresoftware.b4a.objects.B4XViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.B4XViewWrapper(), (java.lang.Object)(_createlistitem2(_c.GetString("HVD_PRONOMBRE"),_puc,(int) (((double)(Double.parseDouble(_restacant))/(double)(double)(Double.parseDouble(_subs._traeconversion /*String*/ (ba,_c.GetString("HVD_PROID")))))),(int) ((((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_restacant))-(double)(Double.parseDouble(_resta)))/(double)(double)(Double.parseDouble(_subs._traeconversion /*String*/ (ba,_c.GetString("HVD_PROID")))))),_clv_pedido._asview().getWidth(),__c.DipToCurrent((int) (118)),_bmp,_c.GetString("HVD_PROID"),_bgcolor,_textcolor,_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_CLIENTE"),(int)(Double.parseDouble(_c.GetString("CONSECUTIVO")))).getObject())),(Object)(_i)); }else { //BA.debugLineNum = 273;BA.debugLine="Log(\"NO ENTRO A PONER CAJAS BIEN \")"; -__c.LogImpl("818874567","NO ENTRO A PONER CAJAS BIEN ",0); +__c.LogImpl("254526151","NO ENTRO A PONER CAJAS BIEN ",0); //BA.debugLineNum = 274;BA.debugLine="Private c3 As Cursor=Starter.skmt.ExecQuery("; _c3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select Ifnull(sum(PE_CANT),0) AS PE_CANT from PEDIDO WHERE PE_CLIENTE NOT IN (SELECT CUENTA FROM CUENTAA) AND PE_CLIENTEOR = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_CLIENTE")))+"' AND PE_PROID ='"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_PROID")))+"' AND CONSECUTIVO = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CONSECUTIVO")))+"'")))); @@ -907,7 +907,7 @@ _resta = _c3.GetString("PE_CANT"); _resta = BA.NumberToString(0); }; //BA.debugLineNum = 285;BA.debugLine="LogColor(resta,Colors.Green)"; -__c.LogImpl("818874579",_resta,__c.Colors.Green); +__c.LogImpl("254526163",_resta,__c.Colors.Green); //BA.debugLineNum = 286;BA.debugLine="Private puc As String = c.GetString(\"HVD_COS"; _puc = BA.NumberToString((double)(Double.parseDouble(_c.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_c.GetString("CANTC")))); //BA.debugLineNum = 288;BA.debugLine="clv_pedido.Add(CreateListItem2(c.GetString(\""; @@ -1158,9 +1158,9 @@ if ((_promo).equals("1") == false && (_preciou).equals(BA.NumberToString(0))) { _l_prodx.setText(BA.ObjectToCharSequence(_cs.Color(__c.Colors.RGB((int) (123),(int) (0),(int) (0))).Append(BA.ObjectToCharSequence(_text+__c.CRLF+"Cant: "+BA.NumberToString(_inv2)+" $"+_preciou)).PopAll().getObject())); }; //BA.debugLineNum = 538;BA.debugLine="Log(inv&\" inventario 1\")"; -__c.LogImpl("819333134",BA.NumberToString(_inv)+" inventario 1",0); +__c.LogImpl("254984718",BA.NumberToString(_inv)+" inventario 1",0); //BA.debugLineNum = 539;BA.debugLine="Log(inv2&\" inventario 2\")"; -__c.LogImpl("819333135",BA.NumberToString(_inv2)+" inventario 2",0); +__c.LogImpl("254984719",BA.NumberToString(_inv2)+" inventario 2",0); //BA.debugLineNum = 540;BA.debugLine="l_prodX.Tag = $\"ID: ${prodId}${CRLF}${Text}${CRLF"; _l_prodx.setTag((Object)(("ID: "+__c.SmartStringFormatter("",(Object)(_prodid))+""+__c.SmartStringFormatter("",(Object)(__c.CRLF))+""+__c.SmartStringFormatter("",(Object)(_text))+""+__c.SmartStringFormatter("",(Object)(__c.CRLF))+"Precio: $"+__c.SmartStringFormatter("1.2",(Object)(_preciou))+""+__c.SmartStringFormatter("",(Object)(__c.CRLF))+"Inv: "+__c.SmartStringFormatter("",(Object)(_inv))+" pzs"))); //BA.debugLineNum = 542;BA.debugLine="l_pCantC.Tag = Round2(precioU.Replace(\",\",\"\"),2)&"; @@ -1225,7 +1225,7 @@ return ""; public String _p_prods_click() throws Exception{ //BA.debugLineNum = 1100;BA.debugLine="Sub p_prods_Click"; //BA.debugLineNum = 1101;BA.debugLine="Log(Sender.As(Panel).tag)"; -__c.LogImpl("819988481",BA.ObjectToString(((anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(__c.Sender(ba)))).getTag()),0); +__c.LogImpl("255640065",BA.ObjectToString(((anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(__c.Sender(ba)))).getTag()),0); //BA.debugLineNum = 1102;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_tabulador.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_tabulador.java index 41a50ff..2928402 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_tabulador.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_tabulador.java @@ -163,7 +163,7 @@ _d.setPosition((int) (0)); //BA.debugLineNum = 43;BA.debugLine="If c.RowCount > 0 And d.RowCount > 0 Then"; if (_c.getRowCount()>0 && _d.getRowCount()>0) { //BA.debugLineNum = 44;BA.debugLine="Log(\"TABULADR CON RESUKTADO\")"; -__c.LogImpl("820250630","TABULADR CON RESUKTADO",0); +__c.LogImpl("255902214","TABULADR CON RESUKTADO",0); //BA.debugLineNum = 45;BA.debugLine="et_mil.Text = c.GetString(\"MIL\")"; _et_mil.setText(BA.ObjectToCharSequence(_c.GetString("MIL"))); //BA.debugLineNum = 46;BA.debugLine="et_quinientos.Text = c.GetString(\"QUINIENTOS\")"; @@ -192,7 +192,7 @@ _et_m_centavo.setText(BA.ObjectToCharSequence(_d.GetString("CENTAVO"))); _l_total.setText(BA.ObjectToCharSequence(_d.GetString("TOTAL"))); }else if(_c.getRowCount()==0 && _d.getRowCount()==0) { //BA.debugLineNum = 59;BA.debugLine="Log(\"TABULADR SIN RESUKTADO\")"; -__c.LogImpl("820250645","TABULADR SIN RESUKTADO",0); +__c.LogImpl("255902229","TABULADR SIN RESUKTADO",0); //BA.debugLineNum = 60;BA.debugLine="et_mil.Text = \"\""; _et_mil.setText(BA.ObjectToCharSequence("")); //BA.debugLineNum = 61;BA.debugLine="et_quinientos.Text = \"\""; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/c_updateavailable.java b/B4A/Objects/src/reparto_intmex/keymon/lat/c_updateavailable.java index 1af59b8..b137a92 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/c_updateavailable.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/c_updateavailable.java @@ -124,7 +124,7 @@ case 9: this.state = 10; this.catchState = 0; //BA.debugLineNum = 28;BA.debugLine="Log(\"updateAvailable() Error - \" & LastException"; -parent.__c.LogImpl("820840458","updateAvailable() Error - "+parent.__c.LastException(ba).getMessage(),0); +parent.__c.LogImpl("256492042","updateAvailable() Error - "+parent.__c.LastException(ba).getMessage(),0); if (true) break; if (true) break; ; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/cameraexclass.java b/B4A/Objects/src/reparto_intmex/keymon/lat/cameraexclass.java index 0cf6bb3..38b7b70 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/cameraexclass.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/cameraexclass.java @@ -79,7 +79,7 @@ if (_success) { _takepicture(); }else { //BA.debugLineNum = 279;BA.debugLine="Log(\"AutoFocus error.\")"; -__c.LogImpl("823265284","AutoFocus error.",0); +__c.LogImpl("258916868","AutoFocus error.",0); }; //BA.debugLineNum = 281;BA.debugLine="End Sub"; return ""; @@ -117,7 +117,7 @@ _parameters = _r.RunMethod("getParameters"); _setdisplayorientation(); }else { //BA.debugLineNum = 90;BA.debugLine="Log(\"success = false, \" & LastException)"; -__c.LogImpl("821364744","success = false, "+BA.ObjectToString(__c.LastException(ba)),0); +__c.LogImpl("257016328","success = false, "+BA.ObjectToString(__c.LastException(ba)),0); }; //BA.debugLineNum = 92;BA.debugLine="CallSub2(target, event & \"_ready\", Success)"; __c.CallSubNew2(ba,_target,_event+"_ready",(Object)(_success)); @@ -170,7 +170,7 @@ _r.RunMethod4("setParameters",new Object[]{_parameters},new String[]{"android.ha ba.setLastException(e5); //BA.debugLineNum = 142;BA.debugLine="ToastMessageShow(\"Error setting parameters.\", Tr"; __c.ToastMessageShow(BA.ObjectToCharSequence("Error setting parameters."),__c.True); //BA.debugLineNum = 143;BA.debugLine="Log(LastException)"; -__c.LogImpl("822020102",BA.ObjectToString(__c.LastException(ba)),0); +__c.LogImpl("257671686",BA.ObjectToString(__c.LastException(ba)),0); }; //BA.debugLineNum = 145;BA.debugLine="End Sub"; return ""; @@ -490,7 +490,7 @@ _setfocusmode("continuous-picture"); _setfocusmode("continuous-video"); }else { //BA.debugLineNum = 249;BA.debugLine="Log(\"Continuous focus mode is not availabl"; -__c.LogImpl("822937607","Continuous focus mode is not available",0); +__c.LogImpl("258589191","Continuous focus mode is not available",0); }; //BA.debugLineNum = 251;BA.debugLine="End Sub"; return ""; @@ -534,7 +534,7 @@ _previewresult = (int) ((_orientation-_degrees+360)%360); //BA.debugLineNum = 72;BA.debugLine="result = previewResult"; _result = _previewresult; //BA.debugLineNum = 73;BA.debugLine="Log(previewResult)"; -__c.LogImpl("821299216",BA.NumberToString(_previewresult),0); +__c.LogImpl("256950800",BA.NumberToString(_previewresult),0); }; //BA.debugLineNum = 75;BA.debugLine="r.target = nativeCam"; _r.Target = _nativecam; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/cl_appupdate.java b/B4A/Objects/src/reparto_intmex/keymon/lat/cl_appupdate.java index 3eecd1a..9110bb2 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/cl_appupdate.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/cl_appupdate.java @@ -220,7 +220,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 159;BA.debugLine="LogColor(\"---- AppUpdating.DownloadApk\", LogColor"; -parent.__c.LogImpl("924379393","---- AppUpdating.DownloadApk",parent._logcolor1); +parent.__c.LogImpl("94325377","---- AppUpdating.DownloadApk",parent._logcolor1); //BA.debugLineNum = 161;BA.debugLine="If sNewVerApk = \"\" Then"; if (true) break; @@ -249,7 +249,7 @@ this.state = 6; case 6: //C this.state = 9; -parent.__c.LogImpl("924379397",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing apk file full path indication"),0); +parent.__c.LogImpl("94325381",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing apk file full path indication"),0); if (true) break; case 9: @@ -286,7 +286,7 @@ this.state = 11; _j = (reparto_intmex.keymon.lat.httpjob) result[0]; ; //BA.debugLineNum = 174;BA.debugLine="Log($\"Donload ok? ${j.Success}\"$)"; -parent.__c.LogImpl("924379408",("Donload ok? "+parent.__c.SmartStringFormatter("",(Object)(_j._success /*boolean*/ ))+""),0); +parent.__c.LogImpl("94325392",("Donload ok? "+parent.__c.SmartStringFormatter("",(Object)(_j._success /*boolean*/ ))+""),0); //BA.debugLineNum = 175;BA.debugLine="If j.Success Then"; if (true) break; @@ -311,7 +311,7 @@ parent.__c.File.Copy2((java.io.InputStream)(_j._getinputstream /*anywheresoftwar //BA.debugLineNum = 180;BA.debugLine="out.Close"; _out.Close(); //BA.debugLineNum = 181;BA.debugLine="Log($\"Copy2 (saving) ok? TRUE\"$)"; -parent.__c.LogImpl("924379415",("Copy2 (saving) ok? TRUE"),0); +parent.__c.LogImpl("94325399",("Copy2 (saving) ok? TRUE"),0); //BA.debugLineNum = 182;BA.debugLine="sStatusCode = OK_DOWNLOAD"; parent._sstatuscode = parent._ok_download; //BA.debugLineNum = 183;BA.debugLine="If sVerbose Then Log($\"${TAB}new apk version dow"; @@ -327,7 +327,7 @@ this.state = 16; case 16: //C this.state = 19; -parent.__c.LogImpl("924379417",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"new apk version downloaded and ready to install"),0); +parent.__c.LogImpl("94325401",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"new apk version downloaded and ready to install"),0); if (true) break; case 19: @@ -340,7 +340,7 @@ case 21: //C this.state = 22; //BA.debugLineNum = 185;BA.debugLine="Log($\"${TAB}Error: ${J.ErrorMessage}\"$)"; -parent.__c.LogImpl("924379419",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); +parent.__c.LogImpl("94325403",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); //BA.debugLineNum = 186;BA.debugLine="sStatusCode = ERR_HTTP"; parent._sstatuscode = parent._err_http; //BA.debugLineNum = 187;BA.debugLine="If sVerbose Then Log($\"${TAB}error in httputils2"; @@ -356,7 +356,7 @@ this.state = 24; case 24: //C this.state = 27; -parent.__c.LogImpl("924379421",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); +parent.__c.LogImpl("94325405",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); if (true) break; case 27: @@ -683,14 +683,14 @@ _usefileprovider = __c.False; _sharedfolder = _rp.GetSafeDirDefaultExternal("shared"); }; //BA.debugLineNum = 69;BA.debugLine="Log($\"SDK#: ${p.SdkVersion} - UseFP: ${UseFilePro"; -__c.LogImpl("923396373",("SDK#: "+__c.SmartStringFormatter("",(Object)(_p.getSdkVersion()))+" - UseFP: "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+" - SharedFolder: "+__c.SmartStringFormatter("",(Object)(_sharedfolder))+""),0); +__c.LogImpl("93342357",("SDK#: "+__c.SmartStringFormatter("",(Object)(_p.getSdkVersion()))+" - UseFP: "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+" - SharedFolder: "+__c.SmartStringFormatter("",(Object)(_sharedfolder))+""),0); //BA.debugLineNum = 70;BA.debugLine="End Sub"; return ""; } public String _installapk(boolean _pstatus) throws Exception{ //BA.debugLineNum = 195;BA.debugLine="Public Sub InstallApk(pstatus As Boolean)"; //BA.debugLineNum = 196;BA.debugLine="LogColor(\"---- AppUpdating.InstallApk\", LogColor1"; -__c.LogImpl("924444929","---- AppUpdating.InstallApk",_logcolor1); +__c.LogImpl("94390913","---- AppUpdating.InstallApk",_logcolor1); //BA.debugLineNum = 197;BA.debugLine="If pstatus Then"; if (_pstatus) { //BA.debugLineNum = 198;BA.debugLine="SendInstallIntent"; @@ -699,13 +699,13 @@ _sendinstallintent(); _sstatuscode = _ok_install; //BA.debugLineNum = 200;BA.debugLine="If sVerbose Then Log(TAB & \"user asked to instal"; if (_sverbose) { -__c.LogImpl("924444933",__c.TAB+"user asked to install new apk",0);}; +__c.LogImpl("94390917",__c.TAB+"user asked to install new apk",0);}; }else { //BA.debugLineNum = 202;BA.debugLine="sStatusCode = ERR_NOPERM"; _sstatuscode = _err_noperm; //BA.debugLineNum = 203;BA.debugLine="If sVerbose Then Log(TAB & \"no permissions from"; if (_sverbose) { -__c.LogImpl("924444936",__c.TAB+"no permissions from user to install new apk",0);}; +__c.LogImpl("94390920",__c.TAB+"no permissions from user to install new apk",0);}; }; //BA.debugLineNum = 205;BA.debugLine="Finito"; _finito(); @@ -723,7 +723,7 @@ _curver = ""; _sstatuscode = _err_nopkg; //BA.debugLineNum = 301;BA.debugLine="If sVerbose Then Log($\"${TAB}missing package nam"; if (_sverbose) { -__c.LogImpl("924707076",(""+__c.SmartStringFormatter("",(Object)(__c.TAB))+"missing package name for current version check"),0);}; +__c.LogImpl("94653060",(""+__c.SmartStringFormatter("",(Object)(__c.TAB))+"missing package name for current version check"),0);}; }else { //BA.debugLineNum = 303;BA.debugLine="Dim pm As PackageManager"; _pm = new anywheresoftware.b4a.phone.PackageManagerWrapper(); @@ -733,7 +733,7 @@ _curver = _pm.GetVersionName(_spackagename); _sstatuscode = _ok_curver; //BA.debugLineNum = 306;BA.debugLine="If sVerbose Then Log($\"${TAB}Current Version: ${"; if (_sverbose) { -__c.LogImpl("924707081",(""+__c.SmartStringFormatter("",(Object)(__c.TAB))+"Current Version: "+__c.SmartStringFormatter("",(Object)(_curver))+""),0);}; +__c.LogImpl("94653065",(""+__c.SmartStringFormatter("",(Object)(__c.TAB))+"Current Version: "+__c.SmartStringFormatter("",(Object)(_curver))+""),0);}; }; //BA.debugLineNum = 308;BA.debugLine="Return (sStatusCode == OK_CURVER)"; if (true) return (_sstatuscode==_ok_curver); @@ -764,7 +764,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 313;BA.debugLine="Log(\"IsValidComplete start\")"; -parent.__c.LogImpl("924772609","IsValidComplete start",0); +parent.__c.LogImpl("94718593","IsValidComplete start",0); //BA.debugLineNum = 314;BA.debugLine="If sNewVerTxt = \"\" Then"; if (true) break; @@ -797,7 +797,7 @@ this.state = 6; case 6: //C this.state = 9; -parent.__c.LogImpl("924772613",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing info file full path indication"),0); +parent.__c.LogImpl("94718597",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing info file full path indication"),0); if (true) break; case 9: @@ -820,7 +820,7 @@ _j._password /*String*/ = parent._supassword; //BA.debugLineNum = 324;BA.debugLine="j.Download(sNewVerTxt) 'ex: jobapk.Downlo"; _j._download /*String*/ (parent._snewvertxt); //BA.debugLineNum = 325;BA.debugLine="Log(\"before\")"; -parent.__c.LogImpl("924772621","before",0); +parent.__c.LogImpl("94718605","before",0); //BA.debugLineNum = 326;BA.debugLine="Wait For (j) JobDone(j As HttpJob)"; parent.__c.WaitFor("jobdone", ba, this, (Object)(_j)); this.state = 61; @@ -831,7 +831,7 @@ this.state = 12; _j = (reparto_intmex.keymon.lat.httpjob) result[0]; ; //BA.debugLineNum = 327;BA.debugLine="Log(\"after\")"; -parent.__c.LogImpl("924772623","after",0); +parent.__c.LogImpl("94718607","after",0); //BA.debugLineNum = 328;BA.debugLine="If j.Success Then"; if (true) break; @@ -860,7 +860,7 @@ this.state = 17; case 17: //C this.state = 20; -parent.__c.LogImpl("924772625",("Webserver's info file content: "+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+""+parent.__c.SmartStringFormatter("",(Object)(_j._getstring /*String*/ ()))+""),0); +parent.__c.LogImpl("94718609",("Webserver's info file content: "+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+""+parent.__c.SmartStringFormatter("",(Object)(_j._getstring /*String*/ ()))+""),0); if (true) break; case 20: @@ -918,7 +918,7 @@ this.state = 29; case 29: //C this.state = 32; -parent.__c.LogImpl("924772632",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"wrong row format in info file "),0); +parent.__c.LogImpl("94718616",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"wrong row format in info file "),0); if (true) break; case 32: @@ -945,7 +945,7 @@ this.state = 37; case 37: //C this.state = 40; -parent.__c.LogImpl("924772635",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Web version number: "+parent.__c.SmartStringFormatter("",(Object)(parent._webver))+""),0); +parent.__c.LogImpl("94718619",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Web version number: "+parent.__c.SmartStringFormatter("",(Object)(parent._webver))+""),0); if (true) break; case 40: @@ -978,7 +978,7 @@ this.state = 46; case 46: //C this.state = 49; -parent.__c.LogImpl("924772639",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"ERROR: website returned an HTML error page"),0); +parent.__c.LogImpl("94718623",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"ERROR: website returned an HTML error page"),0); if (true) break; case 49: @@ -997,7 +997,7 @@ case 52: //C this.state = 53; //BA.debugLineNum = 346;BA.debugLine="Log($\"${TAB}Error: ${J.ErrorMessage}\"$)"; -parent.__c.LogImpl("924772642",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); +parent.__c.LogImpl("94718626",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); //BA.debugLineNum = 347;BA.debugLine="sStatusCode = ERR_HTTP"; parent._sstatuscode = parent._err_http; //BA.debugLineNum = 348;BA.debugLine="If sVerbose Then Log($\"${TAB}error in httputils"; @@ -1013,7 +1013,7 @@ this.state = 55; case 55: //C this.state = 58; -parent.__c.LogImpl("924772644",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); +parent.__c.LogImpl("94718628",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); if (true) break; case 58: @@ -1049,7 +1049,7 @@ if (true) break; public String _readcurvn() throws Exception{ //BA.debugLineNum = 143;BA.debugLine="Public Sub ReadCurVN"; //BA.debugLineNum = 144;BA.debugLine="LogColor(\"---- AppUpdating.ReadCurVN\", LogColor1)"; -__c.LogImpl("924248321","---- AppUpdating.ReadCurVN",_logcolor1); +__c.LogImpl("94194305","---- AppUpdating.ReadCurVN",_logcolor1); //BA.debugLineNum = 145;BA.debugLine="IsValidCV 'we don't care about its resu"; _isvalidcv(); //BA.debugLineNum = 146;BA.debugLine="Finito"; @@ -1080,7 +1080,7 @@ case 0: //C this.state = -1; //BA.debugLineNum = 152;BA.debugLine="LogColor(\"---- AppUpdating.ReadWebVN\", LogColor1)"; -parent.__c.LogImpl("924313857","---- AppUpdating.ReadWebVN",parent._logcolor1); +parent.__c.LogImpl("94259841","---- AppUpdating.ReadWebVN",parent._logcolor1); //BA.debugLineNum = 153;BA.debugLine="Wait For(IsvalidWV) Complete (OkWebVer As Boolean"; parent.__c.WaitFor("complete", ba, this, parent._isvalidwv()); this.state = 1; @@ -1243,7 +1243,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 246;BA.debugLine="LogColor($\"${TAB}-- TryApkUpdate\"$, LogColor1)"; -parent.__c.LogImpl("924576001",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"-- TryApkUpdate"),parent._logcolor1); +parent.__c.LogImpl("94521985",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"-- TryApkUpdate"),parent._logcolor1); //BA.debugLineNum = 248;BA.debugLine="If ((sStatusCode >= 0) And (sStatusCode <> NO_NEW"; if (true) break; @@ -1277,7 +1277,7 @@ this.state = 4; _j = (reparto_intmex.keymon.lat.httpjob) result[0]; ; //BA.debugLineNum = 256;BA.debugLine="Log($\"Donload ok? ${j.Success}\"$)"; -parent.__c.LogImpl("924576011",("Donload ok? "+parent.__c.SmartStringFormatter("",(Object)(_j._success /*boolean*/ ))+""),0); +parent.__c.LogImpl("94521995",("Donload ok? "+parent.__c.SmartStringFormatter("",(Object)(_j._success /*boolean*/ ))+""),0); //BA.debugLineNum = 257;BA.debugLine="If j.Success Then"; if (true) break; @@ -1316,7 +1316,7 @@ parent.__c.File.Copy2((java.io.InputStream)(_j._getinputstream /*anywheresoftwar //BA.debugLineNum = 263;BA.debugLine="out.Close"; _out.Close(); //BA.debugLineNum = 264;BA.debugLine="Log($\"Copy2 (saving) ok? TRUE\"$)"; -parent.__c.LogImpl("924576019",("Copy2 (saving) ok? TRUE"),0); +parent.__c.LogImpl("94522003",("Copy2 (saving) ok? TRUE"),0); //BA.debugLineNum = 265;BA.debugLine="sStatusCode = OK_DOWNLOAD"; parent._sstatuscode = parent._ok_download; //BA.debugLineNum = 266;BA.debugLine="If sVerbose Then Log($\"${TAB}new apk version d"; @@ -1332,7 +1332,7 @@ this.state = 12; case 12: //C this.state = 15; -parent.__c.LogImpl("924576021",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"new apk version downloaded and ready to install"),0); +parent.__c.LogImpl("94522005",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"new apk version downloaded and ready to install"),0); if (true) break; case 15: @@ -1346,7 +1346,7 @@ case 17: this.state = 18; this.catchState = 0; //BA.debugLineNum = 268;BA.debugLine="Log($\"Copy2 (saving) ok? FALSE\"$)"; -parent.__c.LogImpl("924576023",("Copy2 (saving) ok? FALSE"),0); +parent.__c.LogImpl("94522007",("Copy2 (saving) ok? FALSE"),0); //BA.debugLineNum = 269;BA.debugLine="sStatusCode = ERR_DOWNLOAD"; parent._sstatuscode = parent._err_download; //BA.debugLineNum = 270;BA.debugLine="If sVerbose Then Log($\"${TAB}failed download o"; @@ -1362,7 +1362,7 @@ this.state = 20; case 20: //C this.state = 23; -parent.__c.LogImpl("924576025",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"failed download of new apk version"),0); +parent.__c.LogImpl("94522009",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"failed download of new apk version"),0); if (true) break; case 23: @@ -1385,7 +1385,7 @@ case 26: //C this.state = 27; //BA.debugLineNum = 274;BA.debugLine="Log($\"${TAB}Error: ${J.ErrorMessage}\"$)"; -parent.__c.LogImpl("924576029",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); +parent.__c.LogImpl("94522013",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); //BA.debugLineNum = 275;BA.debugLine="sStatusCode = ERR_HTTP"; parent._sstatuscode = parent._err_http; //BA.debugLineNum = 276;BA.debugLine="If sVerbose Then Log($\"${TAB}error in httputils"; @@ -1401,7 +1401,7 @@ this.state = 29; case 29: //C this.state = 32; -parent.__c.LogImpl("924576031",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); +parent.__c.LogImpl("94522015",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); if (true) break; case 32: @@ -1448,7 +1448,7 @@ this.state = 39; case 39: //C this.state = 42; -parent.__c.LogImpl("924576038",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"user asked to install new apk"),0); +parent.__c.LogImpl("94522022",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"user asked to install new apk"),0); if (true) break; case 42: @@ -1509,7 +1509,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 211;BA.debugLine="LogColor(\"---- AppUpdating.UpdateApk\", LogColor1)"; -parent.__c.LogImpl("924510465","---- AppUpdating.UpdateApk",parent._logcolor1); +parent.__c.LogImpl("94456449","---- AppUpdating.UpdateApk",parent._logcolor1); //BA.debugLineNum = 212;BA.debugLine="If Not(pstatus) Then"; if (true) break; @@ -1540,7 +1540,7 @@ this.state = 6; case 6: //C this.state = 9; -parent.__c.LogImpl("924510468",parent.__c.TAB+"no permissions from user to install new apk",0); +parent.__c.LogImpl("94456452",parent.__c.TAB+"no permissions from user to install new apk",0); if (true) break; case 9: @@ -1632,7 +1632,7 @@ this.state = 26; case 26: //C this.state = 29; -parent.__c.LogImpl("924510478",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"no enough available space to download apk"),0); +parent.__c.LogImpl("94456462",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"no enough available space to download apk"),0); if (true) break; case 29: @@ -1674,7 +1674,7 @@ this.state = 36; case 36: //C this.state = 39; -parent.__c.LogImpl("924510483",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Newer version available. Now I try its downloading"),0); +parent.__c.LogImpl("94456467",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Newer version available. Now I try its downloading"),0); if (true) break; case 39: @@ -1709,7 +1709,7 @@ this.state = 45; case 45: //C this.state = 48; -parent.__c.LogImpl("924510486",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing apk file full path indication"),0); +parent.__c.LogImpl("94456470",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing apk file full path indication"),0); if (true) break; case 48: @@ -1748,7 +1748,7 @@ this.state = 55; case 55: //C this.state = 58; -parent.__c.LogImpl("924510491",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"No newer version available on webserver."),0); +parent.__c.LogImpl("94456475",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"No newer version available on webserver."),0); if (true) break; case 58: diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/dbrequestmanager.java b/B4A/Objects/src/reparto_intmex/keymon/lat/dbrequestmanager.java index 8273d36..6b0ab8c 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/dbrequestmanager.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/dbrequestmanager.java @@ -267,7 +267,7 @@ _table.Rows /*anywheresoftware.b4a.objects.collections.List*/ .Initialize(); _table.Tag /*Object*/ = _job._tag /*Object*/ ; //BA.debugLineNum = 194;BA.debugLine="If jobTagAnterior <> Job.Tag Then LogColor(\"Handl"; if ((_jobtaganterior).equals(BA.ObjectToString(_job._tag /*Object*/ )) == false) { -__c.LogImpl("859834380","HandleJob: '"+BA.ObjectToString(_job._tag /*Object*/ )+"'",__c.Colors.Blue);}; +__c.LogImpl("259834380","HandleJob: '"+BA.ObjectToString(_job._tag /*Object*/ )+"'",__c.Colors.Blue);}; //BA.debugLineNum = 195;BA.debugLine="jobTagAnterior = Job.Tag 'Mod por CHV - 211023"; _jobtaganterior = BA.ObjectToString(_job._tag /*Object*/ ); //BA.debugLineNum = 196;BA.debugLine="If method = \"query\" Then"; @@ -367,7 +367,7 @@ Object[] _row = null; Object _record = null; //BA.debugLineNum = 248;BA.debugLine="Public Sub PrintTable(Table As DBResult)"; //BA.debugLineNum = 249;BA.debugLine="Log(\"Tag: \" & Table.Tag & \", Columns: \" & Table.C"; -__c.LogImpl("860096513","Tag: "+BA.ObjectToString(_table.Tag /*Object*/ )+", Columns: "+BA.NumberToString(_table.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .getSize())+", Rows: "+BA.NumberToString(_table.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),0); +__c.LogImpl("260096513","Tag: "+BA.ObjectToString(_table.Tag /*Object*/ )+", Columns: "+BA.NumberToString(_table.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .getSize())+", Rows: "+BA.NumberToString(_table.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),0); //BA.debugLineNum = 250;BA.debugLine="Dim sb As StringBuilder"; _sb = new anywheresoftware.b4a.keywords.StringBuilderWrapper(); //BA.debugLineNum = 251;BA.debugLine="sb.Initialize"; @@ -385,7 +385,7 @@ _sb.Append(BA.ObjectToString(_col)).Append(__c.TAB); } }; //BA.debugLineNum = 255;BA.debugLine="Log(sb.ToString)"; -__c.LogImpl("860096519",_sb.ToString(),0); +__c.LogImpl("260096519",_sb.ToString(),0); //BA.debugLineNum = 256;BA.debugLine="For Each row() As Object In Table.Rows"; { final anywheresoftware.b4a.BA.IterableList group8 = _table.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/escposprinter.java b/B4A/Objects/src/reparto_intmex/keymon/lat/escposprinter.java index ba6f472..b01b1bf 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/escposprinter.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/escposprinter.java @@ -106,7 +106,7 @@ if (__c.SubExists(ba,_callback,_eventname+"_NewData")) { __c.CallSubNew2(ba,_callback,_eventname+"_NewData",(Object)(_buffer)); }; //BA.debugLineNum = 1138;BA.debugLine="Log(\"Data \" & Buffer(0))"; -__c.LogImpl("863635460","Data "+BA.NumberToString(_buffer[(int) (0)]),0); +__c.LogImpl("263635460","Data "+BA.NumberToString(_buffer[(int) (0)]),0); //BA.debugLineNum = 1139;BA.debugLine="End Sub"; return ""; } @@ -215,7 +215,7 @@ _l = new anywheresoftware.b4a.objects.collections.List(); //BA.debugLineNum = 109;BA.debugLine="l.Initialize"; _l.Initialize(); //BA.debugLineNum = 110;BA.debugLine="Log(\"aqui 1\")"; -__c.LogImpl("860489738","aqui 1",0); +__c.LogImpl("260489738","aqui 1",0); //BA.debugLineNum = 111;BA.debugLine="For i = 0 To PairedDevices.Size - 1"; { final int step8 = 1; @@ -225,7 +225,7 @@ for (;_i <= limit8 ;_i = _i + step8 ) { //BA.debugLineNum = 112;BA.debugLine="l.Add(PairedDevices.GetKeyAt(i))"; _l.Add(_paireddevices.GetKeyAt(_i)); //BA.debugLineNum = 113;BA.debugLine="Log(\"aqui 2\")"; -__c.LogImpl("860489741","aqui 2",0); +__c.LogImpl("260489741","aqui 2",0); //BA.debugLineNum = 114;BA.debugLine="DisConnect"; _disconnect(); } @@ -245,10 +245,10 @@ if (true) return __c.True; //BA.debugLineNum = 123;BA.debugLine="DisConnect"; _disconnect(); //BA.debugLineNum = 124;BA.debugLine="Log(\"aqui 3\")"; -__c.LogImpl("860489752","aqui 3",0); +__c.LogImpl("260489752","aqui 3",0); }; //BA.debugLineNum = 126;BA.debugLine="Log(\"aqui 4\")"; -__c.LogImpl("860489754","aqui 4",0); +__c.LogImpl("260489754","aqui 4",0); //BA.debugLineNum = 127;BA.debugLine="Return False"; if (true) return __c.False; }else { @@ -259,12 +259,12 @@ if (true) return __c.True; //BA.debugLineNum = 132;BA.debugLine="DisConnect"; _disconnect(); //BA.debugLineNum = 133;BA.debugLine="Log(\"aqui 5\")"; -__c.LogImpl("860489761","aqui 5",0); +__c.LogImpl("260489761","aqui 5",0); }; } catch (Exception e31) { ba.setLastException(e31); //BA.debugLineNum = 136;BA.debugLine="Log(LastException)"; -__c.LogImpl("860489764",BA.ObjectToString(__c.LastException(getActivityBA())),0); +__c.LogImpl("260489764",BA.ObjectToString(__c.LastException(getActivityBA())),0); //BA.debugLineNum = 137;BA.debugLine="Return False"; if (true) return __c.False; }; @@ -433,22 +433,22 @@ _logmsg = ": Fill="+BA.NumberToString(_fill)+" : Points "+BA.NumberToString(_x0) //BA.debugLineNum = 445;BA.debugLine="If shape = 3 Then"; if (_shape==3) { //BA.debugLineNum = 446;BA.debugLine="Log(\"Triangle \" & logmsg)"; -__c.LogImpl("861800490","Triangle "+_logmsg,0); +__c.LogImpl("261800490","Triangle "+_logmsg,0); //BA.debugLineNum = 447;BA.debugLine="PlotTriangle(x0, y0, x1, y1, x2, y2, points, fi"; _plottriangle(_x0,_y0,_x1,_y1,_x2,_y2,_points,_fill); }else if(_shape==2) { //BA.debugLineNum = 449;BA.debugLine="Log(\"Circle \" & logmsg)"; -__c.LogImpl("861800493","Circle "+_logmsg,0); +__c.LogImpl("261800493","Circle "+_logmsg,0); //BA.debugLineNum = 450;BA.debugLine="PlotCircle(x0, y0, x1, y1, points, fill)"; _plotcircle(_x0,_y0,_x1,_y1,_points,_fill); }else if(_shape==1) { //BA.debugLineNum = 452;BA.debugLine="Log(\"Box \" & logmsg)"; -__c.LogImpl("861800496","Box "+_logmsg,0); +__c.LogImpl("261800496","Box "+_logmsg,0); //BA.debugLineNum = 453;BA.debugLine="PlotBox(x0, y0, x1, y1, points, fill)"; _plotbox(_x0,_y0,_x1,_y1,_points,_fill); }else { //BA.debugLineNum = 455;BA.debugLine="Log(\"Line \" & logmsg)"; -__c.LogImpl("861800499","Line "+_logmsg,0); +__c.LogImpl("261800499","Line "+_logmsg,0); //BA.debugLineNum = 456;BA.debugLine="PlotLine(x0, y0, x1, y1, points)"; _plotline(_x0,_y0,_x1,_y1,_points); }; @@ -1951,7 +1951,7 @@ _databytes = _data.getBytes("ASCII"); //BA.debugLineNum = 1078;BA.debugLine="Dim dlow As Int = databytes.Length"; _dlow = _databytes.length; //BA.debugLineNum = 1079;BA.debugLine="Log(\"Barcode \" & bartype & \", Size \" & dlow & \","; -__c.LogImpl("863438851","Barcode "+_bartype+", Size "+BA.NumberToString(_dlow)+", "+_data,0); +__c.LogImpl("263438851","Barcode "+_bartype+", Size "+BA.NumberToString(_dlow)+", "+_data,0); //BA.debugLineNum = 1080;BA.debugLine="WriteString(GS & \"k\" & bartype.ToUpperCase.CharAt"; _writestring(_gs+"k"+BA.ObjectToString(_bartype.toUpperCase().charAt((int) (0)))); //BA.debugLineNum = 1081;BA.debugLine="Dim params(1) As Byte"; @@ -1989,7 +1989,7 @@ _dhigh = (int) (_databytes.length/(double)256); //BA.debugLineNum = 1095;BA.debugLine="Dim dlow As Int = databytes.Length - dhigh*256"; _dlow = (int) (_databytes.length-_dhigh*256); //BA.debugLineNum = 1096;BA.debugLine="Log(\"QR Code : Size \" & size & \", EC \" & EC & \","; -__c.LogImpl("863504388","QR Code : Size "+BA.NumberToString(_size)+", EC "+_ec+", Scale "+BA.NumberToString(_scale)+", Size "+BA.NumberToString(_dlow)+" "+BA.NumberToString(_dhigh)+" : Data = "+_data,0); +__c.LogImpl("263504388","QR Code : Size "+BA.NumberToString(_size)+", EC "+_ec+", Scale "+BA.NumberToString(_scale)+", Size "+BA.NumberToString(_dlow)+" "+BA.NumberToString(_dhigh)+" : Data = "+_data,0); //BA.debugLineNum = 1097;BA.debugLine="Dim params(3) As Byte"; _params = new byte[(int) (3)]; ; @@ -2026,7 +2026,7 @@ _astream.Write(_data.getBytes(_encoding)); } catch (Exception e6) { ba.setLastException(e6); //BA.debugLineNum = 305;BA.debugLine="Log(\"Printer error : \" & LastException.Message)"; -__c.LogImpl("861538310","Printer error : "+__c.LastException(getActivityBA()).getMessage(),0); +__c.LogImpl("261538310","Printer error : "+__c.LastException(getActivityBA()).getMessage(),0); //BA.debugLineNum = 306;BA.debugLine="AStream_Error"; _astream_error(); }; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/fileprovider.java b/B4A/Objects/src/reparto_intmex/keymon/lat/fileprovider.java index 80434e6..ad6e56a 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/fileprovider.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/fileprovider.java @@ -104,7 +104,7 @@ _usefileprovider = __c.False; _sharedfolder = _rp.GetSafeDirDefaultExternal("shared"); }; //BA.debugLineNum = 18;BA.debugLine="Log($\"Using FileProvider? ${UseFileProvider}\"$)"; -__c.LogImpl("934799626",("Using FileProvider? "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); +__c.LogImpl("914745610",("Using FileProvider? "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); //BA.debugLineNum = 19;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/foto.java b/B4A/Objects/src/reparto_intmex/keymon/lat/foto.java index 23e4716..3b481db 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/foto.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/foto.java @@ -444,7 +444,7 @@ String _flash = ""; //BA.debugLineNum = 151;BA.debugLine="Dim f() As Float = camEx.GetFocusDistances"; _f = mostCurrent._camex._getfocusdistances /*float[]*/ (); //BA.debugLineNum = 152;BA.debugLine="Log(f(0) & \", \" & f(1) & \", \" & f(2))"; -anywheresoftware.b4a.keywords.Common.LogImpl("864684034",BA.NumberToString(_f[(int) (0)])+", "+BA.NumberToString(_f[(int) (1)])+", "+BA.NumberToString(_f[(int) (2)]),0); +anywheresoftware.b4a.keywords.Common.LogImpl("264684034",BA.NumberToString(_f[(int) (0)])+", "+BA.NumberToString(_f[(int) (1)])+", "+BA.NumberToString(_f[(int) (2)]),0); //BA.debugLineNum = 153;BA.debugLine="Dim flashModes As List = camEx.GetSupportedFlashM"; _flashmodes = new anywheresoftware.b4a.objects.collections.List(); _flashmodes = mostCurrent._camex._getsupportedflashmodes /*anywheresoftware.b4a.objects.collections.List*/ (); @@ -604,7 +604,7 @@ mostCurrent._camex._commitparameters /*String*/ (); //BA.debugLineNum = 61;BA.debugLine="camEx.StartPreview"; mostCurrent._camex._startpreview /*String*/ (); //BA.debugLineNum = 62;BA.debugLine="Log(camEx.GetPreviewSize)"; -anywheresoftware.b4a.keywords.Common.LogImpl("864290821",BA.ObjectToString(mostCurrent._camex._getpreviewsize /*reparto_intmex.keymon.lat.cameraexclass._camerasize*/ ()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("264290821",BA.ObjectToString(mostCurrent._camex._getpreviewsize /*reparto_intmex.keymon.lat.cameraexclass._camerasize*/ ()),0); }else { //BA.debugLineNum = 64;BA.debugLine="ToastMessageShow(\"Cannot open camera.\", True)"; anywheresoftware.b4a.keywords.Common.ToastMessageShow(BA.ObjectToCharSequence("Cannot open camera."),anywheresoftware.b4a.keywords.Common.True); diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/httpjob.java b/B4A/Objects/src/reparto_intmex/keymon/lat/httpjob.java index 2513629..c4c962b 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/httpjob.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/httpjob.java @@ -129,7 +129,7 @@ _req.InitializeDelete(_link); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 266;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936700165",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("916646149",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 267;BA.debugLine="req.InitializeDelete(InvalidURL)"; _req.InitializeDelete(_invalidurl); }; @@ -148,7 +148,7 @@ _req.InitializeDelete(_escapelink(_link,_parameters)); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 277;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936765701",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("916711685",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 278;BA.debugLine="req.InitializeDelete(escapeLink(InvalidURL, Para"; _req.InitializeDelete(_escapelink(_invalidurl,_parameters)); }; @@ -167,7 +167,7 @@ _req.InitializeGet(_link); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 224;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936503557",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("916449541",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 225;BA.debugLine="req.InitializeGet(InvalidURL)"; _req.InitializeGet(_invalidurl); }; @@ -186,7 +186,7 @@ _req.InitializeGet(_escapelink(_link,_parameters)); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 240;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936569093",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("916515077",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 241;BA.debugLine="req.InitializeGet(escapeLink(InvalidURL, Paramet"; _req.InitializeGet(_escapelink(_invalidurl,_parameters)); }; @@ -310,7 +310,7 @@ _req.InitializeHead(_link); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 124;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936241413",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("916187397",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 125;BA.debugLine="req.InitializeHead(InvalidURL)"; _req.InitializeHead(_invalidurl); }; @@ -364,7 +364,7 @@ _req.InitializePatch2(_link,_data); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 109;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936175884",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("916121868",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 110;BA.debugLine="req.InitializePatch2(InvalidURL, Data)"; _req.InitializePatch2(_invalidurl,_data); }; @@ -390,7 +390,7 @@ _req.InitializePost2(_link,_data); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 68;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("935913733",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("915859717",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 69;BA.debugLine="req.InitializePost2(InvalidURL, Data)"; _req.InitializePost2(_invalidurl,_data); }; @@ -410,7 +410,7 @@ _length = 0; //BA.debugLineNum = 197;BA.debugLine="If Dir = File.DirAssets Then"; if ((_dir).equals(__c.File.getDirAssets())) { //BA.debugLineNum = 198;BA.debugLine="Log(\"Cannot send files from the assets folder.\")"; -__c.LogImpl("936438024","Cannot send files from the assets folder.",0); +__c.LogImpl("916384008","Cannot send files from the assets folder.",0); //BA.debugLineNum = 199;BA.debugLine="Return"; if (true) return ""; }; @@ -547,7 +547,7 @@ _req.InitializePut2(_link,_data); } catch (Exception e5) { ba.setLastException(e5); //BA.debugLineNum = 85;BA.debugLine="Log($\"Invalid link: ${Link}\"$)"; -__c.LogImpl("936044805",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("915990789",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); //BA.debugLineNum = 86;BA.debugLine="req.InitializePut2(InvalidURL, Data)"; _req.InitializePut2(_invalidurl,_data); }; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/httputils2service.java b/B4A/Objects/src/reparto_intmex/keymon/lat/httputils2service.java index d8c3b5d..d821174 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/httputils2service.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/httputils2service.java @@ -69,7 +69,7 @@ _job = (reparto_intmex.keymon.lat.httpjob)(_taskidtojob.Get((Object)(_taskid))); //BA.debugLineNum = 157;BA.debugLine="If job = Null Then"; if (_job== null) { //BA.debugLineNum = 158;BA.debugLine="Log(\"HttpUtils2Service: job completed multiple t"; -anywheresoftware.b4a.keywords.Common.LogImpl("835586054","HttpUtils2Service: job completed multiple times - "+BA.NumberToString(_taskid),0); +anywheresoftware.b4a.keywords.Common.LogImpl("215532038","HttpUtils2Service: job completed multiple times - "+BA.NumberToString(_taskid),0); //BA.debugLineNum = 159;BA.debugLine="Return"; if (true) return ""; }; @@ -88,7 +88,7 @@ public static String _hc_responseerror(anywheresoftware.b4h.okhttp.OkHttpClient reparto_intmex.keymon.lat.httpjob _job = null; //BA.debugLineNum = 115;BA.debugLine="Sub hc_ResponseError (Response As OkHttpResponse,"; //BA.debugLineNum = 117;BA.debugLine="Log($\"ResponseError. Reason: ${Reason}, Response:"; -anywheresoftware.b4a.keywords.Common.LogImpl("835520514",("ResponseError. Reason: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_reason))+", Response: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_response.getErrorResponse()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("215466498",("ResponseError. Reason: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_reason))+", Response: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_response.getErrorResponse()))+""),0); //BA.debugLineNum = 119;BA.debugLine="Response.Release"; _response.Release(); //BA.debugLineNum = 120;BA.debugLine="Dim job As HttpJob = TaskIdToJob.Get(TaskId)"; @@ -96,7 +96,7 @@ _job = (reparto_intmex.keymon.lat.httpjob)(_taskidtojob.Get((Object)(_taskid))); //BA.debugLineNum = 121;BA.debugLine="If job = Null Then"; if (_job== null) { //BA.debugLineNum = 122;BA.debugLine="Log(\"HttpUtils2Service (hc_ResponseError): job c"; -anywheresoftware.b4a.keywords.Common.LogImpl("835520519","HttpUtils2Service (hc_ResponseError): job completed multiple times - "+BA.NumberToString(_taskid),0); +anywheresoftware.b4a.keywords.Common.LogImpl("215466503","HttpUtils2Service (hc_ResponseError): job completed multiple times - "+BA.NumberToString(_taskid),0); //BA.debugLineNum = 123;BA.debugLine="Return"; if (true) return ""; }; @@ -122,7 +122,7 @@ _job = (reparto_intmex.keymon.lat.httpjob)(_taskidtojob.Get((Object)(_taskid))); //BA.debugLineNum = 94;BA.debugLine="If job = Null Then"; if (_job== null) { //BA.debugLineNum = 95;BA.debugLine="Log(\"HttpUtils2Service (hc_ResponseSuccess): job"; -anywheresoftware.b4a.keywords.Common.LogImpl("835389443","HttpUtils2Service (hc_ResponseSuccess): job completed multiple times - "+BA.NumberToString(_taskid),0); +anywheresoftware.b4a.keywords.Common.LogImpl("215335427","HttpUtils2Service (hc_ResponseSuccess): job completed multiple times - "+BA.NumberToString(_taskid),0); //BA.debugLineNum = 96;BA.debugLine="Return"; if (true) return ""; }; @@ -186,9 +186,9 @@ anywheresoftware.b4a.keywords.Common.File.Delete(_tempfolder,"~test.test"); } catch (Exception e6) { processBA.setLastException(e6); //BA.debugLineNum = 34;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("835061767",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(processBA)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("215007751",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(processBA)),0); //BA.debugLineNum = 35;BA.debugLine="Log(\"Switching to File.DirInternal\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("835061768","Switching to File.DirInternal",0); +anywheresoftware.b4a.keywords.Common.LogImpl("215007752","Switching to File.DirInternal",0); //BA.debugLineNum = 36;BA.debugLine="TempFolder = File.DirInternal"; _tempfolder = anywheresoftware.b4a.keywords.Common.File.getDirInternal(); }; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/manageexternalstorage.java b/B4A/Objects/src/reparto_intmex/keymon/lat/manageexternalstorage.java index c5e1b48..16824ed 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/manageexternalstorage.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/manageexternalstorage.java @@ -121,7 +121,7 @@ return null; public String _raiseevent() throws Exception{ //BA.debugLineNum = 53;BA.debugLine="Private Sub RaiseEvent"; //BA.debugLineNum = 54;BA.debugLine="Log(\"Calling : \" & mEventName & \"_StorageAvailab"; -__c.LogImpl("865142785","Calling : "+_meventname+"_StorageAvailable",0); +__c.LogImpl("265142785","Calling : "+_meventname+"_StorageAvailable",0); //BA.debugLineNum = 55;BA.debugLine="CallSubDelayed(mCallback, mEventName & \"_StorageA"; __c.CallSubDelayed(ba,_mcallback,_meventname+"_StorageAvailable"); //BA.debugLineNum = 56;BA.debugLine="End Sub"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/mapa_cliente.java b/B4A/Objects/src/reparto_intmex/keymon/lat/mapa_cliente.java index f6f2fa2..a8b69c0 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/mapa_cliente.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/mapa_cliente.java @@ -430,7 +430,7 @@ return ""; public static String _b_regresar_click() throws Exception{ //BA.debugLineNum = 105;BA.debugLine="Private Sub b_regresar_Click"; //BA.debugLineNum = 106;BA.debugLine="Log(\"Pressed\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("865929217","Pressed",0); +anywheresoftware.b4a.keywords.Common.LogImpl("265929217","Pressed",0); //BA.debugLineNum = 107;BA.debugLine="Activity.Finish"; mostCurrent._activity.Finish(); //BA.debugLineNum = 108;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/newinst2.java b/B4A/Objects/src/reparto_intmex/keymon/lat/newinst2.java index 663b4b5..c91a10d 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/newinst2.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/newinst2.java @@ -158,7 +158,7 @@ public static String _myappreload() throws Exception{ //BA.debugLineNum = 43;BA.debugLine="Sub MyAppReload"; //BA.debugLineNum = 44;BA.debugLine="If svcVerbose Then Log(\"-- AppUpdating.NewInst2:"; if (_svcverbose) { -anywheresoftware.b4a.keywords.Common.LogImpl("826017793","-- AppUpdating.NewInst2: processing MyAppReload",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("25963777","-- AppUpdating.NewInst2: processing MyAppReload",0);}; //BA.debugLineNum = 45;BA.debugLine="If IsPaused(\"main\") Then"; if (anywheresoftware.b4a.keywords.Common.IsPaused(processBA,(Object)("main"))) { //BA.debugLineNum = 46;BA.debugLine="StartActivity(\"main\")"; @@ -181,7 +181,7 @@ return ""; public static String _service_create() throws Exception{ //BA.debugLineNum = 13;BA.debugLine="Sub Service_Create"; //BA.debugLineNum = 14;BA.debugLine="LogColor(\"---- AppUpdating.newinst2: service crea"; -anywheresoftware.b4a.keywords.Common.LogImpl("825755649","---- AppUpdating.newinst2: service created",_logcolor1); +anywheresoftware.b4a.keywords.Common.LogImpl("25701633","---- AppUpdating.newinst2: service created",_logcolor1); //BA.debugLineNum = 15;BA.debugLine="pkg = \"\""; _pkg = ""; //BA.debugLineNum = 16;BA.debugLine="svcVerbose = False"; @@ -197,28 +197,28 @@ return ""; public static String _service_start(anywheresoftware.b4a.objects.IntentWrapper _startingintent) throws Exception{ //BA.debugLineNum = 19;BA.debugLine="Sub Service_Start (StartingIntent As Intent)"; //BA.debugLineNum = 20;BA.debugLine="LogColor(\"---- AppUpdating.newinst2: service_star"; -anywheresoftware.b4a.keywords.Common.LogImpl("825821185","---- AppUpdating.newinst2: service_started",_logcolor1); +anywheresoftware.b4a.keywords.Common.LogImpl("25767169","---- AppUpdating.newinst2: service_started",_logcolor1); //BA.debugLineNum = 21;BA.debugLine="If svcVerbose Then"; if (_svcverbose) { //BA.debugLineNum = 22;BA.debugLine="Log($\"${TAB}intent: ${StartingIntent}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("825821187",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"intent: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.getObject()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("25767171",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"intent: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.getObject()))+""),0); //BA.debugLineNum = 23;BA.debugLine="Log($\"${TAB}action: ${StartingIntent.Action}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("825821188",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"action: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.getAction()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("25767172",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"action: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.getAction()))+""),0); //BA.debugLineNum = 24;BA.debugLine="Log($\"${TAB}extra: ${StartingIntent.ExtrasToStri"; -anywheresoftware.b4a.keywords.Common.LogImpl("825821189",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"extra: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.ExtrasToString()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("25767173",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"extra: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.ExtrasToString()))+""),0); //BA.debugLineNum = 25;BA.debugLine="Log($\"${TAB}data: ${StartingIntent.GetData}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("825821190",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"data: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.GetData()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("25767174",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"data: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_startingintent.GetData()))+""),0); }; //BA.debugLineNum = 27;BA.debugLine="If StartingIntent.Action = \"android.intent.action"; if ((_startingintent.getAction()).equals("android.intent.action.MY_PACKAGE_REPLACED")) { //BA.debugLineNum = 28;BA.debugLine="If svcVerbose Then Log($\"${TAB}Intent MY_PACKAGE"; if (_svcverbose) { -anywheresoftware.b4a.keywords.Common.LogImpl("825821193",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"Intent MY_PACKAGE_REPLACED received!"),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("25767177",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"Intent MY_PACKAGE_REPLACED received!"),0);}; //BA.debugLineNum = 29;BA.debugLine="pkg = GetPackageName"; _pkg = _getpackagename(); //BA.debugLineNum = 30;BA.debugLine="If svcVerbose Then Log($\"${TAB}package: ${pkg}\"$"; if (_svcverbose) { -anywheresoftware.b4a.keywords.Common.LogImpl("825821195",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"package: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_pkg))+""),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("25767179",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"package: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_pkg))+""),0);}; //BA.debugLineNum = 31;BA.debugLine="MyAppReload"; _myappreload(); }; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/starter.java b/B4A/Objects/src/reparto_intmex/keymon/lat/starter.java index a8d6222..1a1e22c 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/starter.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/starter.java @@ -174,7 +174,7 @@ reparto_intmex.keymon.lat.dbrequestmanager._dbcommand _cmd = null; //BA.debugLineNum = 96;BA.debugLine="If IsConnectedToInternet Then"; if (_isconnectedtointernet()) { //BA.debugLineNum = 97;BA.debugLine="Log(\"Con internet, enviamos UTR!\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("814221314","Con internet, enviamos UTR!",0); +anywheresoftware.b4a.keywords.Common.LogImpl("251838978","Con internet, enviamos UTR!",0); //BA.debugLineNum = 98;BA.debugLine="Dim skmt As SQL"; _skmt = new anywheresoftware.b4a.sql.SQL(); //BA.debugLineNum = 99;BA.debugLine="Dim cmd As DBCommand"; @@ -189,7 +189,7 @@ _skmt.Initialize(_ruta,"kmt.db",anywheresoftware.b4a.keywords.Common.True); _skmt.Initialize(_ruta,"kmt.db",anywheresoftware.b4a.keywords.Common.True); //BA.debugLineNum = 106;BA.debugLine="If B4XPages.MainPage.logger Then LogColor(\"Inici"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("814221323","Iniciamos ENVIA_ULTIMA_GPS",anywheresoftware.b4a.keywords.Common.Colors.Red);}; +anywheresoftware.b4a.keywords.Common.LogImpl("251838987","Iniciamos ENVIA_ULTIMA_GPS",anywheresoftware.b4a.keywords.Common.Colors.Red);}; //BA.debugLineNum = 107;BA.debugLine="DateTime.TimeFormat = \"HHmmss\""; anywheresoftware.b4a.keywords.Common.DateTime.setTimeFormat("HHmmss"); //BA.debugLineNum = 108;BA.debugLine="B4XPages.MainPage.ultimaActualizacionGPS = DateT"; @@ -210,7 +210,7 @@ _cmd.Name /*String*/ = "UPDATE_INTMEX_ACTUALR4_GPS"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montoactual /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientesventa /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientesvisitados /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._lat_gps /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._lon_gps /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._batt /*int*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montorechazado /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montoentregado /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._porvisitar /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._entregas /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._rechazos /*String*/ ),(Object)(anywheresoftware.b4a.keywords.Common.Application.getVersionName()),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._almacen /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._rutapreventa /*String*/ )}; //BA.debugLineNum = 117;BA.debugLine="If B4XPages.MainPage.logger Then Log($\"montoActu"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("814221334",("montoActual: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montoactual /*String*/ ))+", cTotal: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ))+", cVenta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientesventa /*String*/ ))+", cVisitados: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientesvisitados /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._lat_gps /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._lon_gps /*String*/ ))+", Batt: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._batt /*int*/ ))+", montoRechazado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montorechazado /*String*/ ))+", montoEntregado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montoentregado /*String*/ ))+", porVisitar: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._porvisitar /*String*/ ))+", entregas: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._entregas /*String*/ ))+", rechazos: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._rechazos /*String*/ ))+", Almacen: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._almacen /*String*/ ))+", Ruta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._rutapreventa /*String*/ ))+""),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("251838998",("montoActual: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montoactual /*String*/ ))+", cTotal: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ))+", cVenta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientesventa /*String*/ ))+", cVisitados: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._clientesvisitados /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._lat_gps /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._lon_gps /*String*/ ))+", Batt: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._batt /*int*/ ))+", montoRechazado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montorechazado /*String*/ ))+", montoEntregado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._montoentregado /*String*/ ))+", porVisitar: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._porvisitar /*String*/ ))+", entregas: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._entregas /*String*/ ))+", rechazos: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._rechazos /*String*/ ))+", Almacen: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._almacen /*String*/ ))+", Ruta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._rutapreventa /*String*/ ))+""),0);}; //BA.debugLineNum = 119;BA.debugLine="reqManager.ExecuteCommand(cmd, \"inst_visitas\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("inst_visitas")); //BA.debugLineNum = 120;BA.debugLine="skmt.ExecNonQuery2(\"Update cat_variables set CAT"; @@ -223,7 +223,7 @@ _timer1.setInterval((long) (_interval*1000)); _timer1.setEnabled(anywheresoftware.b4a.keywords.Common.True); }else { //BA.debugLineNum = 127;BA.debugLine="Log(\"Sin conexión a internet, no se envió UTR!\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("814221344","Sin conexión a internet, no se envió UTR!",0); +anywheresoftware.b4a.keywords.Common.LogImpl("251839008","Sin conexión a internet, no se envió UTR!",0); }; //BA.debugLineNum = 129;BA.debugLine="End Sub"; return ""; @@ -316,7 +316,7 @@ _ruta = anywheresoftware.b4a.keywords.Common.File.getDirInternal(); if (anywheresoftware.b4a.keywords.Common.Not(anywheresoftware.b4a.keywords.Common.File.Exists(_ruta,"kmt.db"))) { anywheresoftware.b4a.keywords.Common.File.Copy(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"kmt.db",_ruta,"kmt.db");}; //BA.debugLineNum = 44;BA.debugLine="Log(ruta)"; -anywheresoftware.b4a.keywords.Common.LogImpl("813828102",_ruta,0); +anywheresoftware.b4a.keywords.Common.LogImpl("251445766",_ruta,0); //BA.debugLineNum = 45;BA.debugLine="skmt.Initialize(ruta,\"kmt.db\", True)"; _skmt.Initialize(_ruta,"kmt.db",anywheresoftware.b4a.keywords.Common.True); //BA.debugLineNum = 59;BA.debugLine="Timer1.Initialize(\"Timer1\", Interval * 1000)"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/subs.java b/B4A/Objects/src/reparto_intmex/keymon/lat/subs.java index 4fdd66e..458feb5 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/subs.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/subs.java @@ -47,7 +47,7 @@ if ((_c.GetString("fCol")).equals(BA.NumberToString(0))) { //BA.debugLineNum = 971;BA.debugLine="Starter.skmt.ExecNonQuery($\"ALTER TABLE ${tabla"; mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("ALTER TABLE "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tabla))+" ADD COLUMN "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_columna))+" "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tipo))+"")); //BA.debugLineNum = 972;BA.debugLine="Log($\"Columna \"${columna} ${tipo}\", agregada a"; -anywheresoftware.b4a.keywords.Common.LogImpl("870909958",("Columna \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_columna))+" "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tipo))+"\", agregada a \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tabla))+"\"."),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270909958",("Columna \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_columna))+" "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tipo))+"\", agregada a \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tabla))+"\"."),0); }; } catch (Exception e9) { @@ -55,11 +55,11 @@ anywheresoftware.b4a.keywords.Common.LogImpl("870909958",("Columna \""+anywheres try { //BA.debugLineNum = 976;BA.debugLine="Starter.skmt.ExecNonQuery($\"ALTER TABLE ${tabla"; mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("ALTER TABLE "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tabla))+" ADD COLUMN "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_columna))+" "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tipo))+"")); //BA.debugLineNum = 977;BA.debugLine="Log($\"Columna \"${columna} ${tipo}\", agregada a"; -anywheresoftware.b4a.keywords.Common.LogImpl("870909963",("Columna \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_columna))+" "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tipo))+"\", agregada a \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tabla))+"\".."),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270909963",("Columna \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_columna))+" "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tipo))+"\", agregada a \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_tabla))+"\".."),0); } catch (Exception e13) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e13); //BA.debugLineNum = 979;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("870909965",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270909965",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; }; //BA.debugLineNum = 982;BA.debugLine="End Sub"; @@ -71,7 +71,7 @@ public static String _borraarribade100errores(anywheresoftware.b4a.BA _ba) thro if (anywheresoftware.b4a.keywords.Common.Not(_errorlog.IsInitialized())) { _revisabd(_ba);}; //BA.debugLineNum = 443;BA.debugLine="LogColor(\"Recortamos la tabla de Errores, limite"; -anywheresoftware.b4a.keywords.Common.LogImpl("868747266","Recortamos la tabla de Errores, limite de 100",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("268747266","Recortamos la tabla de Errores, limite de 100",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 444;BA.debugLine="errorLog.ExecNonQuery(\"DELETE FROM errores WHERE"; _errorlog.ExecNonQuery("DELETE FROM errores WHERE fecha NOT in (SELECT fecha FROM errores ORDER BY fecha desc LIMIT 99 )"); //BA.debugLineNum = 445;BA.debugLine="errorLog.ExecNonQuery(\"vacuum;\")"; @@ -85,7 +85,7 @@ anywheresoftware.b4a.sql.SQL.CursorWrapper _c = null; //BA.debugLineNum = 451;BA.debugLine="revisaBD"; _revisabd(_ba); //BA.debugLineNum = 452;BA.debugLine="LogColor(\"Recortamos la tabla de la Bitacora, lim"; -anywheresoftware.b4a.keywords.Common.LogImpl("868812802","Recortamos la tabla de la Bitacora, limite de 600",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("268812802","Recortamos la tabla de la Bitacora, limite de 600",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 453;BA.debugLine="Private c As Cursor"; _c = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); //BA.debugLineNum = 454;BA.debugLine="c = kmt.ExecQuery(\"select fecha from bitacora\")"; @@ -107,7 +107,7 @@ return ""; public static String _borralogdb(anywheresoftware.b4a.BA _ba) throws Exception{ //BA.debugLineNum = 329;BA.debugLine="Sub borraLogDB 'ignore"; //BA.debugLineNum = 330;BA.debugLine="LogColor(\"Borramos BD de log\", Colors.Magenta)"; -anywheresoftware.b4a.keywords.Common.LogImpl("868419585","Borramos BD de log",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("268419585","Borramos BD de log",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 331;BA.debugLine="kmt.ExecNonQuery(\"delete from bitacora\")"; _kmt.ExecNonQuery("delete from bitacora"); //BA.debugLineNum = 332;BA.debugLine="kmt.ExecNonQuery(\"vacuum;\")"; @@ -171,7 +171,7 @@ _compressed = _gzip.compress(_str); //BA.debugLineNum = 44;BA.debugLine="Dim base64 As String = su.EncodeBase64(compressed"; _base64 = _su.EncodeBase64(_compressed); //BA.debugLineNum = 45;BA.debugLine="Log($\"Comprimido: ${base64.Length}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("866977798",("Comprimido: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_base64.length()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("266977798",("Comprimido: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_base64.length()))+""),0); //BA.debugLineNum = 47;BA.debugLine="Return base64"; if (true) return _base64; //BA.debugLineNum = 48;BA.debugLine="End Sub"; @@ -216,11 +216,11 @@ anywheresoftware.b4a.keywords.Common.ToastMessageShow(BA.ObjectToCharSequence("B anywheresoftware.b4a.keywords.Common.ToastMessageShow(BA.ObjectToCharSequence("No se pudo hacer la copia: "+BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba))),anywheresoftware.b4a.keywords.Common.True); }; //BA.debugLineNum = 561;BA.debugLine="Log(\"rootExternal=\"&p)"; -anywheresoftware.b4a.keywords.Common.LogImpl("869140503","rootExternal="+_p,0); +anywheresoftware.b4a.keywords.Common.LogImpl("269140503","rootExternal="+_p,0); //BA.debugLineNum = 562;BA.debugLine="Log(\"File.DirInternal=\"&File.DirInternal)"; -anywheresoftware.b4a.keywords.Common.LogImpl("869140504","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("269140504","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); //BA.debugLineNum = 563;BA.debugLine="Log(\"File.DirInternal=\"&File.DirInternal)"; -anywheresoftware.b4a.keywords.Common.LogImpl("869140505","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("269140505","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); }else { //BA.debugLineNum = 565;BA.debugLine="ToastMessageShow(\"Sin permisos\", False)"; anywheresoftware.b4a.keywords.Common.ToastMessageShow(BA.ObjectToCharSequence("Sin permisos"),anywheresoftware.b4a.keywords.Common.False); @@ -264,7 +264,7 @@ anywheresoftware.b4a.objects.collections.Map _m = null; anywheresoftware.b4a.objects.collections.Map _m2 = null; //BA.debugLineNum = 475;BA.debugLine="Sub dameErroresJSON(SQL As SQL, maxErrores As Int,"; //BA.debugLineNum = 476;BA.debugLine="Log(\"dameErroresJSON\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("868943873","dameErroresJSON",0); +anywheresoftware.b4a.keywords.Common.LogImpl("268943873","dameErroresJSON",0); //BA.debugLineNum = 477;BA.debugLine="Private j As JSONGenerator"; _j = new anywheresoftware.b4a.objects.collections.JSONParser.JSONGenerator(); //BA.debugLineNum = 478;BA.debugLine="Private lim As String"; @@ -308,7 +308,7 @@ _cur.Close(); //BA.debugLineNum = 495;BA.debugLine="j.Initialize(m2)"; _j.Initialize(_m2); //BA.debugLineNum = 496;BA.debugLine="Log(j.ToString)"; -anywheresoftware.b4a.keywords.Common.LogImpl("868943893",_j.ToString(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("268943893",_j.ToString(),0); //BA.debugLineNum = 497;BA.debugLine="If comprimido Then"; if (_comprimido) { //BA.debugLineNum = 498;BA.debugLine="Return compress(j.ToString)"; @@ -340,7 +340,7 @@ _fechainicio = _fechainiciohoy(_ba); }; //BA.debugLineNum = 153;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"fechaInicio"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("867502091","fechaInicio: "+_fechainicio+" | rutaHrsAtras="+BA.NumberToString(_rutahrsatras),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("267502091","fechaInicio: "+_fechainicio+" | rutaHrsAtras="+BA.NumberToString(_rutahrsatras),0);}; //BA.debugLineNum = 154;BA.debugLine="Dim c As Cursor"; _c = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); //BA.debugLineNum = 155;BA.debugLine="If kmt.IsInitialized = False Then kmt.Initialize("; @@ -348,7 +348,7 @@ if (_kmt.IsInitialized()==anywheresoftware.b4a.keywords.Common.False) { _kmt.Initialize(mostCurrent._starter._ruta /*String*/ ,"kmt.db",anywheresoftware.b4a.keywords.Common.True);}; //BA.debugLineNum = 156;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"select FECH"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("867502094","select FECHA, LAT, LON from "+_origenruta+" where FECHA > "+_fechainicio+" order by FECHA desc limit "+BA.NumberToString(_rutamaxpoints),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("267502094","select FECHA, LAT, LON from "+_origenruta+" where FECHA > "+_fechainicio+" order by FECHA desc limit "+BA.NumberToString(_rutamaxpoints),0);}; //BA.debugLineNum = 157;BA.debugLine="c = kmt.ExecQuery(\"select FECHA, LAT, LON from \"&"; _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(_kmt.ExecQuery("select FECHA, LAT, LON from "+_origenruta+" where FECHA > "+_fechainicio+" order by FECHA desc limit "+BA.NumberToString(_rutamaxpoints)))); //BA.debugLineNum = 158;BA.debugLine="c.Position = 0"; @@ -416,7 +416,7 @@ _bc = new anywheresoftware.b4a.agraham.byteconverter.ByteConverter(); //BA.debugLineNum = 55;BA.debugLine="Dim uncompressed As String = bc.StringFromBytes(d"; _uncompressed = _bc.StringFromBytes(_decompressedbytes,"UTF8"); //BA.debugLineNum = 56;BA.debugLine="Log($\"Descomprimido: ${uncompressed.Length}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("867043333",("Descomprimido: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_uncompressed.length()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("267043333",("Descomprimido: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_uncompressed.length()))+""),0); //BA.debugLineNum = 58;BA.debugLine="Return uncompressed"; if (true) return _uncompressed; //BA.debugLineNum = 59;BA.debugLine="End Sub"; @@ -458,7 +458,7 @@ _h = anywheresoftware.b4a.keywords.Common.DateTime.Date(anywheresoftware.b4a.key //BA.debugLineNum = 292;BA.debugLine="DateTime.DateFormat=OrigFormat 'return to orig"; anywheresoftware.b4a.keywords.Common.DateTime.setDateFormat(_origformat); //BA.debugLineNum = 293;BA.debugLine="Log(\"Hoy=\"&h)"; -anywheresoftware.b4a.keywords.Common.LogImpl("868157445","Hoy="+_h,0); +anywheresoftware.b4a.keywords.Common.LogImpl("268157445","Hoy="+_h,0); //BA.debugLineNum = 294;BA.debugLine="Return h"; if (true) return _h; //BA.debugLineNum = 295;BA.debugLine="End Sub"; @@ -508,16 +508,16 @@ anywheresoftware.b4a.keywords.Common.DateTime.setDateFormat(_origformat); if (true) return _ticks; }else { //BA.debugLineNum = 518;BA.debugLine="Log(\"Formato de fecha incorrecto, debe de ser '"; -anywheresoftware.b4a.keywords.Common.LogImpl("869009421","Formato de fecha incorrecto, debe de ser 'YYMMDDHHMMSS', no '"+_fkmt+"' largo="+BA.NumberToString(_fkmt.length()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("269009421","Formato de fecha incorrecto, debe de ser 'YYMMDDHHMMSS', no '"+_fkmt+"' largo="+BA.NumberToString(_fkmt.length()),0); //BA.debugLineNum = 519;BA.debugLine="Return 0"; if (true) return (long) (0); }; } catch (Exception e16) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e16); //BA.debugLineNum = 522;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("869009425",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("269009425",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); //BA.debugLineNum = 523;BA.debugLine="LogColor($\"Fecha dada: ${fKMT}, Parte Fecha: ${p"; -anywheresoftware.b4a.keywords.Common.LogImpl("869009426",("Fecha dada: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_fkmt))+", Parte Fecha: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_partefecha))+", Parte Hora: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_partehora))+""),anywheresoftware.b4a.keywords.Common.Colors.Red); +anywheresoftware.b4a.keywords.Common.LogImpl("269009426",("Fecha dada: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_fkmt))+", Parte Fecha: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_partefecha))+", Parte Hora: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_partehora))+""),anywheresoftware.b4a.keywords.Common.Colors.Red); //BA.debugLineNum = 524;BA.debugLine="Return 0"; if (true) return (long) (0); }; @@ -594,7 +594,7 @@ String[] _latlon = null; //BA.debugLineNum = 128;BA.debugLine="Sub guardaInfoEnBD(coords As String) 'ignore"; //BA.debugLineNum = 129;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"Guardamos u"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("867436545","Guardamos ubicacion en BD - "+_coords,0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("267436545","Guardamos ubicacion en BD - "+_coords,0);}; //BA.debugLineNum = 130;BA.debugLine="Try"; try { //BA.debugLineNum = 131;BA.debugLine="Dim latlon() As String = Regex.Split(\"\\|\", coord"; _latlon = anywheresoftware.b4a.keywords.Common.Regex.Split("\\|",_coords); @@ -609,7 +609,7 @@ _kmt.ExecNonQuery2("INSERT INTO RUTA_GPS(fecha, lat, lon) VALUES (?,?,?)",anywhe } catch (Exception e8) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e8); //BA.debugLineNum = 137;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("867436553",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("267436553",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; //BA.debugLineNum = 139;BA.debugLine="End Sub"; return ""; @@ -648,7 +648,7 @@ int _x = 0; if (anywheresoftware.b4a.keywords.Common.Not(_errorlog.IsInitialized())) { _revisabd(_ba);}; //BA.debugLineNum = 467;BA.debugLine="Log(\"insertamos 50 renglones a errorLog\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("868878338","insertamos 50 renglones a errorLog",0); +anywheresoftware.b4a.keywords.Common.LogImpl("268878338","insertamos 50 renglones a errorLog",0); //BA.debugLineNum = 468;BA.debugLine="For x = 1 To 50"; { final int step3 = 1; @@ -658,7 +658,7 @@ for (;_x <= limit3 ;_x = _x + step3 ) { //BA.debugLineNum = 469;BA.debugLine="errorLog.ExecNonQuery2(\"INSERT INTO errores(fech"; _errorlog.ExecNonQuery2("INSERT INTO errores(fecha, error) VALUES (?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))),(Object)("abc")})); //BA.debugLineNum = 470;BA.debugLine="Log(x)"; -anywheresoftware.b4a.keywords.Common.LogImpl("868878341",BA.NumberToString(_x),0); +anywheresoftware.b4a.keywords.Common.LogImpl("268878341",BA.NumberToString(_x),0); } }; //BA.debugLineNum = 472;BA.debugLine="End Sub"; @@ -695,7 +695,7 @@ if (true) return _json.NextObject(); } catch (Exception e6) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e6); //BA.debugLineNum = 239;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("867895303",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("267895303",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); //BA.debugLineNum = 240;BA.debugLine="log2DB(\"JSON2Map: \"&LastException)"; _log2db(_ba,"JSON2Map: "+BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba))); //BA.debugLineNum = 241;BA.debugLine="Private m As Map = CreateMap(\"title\":\"Error gene"; @@ -710,7 +710,7 @@ return null; public static String _log2db(anywheresoftware.b4a.BA _ba,String _texto) throws Exception{ //BA.debugLineNum = 298;BA.debugLine="Sub log2DB(texto As String) 'ignore"; //BA.debugLineNum = 299;BA.debugLine="LogColor(fechaKMT(DateTime.Now)&\" - log2BD: '\"&te"; -anywheresoftware.b4a.keywords.Common.LogImpl("868222977",_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))+" - log2BD: '"+_texto+"'",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("268222977",_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))+" - log2BD: '"+_texto+"'",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 300;BA.debugLine="If kmt.IsInitialized Then kmt.ExecNonQuery2(\"INSE"; if (_kmt.IsInitialized()) { _kmt.ExecNonQuery2("INSERT INTO bitacora(fecha, texto) VALUES (?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))),(Object)(_texto)}));}; @@ -764,7 +764,7 @@ if (true) return anywheresoftware.b4a.keywords.Common.False; } catch (Exception e8) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e8); //BA.debugLineNum = 324;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("868354059",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("268354059",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; //BA.debugLineNum = 326;BA.debugLine="End Sub"; return false; @@ -790,7 +790,7 @@ _notif.setSound(anywheresoftware.b4a.keywords.Common.False); //BA.debugLineNum = 90;BA.debugLine="notif.AutoCancel = True"; _notif.setAutoCancel(anywheresoftware.b4a.keywords.Common.True); //BA.debugLineNum = 91;BA.debugLine="Log(\"notiHigh: \"&title)"; -anywheresoftware.b4a.keywords.Common.LogImpl("867239943","notiHigh: "+_title,0); +anywheresoftware.b4a.keywords.Common.LogImpl("267239943","notiHigh: "+_title,0); //BA.debugLineNum = 92;BA.debugLine="notif.SetInfo(title, body, activity)"; _notif.SetInfoNew((_ba.processBA == null ? _ba : _ba.processBA),BA.ObjectToCharSequence(_title),BA.ObjectToCharSequence(_body),_activity); //BA.debugLineNum = 94;BA.debugLine="notif.Notify(777)"; @@ -806,7 +806,7 @@ _notification = new anywheresoftware.b4a.objects.NotificationWrapper(); //BA.debugLineNum = 100;BA.debugLine="notification.Initialize2(notification.IMPORTANCE_"; _notification.Initialize2(_notification.IMPORTANCE_LOW); //BA.debugLineNum = 101;BA.debugLine="Log(\"notiLowReturn: \"&title)"; -anywheresoftware.b4a.keywords.Common.LogImpl("867305475","notiLowReturn: "+_title,0); +anywheresoftware.b4a.keywords.Common.LogImpl("267305475","notiLowReturn: "+_title,0); //BA.debugLineNum = 102;BA.debugLine="notification.Icon = \"icon\""; _notification.setIcon("icon"); //BA.debugLineNum = 103;BA.debugLine="notification.Sound = False"; @@ -863,7 +863,7 @@ anywheresoftware.b4a.sql.SQL.CursorWrapper _chv = null; String _precio = ""; //BA.debugLineNum = 824;BA.debugLine="Sub prodRechazo(clienteOriginal As String, prodId"; //BA.debugLineNum = 825;BA.debugLine="Log(\"RECHAZO DEVOLUCION\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("870516737","RECHAZO DEVOLUCION",0); +anywheresoftware.b4a.keywords.Common.LogImpl("270516737","RECHAZO DEVOLUCION",0); //BA.debugLineNum = 826;BA.debugLine="Private rr As Cursor = Starter.skmt.ExecQuery($\"s"; _rr = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _rr = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select count(REP_CLIENTE) as hayRechazo from REPARTO where rep_prodid = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"' and REP_CLIENTE in (Select CUENTA from cuentaa)")))); @@ -872,7 +872,7 @@ _rr.setPosition((int) (0)); //BA.debugLineNum = 828;BA.debugLine="If rr.GetString(\"hayRechazo\") = 0 Then"; if ((_rr.GetString("hayRechazo")).equals(BA.NumberToString(0))) { //BA.debugLineNum = 829;BA.debugLine="Log(\"INSERTAMOS EN REPARTO\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("870516741","INSERTAMOS EN REPARTO",0); +anywheresoftware.b4a.keywords.Common.LogImpl("270516741","INSERTAMOS EN REPARTO",0); //BA.debugLineNum = 831;BA.debugLine="Private chv As Cursor = Starter.skmt.ExecQuery($"; _chv = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _chv = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select * from hist_ventas where hvd_cliente in (select cuenta from cuentaa) and hvd_proid = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'")))); @@ -891,7 +891,7 @@ mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("upda }; }else { //BA.debugLineNum = 842;BA.debugLine="Log($\"ACTUALIZAMOS REPARTO\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("870516754",("ACTUALIZAMOS REPARTO"),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270516754",("ACTUALIZAMOS REPARTO"),0); //BA.debugLineNum = 843;BA.debugLine="Private precio As String = traePrecio(prodId, tr"; _precio = _traeprecio(_ba,_prodid,_traealmacen(_ba)); //BA.debugLineNum = 844;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update HIST_VENTAS s"; @@ -916,9 +916,9 @@ mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("upda //BA.debugLineNum = 797;BA.debugLine="Starter.skmt.ExecNonQuery($\"update reparto set RE"; mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update reparto set REP_CANT = REP_CANT + 1 where REP_CLIENTE in (Select CUENTA from cuentaa) and REP_CLI_ORIG = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_RECHAZO = 0 and REP_PRODID = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'")); //BA.debugLineNum = 798;BA.debugLine="Log($\"update reparto set REP_CANT = REP_CANT - 1"; -anywheresoftware.b4a.keywords.Common.LogImpl("870451205",("update reparto set REP_CANT = REP_CANT - 1 where REP_CLIENTE = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_CLI_ORIG = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_RECHAZO = 1 and REP_PRODID = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'"),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270451205",("update reparto set REP_CANT = REP_CANT - 1 where REP_CLIENTE = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_CLI_ORIG = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_RECHAZO = 1 and REP_PRODID = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'"),0); //BA.debugLineNum = 799;BA.debugLine="Log($\"update reparto set REP_CANT = REP_CANT + 1"; -anywheresoftware.b4a.keywords.Common.LogImpl("870451206",("update reparto set REP_CANT = REP_CANT + 1 where REP_CLIENTE in (Select CUENTA from cuentaa) and REP_CLI_ORIG = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_RECHAZO = 0 and REP_PRODID = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'"),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270451206",("update reparto set REP_CANT = REP_CANT + 1 where REP_CLIENTE in (Select CUENTA from cuentaa) and REP_CLI_ORIG = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_RECHAZO = 0 and REP_PRODID = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'"),0); //BA.debugLineNum = 800;BA.debugLine="Starter.skmt.ExecNonQuery($\"update reparto set RE"; mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update reparto set REP_COSTO_TOT = REP_CANT * "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_precio))+", REP_PRECIO = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_precio))+"' where REP_CLIENTE in (Select CUENTA from cuentaa) and REP_CLI_ORIG = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_clienteoriginal))+"' and REP_RECHAZO = 0 and REP_PRODID = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+"'")); //BA.debugLineNum = 821;BA.debugLine="End Sub"; @@ -965,7 +965,7 @@ _kmt.ExecNonQuery("ALTER TABLE noventa ADD COLUMN NV_REPROGRAMAR TEXT"); } catch (Exception e19) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e19); //BA.debugLineNum = 218;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("867764247",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("267764247",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; }; //BA.debugLineNum = 221;BA.debugLine="End Sub"; @@ -975,7 +975,7 @@ public static String _revisaflp(anywheresoftware.b4a.BA _ba) throws Exception{ boolean _todobienflp = false; //BA.debugLineNum = 372;BA.debugLine="Sub revisaFLP 'ignore"; //BA.debugLineNum = 373;BA.debugLine="LogColor($\"**** **** Revisamos FLP - ${fechaKMT(D"; -anywheresoftware.b4a.keywords.Common.LogImpl("868616193",("**** **** Revisamos FLP - "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))))+"**** ****"),anywheresoftware.b4a.keywords.Common.Colors.RGB((int) (78),(int) (0),(int) (227))); +anywheresoftware.b4a.keywords.Common.LogImpl("268616193",("**** **** Revisamos FLP - "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))))+"**** ****"),anywheresoftware.b4a.keywords.Common.Colors.RGB((int) (78),(int) (0),(int) (227))); //BA.debugLineNum = 374;BA.debugLine="Private todoBienFLP As Boolean = True"; _todobienflp = anywheresoftware.b4a.keywords.Common.True; //BA.debugLineNum = 375;BA.debugLine="If Not(Tracker.FLP.IsInitialized) Then"; @@ -1010,7 +1010,7 @@ _todobienflp = anywheresoftware.b4a.keywords.Common.False; }; //BA.debugLineNum = 395;BA.debugLine="If todoBienFLP Then LogColor(\" +++ +++ Sin errore"; if (_todobienflp) { -anywheresoftware.b4a.keywords.Common.LogImpl("868616215"," +++ +++ Sin errores en FLP",anywheresoftware.b4a.keywords.Common.Colors.Green);}; +anywheresoftware.b4a.keywords.Common.LogImpl("268616215"," +++ +++ Sin errores en FLP",anywheresoftware.b4a.keywords.Common.Colors.Green);}; //BA.debugLineNum = 397;BA.debugLine="End Sub"; return ""; } @@ -1030,14 +1030,14 @@ if (mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.Fu _daa = (int) (mostCurrent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ .DistanceTo((android.location.Location)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getObject()))); //BA.debugLineNum = 362;BA.debugLine="If B4XPages.MainPage.Logger Then LogColor($\"****"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("868550660",("**** UUC \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_fechakmt(_ba,BA.NumberToString(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getTime()))))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getAccuracy()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getLatitude()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getLongitude()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getSpeed()))+"|"),anywheresoftware.b4a.keywords.Common.Colors.RGB((int) (255),(int) (112),(int) (35)));}; +anywheresoftware.b4a.keywords.Common.LogImpl("268550660",("**** UUC \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_fechakmt(_ba,BA.NumberToString(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getTime()))))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getAccuracy()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getLatitude()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getLongitude()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getSpeed()))+"|"),anywheresoftware.b4a.keywords.Common.Colors.RGB((int) (255),(int) (112),(int) (35)));}; //BA.debugLineNum = 363;BA.debugLine="If daa > 40 And Tracker.FLP.GetLastKnownLocation"; if (_daa>40 && mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getAccuracy()<35) { //BA.debugLineNum = 364;BA.debugLine="kmt.ExecNonQuery2(\"INSERT INTO RUTA_GPS(fecha,"; _kmt.ExecNonQuery2("INSERT INTO RUTA_GPS(fecha, lat, lon) VALUES (?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_fechakmt(_ba,BA.NumberToString(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getTime()))),(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getLatitude()),(Object)(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getLongitude())})); //BA.debugLineNum = 365;BA.debugLine="If B4XPages.MainPage.Logger Then Log(\"++++ Dist"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("868550663","++++ Distancia a anterior="+BA.NumberToString(_daa)+"|"+"Precision="+BA.NumberToString(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getAccuracy()),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("268550663","++++ Distancia a anterior="+BA.NumberToString(_daa)+"|"+"Precision="+BA.NumberToString(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getAccuracy()),0);}; }; //BA.debugLineNum = 367;BA.debugLine="Tracker.UUGCoords = Tracker.FLP.GetLastKnownLoca"; mostCurrent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ = mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation(); @@ -1102,7 +1102,7 @@ _cr.setPosition((int) (0)); _cant = (int)(Double.parseDouble(_cr.GetString("REP_CANT"))); }; //BA.debugLineNum = 764;BA.debugLine="Log($\"${cliente}, ${prodId}, rowcont:${cr.RowCoun"; -anywheresoftware.b4a.keywords.Common.LogImpl("870254599",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cliente))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+", rowcont:"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cr.getRowCount()))+", cant: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cant))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270254599",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cliente))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_prodid))+", rowcont:"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cr.getRowCount()))+", cant: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cant))+""),0); //BA.debugLineNum = 765;BA.debugLine="Return cant"; if (true) return _cant; //BA.debugLineNum = 766;BA.debugLine="End Sub"; @@ -1182,7 +1182,7 @@ _monto = (float) (_monto+((double)(Double.parseDouble(_ccym.GetString("REP_CANT" } }; //BA.debugLineNum = 905;BA.debugLine="Log($\"CANT=${cant}, MONTO=${monto}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("870647832",("CANT="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cant))+", MONTO="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_monto))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("270647832",("CANT="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cant))+", MONTO="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_monto))+""),0); }; //BA.debugLineNum = 908;BA.debugLine="ccym.Close"; _ccym.Close(); @@ -1205,7 +1205,7 @@ _cl = _cli.GetString("CUENTA"); //BA.debugLineNum = 726;BA.debugLine="cli.Close"; _cli.Close(); //BA.debugLineNum = 727;BA.debugLine="Log(\"Algo paso...\"& cl)"; -anywheresoftware.b4a.keywords.Common.LogImpl("870057989","Algo paso..."+_cl,0); +anywheresoftware.b4a.keywords.Common.LogImpl("270057989","Algo paso..."+_cl,0); //BA.debugLineNum = 728;BA.debugLine="Return cl"; if (true) return _cl; //BA.debugLineNum = 729;BA.debugLine="End Sub"; @@ -1295,7 +1295,7 @@ _fecha = anywheresoftware.b4a.keywords.Common.Regex.Split(" ",_c.GetString("HVD_ //BA.debugLineNum = 1029;BA.debugLine="Dim fecha3 As String = fecha(0)"; _fecha3 = _fecha[(int) (0)]; //BA.debugLineNum = 1030;BA.debugLine="Log(fecha3)"; -anywheresoftware.b4a.keywords.Common.LogImpl("871172106",_fecha3,0); +anywheresoftware.b4a.keywords.Common.LogImpl("271172106",_fecha3,0); //BA.debugLineNum = 1031;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1"; _hora = anywheresoftware.b4a.keywords.Common.Regex.Split("\\.",_fecha[(int) (1)]); //BA.debugLineNum = 1032;BA.debugLine="a = fecha3 & \" \" & hora(0)"; @@ -1312,7 +1312,7 @@ _fecha = anywheresoftware.b4a.keywords.Common.Regex.Split(" ",_c.GetString("HVD_ //BA.debugLineNum = 1038;BA.debugLine="Dim fecha3 As String = fecha(0)"; _fecha3 = _fecha[(int) (0)]; //BA.debugLineNum = 1039;BA.debugLine="Log(fecha3)"; -anywheresoftware.b4a.keywords.Common.LogImpl("871172115",_fecha3,0); +anywheresoftware.b4a.keywords.Common.LogImpl("271172115",_fecha3,0); //BA.debugLineNum = 1040;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1"; _hora = anywheresoftware.b4a.keywords.Common.Regex.Split("\\.",_fecha[(int) (1)]); //BA.debugLineNum = 1041;BA.debugLine="a = fecha3 & \" \" & hora(0)"; diff --git a/B4A/Objects/src/reparto_intmex/keymon/lat/tracker.java b/B4A/Objects/src/reparto_intmex/keymon/lat/tracker.java index a0bf6dd..c09acce 100644 --- a/B4A/Objects/src/reparto_intmex/keymon/lat/tracker.java +++ b/B4A/Objects/src/reparto_intmex/keymon/lat/tracker.java @@ -156,7 +156,7 @@ uk.co.martinpearman.b4a.fusedlocationprovider.LocationRequest _lr = null; //BA.debugLineNum = 119;BA.debugLine="Private Sub CreateLocationRequest As LocationReque"; //BA.debugLineNum = 120;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"CreateLocat"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("871958529","CreateLocationRequest",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("271958529","CreateLocationRequest",0);}; //BA.debugLineNum = 121;BA.debugLine="Dim lr As LocationRequest"; _lr = new uk.co.martinpearman.b4a.fusedlocationprovider.LocationRequest(); //BA.debugLineNum = 122;BA.debugLine="lr.Initialize"; @@ -181,7 +181,7 @@ uk.co.martinpearman.b4a.fusedlocationprovider.LocationRequest _lr = null; //BA.debugLineNum = 131;BA.debugLine="Private Sub CreateLocationRequest2times As Locatio"; //BA.debugLineNum = 132;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"Iniciamos C"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("872024065","Iniciamos CreateLocationRequest2times",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("272024065","Iniciamos CreateLocationRequest2times",0);}; //BA.debugLineNum = 133;BA.debugLine="Dim lr As LocationRequest"; _lr = new uk.co.martinpearman.b4a.fusedlocationprovider.LocationRequest(); //BA.debugLineNum = 134;BA.debugLine="lr.Initialize"; @@ -226,7 +226,7 @@ String _coords = ""; if (_flp.GetLastKnownLocation().IsInitialized()) { //BA.debugLineNum = 147;BA.debugLine="If B4XPages.MainPage.Logger Then LogColor($\"Mand"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("872089603",("Mandamos UUC \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._subs._fechakmt /*String*/ (processBA,BA.NumberToString(_flp.GetLastKnownLocation().getTime()))))+"|Acc:"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(_flp.GetLastKnownLocation().getAccuracy()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(_flp.GetLastKnownLocation().getLatitude()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(_flp.GetLastKnownLocation().getLongitude()))+"|Spd:"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(_flp.GetLastKnownLocation().getSpeed()))+"|"),anywheresoftware.b4a.keywords.Common.Colors.RGB((int) (255),(int) (112),(int) (35)));}; +anywheresoftware.b4a.keywords.Common.LogImpl("272089603",("Mandamos UUC \""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._subs._fechakmt /*String*/ (processBA,BA.NumberToString(_flp.GetLastKnownLocation().getTime()))))+"|Acc:"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(_flp.GetLastKnownLocation().getAccuracy()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(_flp.GetLastKnownLocation().getLatitude()))+"|"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.8",(Object)(_flp.GetLastKnownLocation().getLongitude()))+"|Spd:"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("0.2",(Object)(_flp.GetLastKnownLocation().getSpeed()))+"|"),anywheresoftware.b4a.keywords.Common.Colors.RGB((int) (255),(int) (112),(int) (35)));}; //BA.debugLineNum = 148;BA.debugLine="Dim coords As String = FLP.GetLastKnownLocation."; _coords = BA.NumberToString(_flp.GetLastKnownLocation().getLatitude())+","+BA.NumberToString(_flp.GetLastKnownLocation().getLongitude())+","+_formatofecha(BA.NumberToString(_flp.GetLastKnownLocation().getTime())); //BA.debugLineNum = 150;BA.debugLine="Subs.mandamosLoc(coords)"; @@ -239,7 +239,7 @@ public static String _flp_connectionfailed(int _connectionresult1) throws Excep //BA.debugLineNum = 59;BA.debugLine="Sub flp_ConnectionFailed(ConnectionResult1 As Int)"; //BA.debugLineNum = 60;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"Failed to c"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("871565313","Failed to connect to location provider",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("271565313","Failed to connect to location provider",0);}; //BA.debugLineNum = 61;BA.debugLine="End Sub"; return ""; } @@ -252,7 +252,7 @@ public static String _flp_connectionsuspended(int _connectionresult1) throws Ex //BA.debugLineNum = 63;BA.debugLine="Sub flp_ConnectionSuspended(ConnectionResult1 As I"; //BA.debugLineNum = 64;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"FLP conecti"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("871630849","FLP conection suspended",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("271630849","FLP conection suspended",0);}; //BA.debugLineNum = 65;BA.debugLine="StartFLP"; _startflp(); //BA.debugLineNum = 66;BA.debugLine="End Sub"; @@ -293,18 +293,18 @@ mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSE catch (Exception e14) { processBA.setLastException(e14); //BA.debugLineNum = 180;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"Error al b"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("872220690","Error al borrar o insertar nuevas coordendas en HIST_GPS",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("272220690","Error al borrar o insertar nuevas coordendas en HIST_GPS",0);}; }; //BA.debugLineNum = 183;BA.debugLine="Dim coords As String = Location1.Latitude&\",\"&Loc"; _coords = BA.NumberToString(_location1.getLatitude())+","+BA.NumberToString(_location1.getLongitude())+","+_formatofecha(BA.NumberToString(_location1.getTime())); //BA.debugLineNum = 184;BA.debugLine="Log(\"Loc changed : \"&Location1.Latitude&\",\"&Locat"; -anywheresoftware.b4a.keywords.Common.LogImpl("872220694","Loc changed : "+BA.NumberToString(_location1.getLatitude())+","+BA.NumberToString(_location1.getLongitude()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("272220694","Loc changed : "+BA.NumberToString(_location1.getLatitude())+","+BA.NumberToString(_location1.getLongitude()),0); //BA.debugLineNum = 185;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"Mandamos Ub"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("872220695","Mandamos Ubicacion",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("272220695","Mandamos Ubicacion",0);}; //BA.debugLineNum = 186;BA.debugLine="If B4XPages.MainPage.logger Then Log(locRequest)"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("872220696",_locrequest,0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("272220696",_locrequest,0);}; //BA.debugLineNum = 188;BA.debugLine="If Location1.Accuracy < 100 Then"; if (_location1.getAccuracy()<100) { //BA.debugLineNum = 189;BA.debugLine="Subs.guardaInfoEnBD(coords)'Escribimos coordenad"; @@ -322,7 +322,7 @@ _minsdif = (int) ((double)(Double.parseDouble(anywheresoftware.b4a.keywords.Comm if (_location1.getAccuracy()<100 && _minsdif>240) { //BA.debugLineNum = 198;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"actualizam"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("872220708","actualizamos Ubicacion Web",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("272220708","actualizamos Ubicacion Web",0);}; //BA.debugLineNum = 199;BA.debugLine="CallSubDelayed(Starter, \"ENVIA_ULTIMA_GPS\")"; anywheresoftware.b4a.keywords.Common.CallSubDelayed(processBA,(Object)(mostCurrent._starter.getObject()),"ENVIA_ULTIMA_GPS"); }; @@ -412,7 +412,7 @@ return ""; public static String _service_start(anywheresoftware.b4a.objects.IntentWrapper _startingintent) throws Exception{ //BA.debugLineNum = 68;BA.debugLine="Sub Service_Start (StartingIntent As Intent)"; //BA.debugLineNum = 69;BA.debugLine="LogColor(\"Iniciando Tracker ...\", Colors.Green)"; -anywheresoftware.b4a.keywords.Common.LogImpl("871696385","Iniciando Tracker ...",anywheresoftware.b4a.keywords.Common.Colors.Green); +anywheresoftware.b4a.keywords.Common.LogImpl("271696385","Iniciando Tracker ...",anywheresoftware.b4a.keywords.Common.Colors.Green); //BA.debugLineNum = 70;BA.debugLine="Service.StopAutomaticForeground"; mostCurrent._service.StopAutomaticForeground(); //BA.debugLineNum = 72;BA.debugLine="StartServiceAt(Me, DateTime.Now + 10 * DateTime.T"; @@ -519,7 +519,7 @@ this.state = 3; case 3: //C this.state = 6; -anywheresoftware.b4a.keywords.Common.LogImpl("871892993","StartFLP - flpStarted="+BA.ObjectToString(parent._flpstarted),0); +anywheresoftware.b4a.keywords.Common.LogImpl("271892993","StartFLP - flpStarted="+BA.ObjectToString(parent._flpstarted),0); if (true) break; case 6: @@ -562,7 +562,7 @@ this.state = 12; case 12: //C this.state = 15; -anywheresoftware.b4a.keywords.Common.LogImpl("871892996","sleeping GR",0); +anywheresoftware.b4a.keywords.Common.LogImpl("271892996","sleeping GR",0); if (true) break; case 15: @@ -592,7 +592,7 @@ this.state = 19; case 19: //C this.state = 22; -anywheresoftware.b4a.keywords.Common.LogImpl("871893000","Buscamos ubicacion 2 peticiones",0); +anywheresoftware.b4a.keywords.Common.LogImpl("271893000","Buscamos ubicacion 2 peticiones",0); if (true) break; case 22: @@ -612,7 +612,7 @@ this.state = 25; case 25: //C this.state = 28; -anywheresoftware.b4a.keywords.Common.LogImpl("871893001",BA.NumberToString(parent._actuallr.GetSmallestDisplacement()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("271893001",BA.NumberToString(parent._actuallr.GetSmallestDisplacement()),0); if (true) break; case 28: @@ -642,7 +642,7 @@ public static String _track() throws Exception{ //BA.debugLineNum = 78;BA.debugLine="Public Sub Track"; //BA.debugLineNum = 79;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"Inicia Trac"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("871761921","Inicia Track - Tracking : "+BA.ObjectToString(_tracking),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("271761921","Inicia Track - Tracking : "+BA.ObjectToString(_tracking),0);}; //BA.debugLineNum = 80;BA.debugLine="If Tracking Then"; if (_tracking) { //BA.debugLineNum = 82;BA.debugLine="Return 'Si ya estamos \"rastreando\" no hacemos na"; @@ -652,7 +652,7 @@ if (true) return ""; if (mostCurrent._starter._rp /*anywheresoftware.b4a.objects.RuntimePermissions*/ .Check(mostCurrent._starter._rp /*anywheresoftware.b4a.objects.RuntimePermissions*/ .PERMISSION_ACCESS_FINE_LOCATION)==anywheresoftware.b4a.keywords.Common.False) { //BA.debugLineNum = 85;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"No permiss"; if (mostCurrent._b4xpages._mainpage /*reparto_intmex.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("871761927","No permission",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("271761927","No permission",0);}; //BA.debugLineNum = 86;BA.debugLine="Return"; if (true) return ""; };