diff --git a/B4A/C_Cliente.bas b/B4A/C_Cliente.bas index 06c9850..5e9ede1 100644 --- a/B4A/C_Cliente.bas +++ b/B4A/C_Cliente.bas @@ -343,10 +343,11 @@ Sub Guardado d.Position = 0 Dim rutapre As String = d.GetString("CAT_CL_RUTA") d.Close - d = Starter.skmt.ExecQuery("SELECT HVD_FECHA FROM HIST_VENTAS WHERE HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)") - d.Position = 0 - Dim fechaprev As String = d.GetString("HVD_FECHA") - d.Close + +' d = Starter.skmt.ExecQuery("SELECT HVD_FECHA FROM HIST_VENTAS WHERE HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)") +' d.Position = 0 + Dim fechaprev As String = Subs.traefECHAPREV +' d.Close Dim rutaactualizar As String Dim rut As Cursor = Starter.skmt.ExecQuery("SELECT CAT_CL_RUTA FROM kmt_info WHERE CAT_CL_CODIGO IN (SELECT CUENTA FROM CUENTAA)") @@ -363,7 +364,7 @@ Sub Guardado mandaPendientesreparto - Dim mandamapa As Cursor = Starter.skmt.ExecQuery("SELECT * FROM kmt_info WHERE gestion = 0") + Dim mandamapa As Cursor = Starter.skmt.ExecQuery("SELECT * FROM kmt_info WHERE gestion = 0 and CAT_CL_CODIGO <> 63403") If mandamapa.RowCount > 0 Then StartActivity(MAPA_RUTAS) Else If mandamapa.RowCount = 0 Then @@ -393,7 +394,7 @@ Sub DATOS_Click End Sub Sub Guardar_Click - Dim mandamapa As Cursor = Starter.skmt.ExecQuery("SELECT * FROM kmt_info WHERE gestion = 0") + Dim mandamapa As Cursor = Starter.skmt.ExecQuery("SELECT * FROM kmt_info WHERE gestion = 0 AND cat_cl_codigo <> 63403") If mandamapa.RowCount > 0 Then StartActivity(MAPA_RUTAS) Else If mandamapa.RowCount = 0 Then diff --git a/B4A/C_Clientes.bas b/B4A/C_Clientes.bas index 89ea0be..9f65526 100644 --- a/B4A/C_Clientes.bas +++ b/B4A/C_Clientes.bas @@ -72,7 +72,7 @@ Sub B4XPage_Appear Else ListView1.Top = lv1Top + 100 End If - c=Starter.skmt.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 order by indice") + c=Starter.skmt.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") If c.RowCount > 0 Then 'Ya hay waypoints en la base de datos c.Position = 0 ' Log("Ya hay waypoints.") @@ -152,7 +152,7 @@ Sub ListView1_ItemClick (Position As Int, Value As Object) laRuta = lrt.SubString(6) 'Quitamos el texto "Ruta: " para obtener el numero de la ruta. Log($"Original: ${Value} - Mod: |${lrt.SubString(6)}| - laRuta: ${laRuta}"$) rutaacambiar = laRuta - c2 = Starter.skmt.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 order by CAT_CL_NOMBRE ", Array As String(laRuta)) + c2 = Starter.skmt.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 ", Array As String(laRuta)) Private thisLoc As Location Private label1 As Label Private label2 As Label @@ -211,7 +211,7 @@ Sub generaListViewRutas label2.TextSize = 15 label2.TextColor = Colors.Black ListView1.TwoLinesLayout.ItemHeight = 60dip - c=Starter.skmt.ExecQuery("select CAT_CL_RUTA, count(*) as cuantos from kmt_info where gestion = 0 group by CAT_CL_RUTA order by CAT_CL_RUTA asc") + c=Starter.skmt.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") If c.RowCount>0 Then ListView1.Clear For i=0 To c.RowCount -1 @@ -240,7 +240,7 @@ End Sub Sub BUSCA_TextChanged (Old As String, New As String) q_buscar = "%" & busca.Text & "%" - c2=Starter.skmt.ExecQuery2("select CAT_CL_NOMBRE, CAT_CL_CALLE, CAT_CL_CODIGO from kmt_info where CAT_CL_NOMBRE like ? and gestion = 0 order by CAT_CL_CODIGO ", Array As String(q_buscar)) + c2=Starter.skmt.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 ", Array As String(q_buscar)) ListView1.Clear lfila.text = "Nombre y Calle" Subs.SetDivider(ListView1, Colors.LightGray, 2) @@ -456,7 +456,7 @@ Sub traeRutaDia(aVisitar As B4XOrderedMap) entro = 3 Log("Generamos ListView1 en traeRutaDia") 'Traemos las visitas restantes ordenadas por el indice de waypoints (este indice nos indica el orden en la ruta calculada). - c=Starter.skmt.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 order by indice") + c=Starter.skmt.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") If c.RowCount > 0 Then For i=0 To c.RowCount -1 'Generamos el listView con la lista ordenada. c.Position=i @@ -536,13 +536,13 @@ Sub traeTodosAVisitar As B4XOrderedMap 'ignore thisLoc.Initialize clientesMapaO.Clear 'Traemos las rutas asignadas al repartidor. - c=Starter.skmt.ExecQuery("select CAT_CL_RUTA, count(*) as cuantos from kmt_info where gestion = 0 group by CAT_CL_RUTA order by CAT_CL_RUTA asc") + c=Starter.skmt.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") If c.RowCount>0 Then 'Traemos los clientes de cada ruta. For i=0 To c.RowCount -1 c.Position=i ' Log($"Renglones ruta: ${c.RowCount} - i=${i} - Ruta: ${c.GetString("CAT_CL_RUTA")}"$) - c2=Starter.skmt.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 order by CAT_CL_NOMBRE ", Array As String(c.GetString("CAT_CL_RUTA"))) + c2=Starter.skmt.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 ", Array As String(c.GetString("CAT_CL_RUTA"))) If c2.RowCount>0 Then For j=0 To c2.RowCount -1 'Generamos lista de clientes c2.Position=j @@ -638,7 +638,7 @@ Sub caculaRutaGPS(coords As List) Starter.skmt.ExecNonQuery($"update kmt_info set SECUENCIA = ${ti.Get("pos")} where CAT_CL_CODIGO = '${ti.Get("id").As(String).SubString(1)}'"$) ' Ponemos la secuencia con el orden del ruteo para poder verla en el mapa. Starter.skmt.ExecNonQuery($"insert into waypoints (codigo, indice) values ('${ti.Get("id").As(String).SubString(1)}', '${ti.Get("pos")}')"$) Next - c = Starter.skmt.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 order by indice") + c = Starter.skmt.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") If c.RowCount > 0 Then 'Ya hay waypoints en la base de datos. c.Position = 0 conMapa = True @@ -676,7 +676,7 @@ Sub todosAVisitar As List If entro = 3 Then sqlDeRuta = $"and CAT_CL_RUTA = '${laRuta}'"$ Private aVisitar, tmpList As List aVisitar.Initialize - Private coords As ResultSet = Starter.skmt.ExecQuery($"select CAT_CL_CODIGO, CAT_CL_LAT, CAT_CL_LONG from kmt_info where gestion = 0 ${sqlDeRuta}"$) + Private coords As ResultSet = Starter.skmt.ExecQuery($"select CAT_CL_CODIGO, CAT_CL_LAT, CAT_CL_LONG from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 500 ${sqlDeRuta}"$) Do While coords.NextRow tmpList.Initialize tmpList.AddAll(Array As String(coords.GetString("CAT_CL_CODIGO"), coords.GetString("CAT_CL_LONG"), coords.GetString("CAT_CL_LAT"))) diff --git a/B4A/C_Principal.bas b/B4A/C_Principal.bas index be5f8fb..bfcc6c3 100644 --- a/B4A/C_Principal.bas +++ b/B4A/C_Principal.bas @@ -94,6 +94,7 @@ Sub Class_Globals Private p_prod As Panel Private b_regreso As Button Private lv_prod_Prin As ListView + Private b_venta_emp As Button End Sub 'You can add more parameters here. @@ -117,10 +118,10 @@ Private Sub B4XPage_Created (Root1 As B4XView) b=Starter.skmt.ExecQuery("Select count(*) as CUANTOS from pedido_cliente") b.Position=0 Cuantos = b.GetString("CUANTOS") - d=Starter.skmt.ExecQuery("select count(*) as TOTAL_VISITAR from kmt_info where gestion = 0") + d=Starter.skmt.ExecQuery("select count(*) as TOTAL_VISITAR from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000") D.Position=0 b.Close - e=Starter.skmt.ExecQuery("select count(*) as POR_VISITAR from kmt_info") + e=Starter.skmt.ExecQuery("select count(*) as POR_VISITAR from kmt_info WHERE CAT_CL_RUTA <> 1000") e.Position=0 If Cuantos = 0 Then l_aLiquidar.Text = 0 @@ -209,7 +210,7 @@ Sub B4XPage_Appear l_ruta.Text = 0 l_rutasP.Text = 0 Else - f=Starter.skmt.ExecQuery("select distinct CAT_CL_RUTA from kmt_info order by CAT_CL_RUTA") + f=Starter.skmt.ExecQuery("select distinct CAT_CL_RUTA from kmt_info WHERE CAT_CL_RUTA <> 1000 order by CAT_CL_RUTA") ' f.Position=0 l_rutasP.Text = "" For i = 0 To f.RowCount - 1 @@ -227,10 +228,10 @@ Sub B4XPage_Appear b=Starter.skmt.ExecQuery("Select count(*) as CUANTOS from kmt_info") b.Position=0 If b.RowCount > 0 Then Cuantos = b.GetString("CUANTOS") - d=Starter.skmt.ExecQuery("select count(*) as TOTAL_VISITAR from kmt_info where gestion = 0") + d=Starter.skmt.ExecQuery("select count(*) as TOTAL_VISITAR from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000") D.Position=0 b.Close - e=Starter.skmt.ExecQuery("select count(*) as POR_VISITAR from kmt_info") + e=Starter.skmt.ExecQuery("select count(*) as POR_VISITAR from kmt_info WHERE CAT_CL_RUTA <> 1000") e.Position=0 ' f=Starter.skmt.ExecQuery("select count(*) as CAT_CL_RUTA from kmt_info") ' f.Position=0 @@ -267,9 +268,9 @@ Sub B4XPage_Appear f1=Starter.skmt.ExecQuery("select sum(hvd_costo_tot) as MONTO_TOTAL_DIA from hist_ventas2 where hvd_cliente in (select cat_cl_codigo from kmt_info ) AND HVD_RECHAZO = 0") f2=Starter.skmt.ExecQuery("select sum(REP_COSTO_TOT) as MONTO_REC_DIA FROM REPARTO where REP_cliente in (Select cat_cl_codigo from kmt_info)") ' b=Starter.skmt.ExecQuery("select count(*) as CUANTOS from noventa where nv_cliente in (select cat_cl_codigo from kmt_info where gestion = 3)") - b=Starter.skmt.ExecQuery("select count(DISTINCT NV_CLIENTE) as CUANTOS from noventa where nv_motivo <> 'ENTREGA'") + b=Starter.skmt.ExecQuery("select count(DISTINCT NV_CLIENTE) as CUANTOS from noventa where nv_motivo <> 'ENTREGA' and NV_CLIENTE <> 63403") ' L=Starter.skmt.ExecQuery("select count(*) as CLIENTES_DIA from noventa where nv_cliente in (select cat_cl_codigo from kmt_info where gestion = 2)") - L=Starter.skmt.ExecQuery("select count(DISTINCT NV_CLIENTE) as CLIENTES_DIA from noventa where nv_motivo = 'ENTREGA'") + L=Starter.skmt.ExecQuery("select count(DISTINCT NV_CLIENTE) as CLIENTES_DIA from noventa where nv_motivo = 'ENTREGA' and NV_CLIENTE <> 63403") f2.Position=0 ' F4=Starter.skmt.execqUery("select count(*) as CUANTOS FROM PEDIDO") ' F4.Position = 0 @@ -594,9 +595,18 @@ Sub B4XPage_Appear If l_ctast.Text = 0 And l_porvisitar.Text <> 0 Then Label9.Visible = True L_MONTOE.Visible = True + + '' hacer validacion su hay rechazo + c=Starter.skmt.ExecQuery("select * from HIST_VENTAS WHERE hvd_rechazo <> 2 and HVD_RECHAZOCANT > 0 order by HVD_CODPROMO desc, HVD_PRONOMBRE asc") + If c.RowCount > 0 Then + b_venta_emp.Visible = True + Else + b_venta_emp.Visible = False + End If Else Label9.Visible = False L_MONTOE.Visible = False + b_venta_emp.Visible = False End If ' If l_ctast.Text = 0 Then @@ -671,6 +681,9 @@ Sub Subir_Click End Sub Sub envioinfo + + + ' NOVENTA c = Starter.skmt.ExecQuery("SELECT NV_CLIENTE,NV_FECHA,NV_USER,NV_MOTIVO,NV_COMM,NV_LAT,NV_LON, NV_FOTO FROM NOVENTA") D=Starter.skmt.ExecQuery("SELECT COUNT(*) AS CUANTOS_NOVENTA FROM NOVENTA") @@ -805,9 +818,10 @@ Sub envioinfo If c.RowCount > 0 Then For i=0 To c.RowCount -1 c.Position = i + Log(c.GetString("HVD_CLIENTE")) Private d4 As Cursor = Starter.skmt.ExecQuery($"SELECT CAT_CL_RUTA FROM kmt_info WHERE CAT_CL_CODIGO = '${c.GetString("HVD_CLIENTE")}'"$) d4.Position = 0 - + Log(d4.GetString("CAT_CL_RUTA")) Private d5 As Cursor = Starter.skmt.ExecQuery($"SELECT IFNULL(Sum(PE_CANT),0) AS PE_CANT FROM PEDIDO WHERE PE_CLIENTEOR = '${c.GetString("HVD_CLIENTE")}' AND PE_PROID = '${c.GetString("HVD_PROID")}' AND CONSECUTIVO = '${c.GetString("CONSECUTIVO")}'"$) d5.Position = 0 Private restacant As String = d5.GetString("PE_CANT") @@ -834,6 +848,7 @@ Sub envioinfo Else cmd.Initialize cmd.Name = "update_HVD_MAZAPArep2" + Log( c.GetString("CANTC")& c.GetString("HVD_CLIENTE")& c.GetString("HVD_PROID")&fecha3&" "&hora(0)& d4.GetString("CAT_CL_RUTA")&ALMACEN&l_ruta.Text&c.GetString("HVD_CODPROMO")&c.GetString("HVD_NUM_TICKET")& c.GetString("HVD_CANT")) cmd.Parameters = Array As String("",c.GetString("BCAJAS"), c.GetString("CANTC"),"","", c.GetString("HVD_CLIENTE"), c.GetString("HVD_PROID"),fecha3&" "&hora(0), d4.GetString("CAT_CL_RUTA"),ALMACEN,l_ruta.Text,c.GetString("HVD_CODPROMO"),c.GetString("HVD_NUM_TICKET"), c.GetString("HVD_CANT")) reqManager.ExecuteCommand(cmd, "update_hvd") End If @@ -1047,6 +1062,7 @@ Sub JobDone(Job As HttpJob) ' Log(reqs.Size) End If Starter.skmt.BeginTransaction +' If reqManager.HandleJob(Job).Rows.Size > 0 Then For Each records() As Object In result.Rows Dim CAT_CL_CODIGO As String = records(result.Columns.Get("CAT_CL_CODIGO")) Dim CAT_CL_RUTA As String = records(result.Columns.Get("CAT_CL_RUTA")) @@ -1071,6 +1087,8 @@ Sub JobDone(Job As HttpJob) ' Log(" ++ insert into kmt_info: "&CAT_CL_RUTA&","&CAT_CL_CODIGO&","&CAT_CL_RUTA&","&CAT_CL_NOMBRE) Starter.skmt.ExecNonQuery2("INSERT INTO kmt_info(CAT_CL_CODIGO,CAT_CL_RUTA,CAT_CL_NOMBRE,CAT_CL_ATIENDE1,CAT_CL_ATIENTE2,CAT_CL_TELEFONO,CAT_CL_EMAIL,CAT_CL_CALLE,CAT_CL_NOEXT,CAT_CL_NOINT,CAT_CL_CALLE1,CAT_CL_CALLE2,CAT_CL_COLONIA,CAT_CL_MUNI,CAT_CL_EDO,CAT_CL_CP,CAT_CL_LONG,CAT_CL_LAT,CAT_CL_BCREDITO, gestion,SECUENCIA) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,0,?)", Array As Object (CAT_CL_CODIGO,CAT_CL_RUTA,CAT_CL_NOMBRE,CAT_CL_ATIENDE1,CAT_CL_ATIENTE2,CAT_CL_TELEFONO,CAT_CL_EMAIL,CAT_CL_CALLE,CAT_CL_NOEXT,CAT_CL_NOINT,CAT_CL_CALLE1,CAT_CL_CALLE2,CAT_CL_COLONIA,CAT_CL_MUNI,CAT_CL_EDO,CAT_CL_CP,CAT_CL_LONG,CAT_CL_LAT,CAT_CL_BCREDITO,CAT_CL_SECUENCIA)) Next + Starter.skmt.ExecNonQuery2("INSERT INTO kmt_info(CAT_CL_CODIGO,CAT_CL_RUTA,CAT_CL_NOMBRE,CAT_CL_ATIENDE1,CAT_CL_ATIENTE2,CAT_CL_TELEFONO,CAT_CL_EMAIL,CAT_CL_CALLE,CAT_CL_NOEXT,CAT_CL_NOINT,CAT_CL_CALLE1,CAT_CL_CALLE2,CAT_CL_COLONIA,CAT_CL_MUNI,CAT_CL_EDO,CAT_CL_CP,CAT_CL_LONG,CAT_CL_LAT,CAT_CL_BCREDITO, gestion,SECUENCIA) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,0,?)", Array As Object (63403,1000, "VENTA RECHAZO","","","","","","","","","","","","","","-98.8357694","19.6906052","0","1")) +' End If Starter.skmt.TransactionSuccessful Starter.skmt.EndTransaction Listo1 = 1 @@ -1572,7 +1590,7 @@ Sub connecta_Click reqManager.ExecuteQuery(cmd , 0, "version") Dim cmd As DBCommand cmd.Initialize - cmd.Name = "select_ruta_re_REPG_MAZAPA5" + cmd.Name = "select_ruta_re_REPG_MAZAPA6" cmd.Parameters = Array As Object(ALMACEN, e_ruta.text, imei) ' Log($"${ALMACEN}, ${e_ruta.text}, ${imei}"$) reqManager.ExecuteQuery(cmd , 0, "ruta") @@ -1975,4 +1993,10 @@ End Sub Private Sub p_prod_Click +End Sub + +Private Sub b_venta_emp_Click + Starter.skmt.ExecNonQuery("delete from CUENTAA") + Starter.skmt.ExecNonQuery2("INSERT INTO CUENTAA VALUES (?)", Array As Object("63403")) + B4XPages.ShowPage("Cliente") End Sub \ No newline at end of file diff --git a/B4A/Files/0marker-azul5.png b/B4A/Files/0marker-azul5.png new file mode 100644 index 0000000..433a77e Binary files /dev/null and b/B4A/Files/0marker-azul5.png differ diff --git a/B4A/Files/0marker-azul7.png b/B4A/Files/0marker-azul7.png new file mode 100644 index 0000000..c79ba33 Binary files /dev/null and b/B4A/Files/0marker-azul7.png differ diff --git a/B4A/Files/0marker-azul8.png b/B4A/Files/0marker-azul8.png new file mode 100644 index 0000000..11136d5 Binary files /dev/null and b/B4A/Files/0marker-azul8.png differ diff --git a/B4A/Files/100marker-azul5.png b/B4A/Files/100marker-azul5.png new file mode 100644 index 0000000..f3dafd6 Binary files /dev/null and b/B4A/Files/100marker-azul5.png differ diff --git a/B4A/Files/100marker-azul7.png b/B4A/Files/100marker-azul7.png new file mode 100644 index 0000000..f42c77c Binary files /dev/null and b/B4A/Files/100marker-azul7.png differ diff --git a/B4A/Files/100marker-azul8.png b/B4A/Files/100marker-azul8.png new file mode 100644 index 0000000..8390200 Binary files /dev/null and b/B4A/Files/100marker-azul8.png differ diff --git a/B4A/Files/101marker-azul5.png b/B4A/Files/101marker-azul5.png new file mode 100644 index 0000000..4ef8d85 Binary files /dev/null and b/B4A/Files/101marker-azul5.png differ diff --git a/B4A/Files/101marker-azul7.png b/B4A/Files/101marker-azul7.png new file mode 100644 index 0000000..aaad781 Binary files /dev/null and b/B4A/Files/101marker-azul7.png differ diff --git a/B4A/Files/101marker-azul8.png b/B4A/Files/101marker-azul8.png new file mode 100644 index 0000000..fdc4656 Binary files /dev/null and b/B4A/Files/101marker-azul8.png differ diff --git a/B4A/Files/102marker-azul5.png b/B4A/Files/102marker-azul5.png new file mode 100644 index 0000000..6546ab4 Binary files /dev/null and b/B4A/Files/102marker-azul5.png differ diff --git a/B4A/Files/102marker-azul7.png b/B4A/Files/102marker-azul7.png new file mode 100644 index 0000000..885fda2 Binary files /dev/null and b/B4A/Files/102marker-azul7.png differ diff --git a/B4A/Files/102marker-azul8.png b/B4A/Files/102marker-azul8.png new file mode 100644 index 0000000..14997cd Binary files /dev/null and b/B4A/Files/102marker-azul8.png differ diff --git a/B4A/Files/103marker-azul5.png b/B4A/Files/103marker-azul5.png new file mode 100644 index 0000000..b518025 Binary files /dev/null and b/B4A/Files/103marker-azul5.png differ diff --git a/B4A/Files/103marker-azul7.png b/B4A/Files/103marker-azul7.png new file mode 100644 index 0000000..2996112 Binary files /dev/null and b/B4A/Files/103marker-azul7.png differ diff --git a/B4A/Files/103marker-azul8.png b/B4A/Files/103marker-azul8.png new file mode 100644 index 0000000..88e191f Binary files /dev/null and b/B4A/Files/103marker-azul8.png differ diff --git a/B4A/Files/104marker-azul5.png b/B4A/Files/104marker-azul5.png new file mode 100644 index 0000000..8c8b91a Binary files /dev/null and b/B4A/Files/104marker-azul5.png differ diff --git a/B4A/Files/104marker-azul7.png b/B4A/Files/104marker-azul7.png new file mode 100644 index 0000000..6d12ee2 Binary files /dev/null and b/B4A/Files/104marker-azul7.png differ diff --git a/B4A/Files/104marker-azul8.png b/B4A/Files/104marker-azul8.png new file mode 100644 index 0000000..ae48ab5 Binary files /dev/null and b/B4A/Files/104marker-azul8.png differ diff --git a/B4A/Files/105marker-azul5.png b/B4A/Files/105marker-azul5.png new file mode 100644 index 0000000..6a915c2 Binary files /dev/null and b/B4A/Files/105marker-azul5.png differ diff --git a/B4A/Files/105marker-azul7.png b/B4A/Files/105marker-azul7.png new file mode 100644 index 0000000..cfaa9f6 Binary files /dev/null and b/B4A/Files/105marker-azul7.png differ diff --git a/B4A/Files/105marker-azul8.png b/B4A/Files/105marker-azul8.png new file mode 100644 index 0000000..55383c6 Binary files /dev/null and b/B4A/Files/105marker-azul8.png differ diff --git a/B4A/Files/106marker-azul5.png b/B4A/Files/106marker-azul5.png new file mode 100644 index 0000000..66912e5 Binary files /dev/null and b/B4A/Files/106marker-azul5.png differ diff --git a/B4A/Files/106marker-azul7.png b/B4A/Files/106marker-azul7.png new file mode 100644 index 0000000..a52b4cf Binary files /dev/null and b/B4A/Files/106marker-azul7.png differ diff --git a/B4A/Files/106marker-azul8.png b/B4A/Files/106marker-azul8.png new file mode 100644 index 0000000..5e65624 Binary files /dev/null and b/B4A/Files/106marker-azul8.png differ diff --git a/B4A/Files/107marker-azul5.png b/B4A/Files/107marker-azul5.png new file mode 100644 index 0000000..bce3be6 Binary files /dev/null and b/B4A/Files/107marker-azul5.png differ diff --git a/B4A/Files/107marker-azul7.png b/B4A/Files/107marker-azul7.png new file mode 100644 index 0000000..afc6c49 Binary files /dev/null and b/B4A/Files/107marker-azul7.png differ diff --git a/B4A/Files/107marker-azul8.png b/B4A/Files/107marker-azul8.png new file mode 100644 index 0000000..05a5e5d Binary files /dev/null and b/B4A/Files/107marker-azul8.png differ diff --git a/B4A/Files/108marker-azul5.png b/B4A/Files/108marker-azul5.png new file mode 100644 index 0000000..f7ed35e Binary files /dev/null and b/B4A/Files/108marker-azul5.png differ diff --git a/B4A/Files/108marker-azul7.png b/B4A/Files/108marker-azul7.png new file mode 100644 index 0000000..97c0f60 Binary files /dev/null and b/B4A/Files/108marker-azul7.png differ diff --git a/B4A/Files/108marker-azul8.png b/B4A/Files/108marker-azul8.png new file mode 100644 index 0000000..4f183d1 Binary files /dev/null and b/B4A/Files/108marker-azul8.png differ diff --git a/B4A/Files/109marker-azul5.png b/B4A/Files/109marker-azul5.png new file mode 100644 index 0000000..25b4cad Binary files /dev/null and b/B4A/Files/109marker-azul5.png differ diff --git a/B4A/Files/109marker-azul7.png b/B4A/Files/109marker-azul7.png new file mode 100644 index 0000000..7a8596a Binary files /dev/null and b/B4A/Files/109marker-azul7.png differ diff --git a/B4A/Files/109marker-azul8.png b/B4A/Files/109marker-azul8.png new file mode 100644 index 0000000..e301304 Binary files /dev/null and b/B4A/Files/109marker-azul8.png differ diff --git a/B4A/Files/10marker-azul5.png b/B4A/Files/10marker-azul5.png new file mode 100644 index 0000000..a6e00a2 Binary files /dev/null and b/B4A/Files/10marker-azul5.png differ diff --git a/B4A/Files/10marker-azul7.png b/B4A/Files/10marker-azul7.png new file mode 100644 index 0000000..be3583a Binary files /dev/null and b/B4A/Files/10marker-azul7.png differ diff --git a/B4A/Files/10marker-azul8.png b/B4A/Files/10marker-azul8.png new file mode 100644 index 0000000..f87e8ba Binary files /dev/null and b/B4A/Files/10marker-azul8.png differ diff --git a/B4A/Files/110marker-azul5.png b/B4A/Files/110marker-azul5.png new file mode 100644 index 0000000..a6f2714 Binary files /dev/null and b/B4A/Files/110marker-azul5.png differ diff --git a/B4A/Files/110marker-azul7.png b/B4A/Files/110marker-azul7.png new file mode 100644 index 0000000..f3d4b85 Binary files /dev/null and b/B4A/Files/110marker-azul7.png differ diff --git a/B4A/Files/110marker-azul8.png b/B4A/Files/110marker-azul8.png new file mode 100644 index 0000000..1eb2be1 Binary files /dev/null and b/B4A/Files/110marker-azul8.png differ diff --git a/B4A/Files/111marker-azul5.png b/B4A/Files/111marker-azul5.png new file mode 100644 index 0000000..6320f8e Binary files /dev/null and b/B4A/Files/111marker-azul5.png differ diff --git a/B4A/Files/111marker-azul7.png b/B4A/Files/111marker-azul7.png new file mode 100644 index 0000000..edbc089 Binary files /dev/null and b/B4A/Files/111marker-azul7.png differ diff --git a/B4A/Files/111marker-azul8.png b/B4A/Files/111marker-azul8.png new file mode 100644 index 0000000..871c83a Binary files /dev/null and b/B4A/Files/111marker-azul8.png differ diff --git a/B4A/Files/112marker-azul5.png b/B4A/Files/112marker-azul5.png new file mode 100644 index 0000000..80cecba Binary files /dev/null and b/B4A/Files/112marker-azul5.png differ diff --git a/B4A/Files/112marker-azul7.png b/B4A/Files/112marker-azul7.png new file mode 100644 index 0000000..a4314d9 Binary files /dev/null and b/B4A/Files/112marker-azul7.png differ diff --git a/B4A/Files/112marker-azul8.png b/B4A/Files/112marker-azul8.png new file mode 100644 index 0000000..3b5c8bb Binary files /dev/null and b/B4A/Files/112marker-azul8.png differ diff --git a/B4A/Files/113marker-azul5.png b/B4A/Files/113marker-azul5.png new file mode 100644 index 0000000..92b283f Binary files /dev/null and b/B4A/Files/113marker-azul5.png differ diff --git a/B4A/Files/113marker-azul7.png b/B4A/Files/113marker-azul7.png new file mode 100644 index 0000000..62b4cfb Binary files /dev/null and b/B4A/Files/113marker-azul7.png differ diff --git a/B4A/Files/113marker-azul8.png b/B4A/Files/113marker-azul8.png new file mode 100644 index 0000000..f44f18b Binary files /dev/null and b/B4A/Files/113marker-azul8.png differ diff --git a/B4A/Files/114marker-azul5.png b/B4A/Files/114marker-azul5.png new file mode 100644 index 0000000..74ce3d1 Binary files /dev/null and b/B4A/Files/114marker-azul5.png differ diff --git a/B4A/Files/114marker-azul7.png b/B4A/Files/114marker-azul7.png new file mode 100644 index 0000000..33a388d Binary files /dev/null and b/B4A/Files/114marker-azul7.png differ diff --git a/B4A/Files/114marker-azul8.png b/B4A/Files/114marker-azul8.png new file mode 100644 index 0000000..f1242e1 Binary files /dev/null and b/B4A/Files/114marker-azul8.png differ diff --git a/B4A/Files/115marker-azul5.png b/B4A/Files/115marker-azul5.png new file mode 100644 index 0000000..5c98ca0 Binary files /dev/null and b/B4A/Files/115marker-azul5.png differ diff --git a/B4A/Files/115marker-azul7.png b/B4A/Files/115marker-azul7.png new file mode 100644 index 0000000..8fd5595 Binary files /dev/null and b/B4A/Files/115marker-azul7.png differ diff --git a/B4A/Files/115marker-azul8.png b/B4A/Files/115marker-azul8.png new file mode 100644 index 0000000..a08f14d Binary files /dev/null and b/B4A/Files/115marker-azul8.png differ diff --git a/B4A/Files/116marker-azul5.png b/B4A/Files/116marker-azul5.png new file mode 100644 index 0000000..b9186ac Binary files /dev/null and b/B4A/Files/116marker-azul5.png differ diff --git a/B4A/Files/116marker-azul7.png b/B4A/Files/116marker-azul7.png new file mode 100644 index 0000000..38fab29 Binary files /dev/null and b/B4A/Files/116marker-azul7.png differ diff --git a/B4A/Files/116marker-azul8.png b/B4A/Files/116marker-azul8.png new file mode 100644 index 0000000..96b82ca Binary files /dev/null and b/B4A/Files/116marker-azul8.png differ diff --git a/B4A/Files/117marker-azul5.png b/B4A/Files/117marker-azul5.png new file mode 100644 index 0000000..ec2e80b Binary files /dev/null and b/B4A/Files/117marker-azul5.png differ diff --git a/B4A/Files/117marker-azul7.png b/B4A/Files/117marker-azul7.png new file mode 100644 index 0000000..512c46b Binary files /dev/null and b/B4A/Files/117marker-azul7.png differ diff --git a/B4A/Files/117marker-azul8.png b/B4A/Files/117marker-azul8.png new file mode 100644 index 0000000..180f82a Binary files /dev/null and b/B4A/Files/117marker-azul8.png differ diff --git a/B4A/Files/118marker-azul5.png b/B4A/Files/118marker-azul5.png new file mode 100644 index 0000000..273d871 Binary files /dev/null and b/B4A/Files/118marker-azul5.png differ diff --git a/B4A/Files/118marker-azul7.png b/B4A/Files/118marker-azul7.png new file mode 100644 index 0000000..8c0b765 Binary files /dev/null and b/B4A/Files/118marker-azul7.png differ diff --git a/B4A/Files/118marker-azul8.png b/B4A/Files/118marker-azul8.png new file mode 100644 index 0000000..b1c09f4 Binary files /dev/null and b/B4A/Files/118marker-azul8.png differ diff --git a/B4A/Files/119marker-azul5.png b/B4A/Files/119marker-azul5.png new file mode 100644 index 0000000..1724b31 Binary files /dev/null and b/B4A/Files/119marker-azul5.png differ diff --git a/B4A/Files/119marker-azul7.png b/B4A/Files/119marker-azul7.png new file mode 100644 index 0000000..07d49eb Binary files /dev/null and b/B4A/Files/119marker-azul7.png differ diff --git a/B4A/Files/119marker-azul8.png b/B4A/Files/119marker-azul8.png new file mode 100644 index 0000000..b59df6b Binary files /dev/null and b/B4A/Files/119marker-azul8.png differ diff --git a/B4A/Files/11marker-azul5.png b/B4A/Files/11marker-azul5.png new file mode 100644 index 0000000..3e84af6 Binary files /dev/null and b/B4A/Files/11marker-azul5.png differ diff --git a/B4A/Files/11marker-azul7.png b/B4A/Files/11marker-azul7.png new file mode 100644 index 0000000..70c8ea4 Binary files /dev/null and b/B4A/Files/11marker-azul7.png differ diff --git a/B4A/Files/11marker-azul8.png b/B4A/Files/11marker-azul8.png new file mode 100644 index 0000000..9ff43a6 Binary files /dev/null and b/B4A/Files/11marker-azul8.png differ diff --git a/B4A/Files/120marker-azul5.png b/B4A/Files/120marker-azul5.png new file mode 100644 index 0000000..f320198 Binary files /dev/null and b/B4A/Files/120marker-azul5.png differ diff --git a/B4A/Files/120marker-azul7.png b/B4A/Files/120marker-azul7.png new file mode 100644 index 0000000..795e03e Binary files /dev/null and b/B4A/Files/120marker-azul7.png differ diff --git a/B4A/Files/120marker-azul8.png b/B4A/Files/120marker-azul8.png new file mode 100644 index 0000000..0d4af3a Binary files /dev/null and b/B4A/Files/120marker-azul8.png differ diff --git a/B4A/Files/121marker-azul5.png b/B4A/Files/121marker-azul5.png new file mode 100644 index 0000000..8c9aef3 Binary files /dev/null and b/B4A/Files/121marker-azul5.png differ diff --git a/B4A/Files/121marker-azul7.png b/B4A/Files/121marker-azul7.png new file mode 100644 index 0000000..055cdae Binary files /dev/null and b/B4A/Files/121marker-azul7.png differ diff --git a/B4A/Files/121marker-azul8.png b/B4A/Files/121marker-azul8.png new file mode 100644 index 0000000..66f68e5 Binary files /dev/null and b/B4A/Files/121marker-azul8.png differ diff --git a/B4A/Files/122marker-azul5.png b/B4A/Files/122marker-azul5.png new file mode 100644 index 0000000..3b387cf Binary files /dev/null and b/B4A/Files/122marker-azul5.png differ diff --git a/B4A/Files/122marker-azul7.png b/B4A/Files/122marker-azul7.png new file mode 100644 index 0000000..28f5a18 Binary files /dev/null and b/B4A/Files/122marker-azul7.png differ diff --git a/B4A/Files/122marker-azul8.png b/B4A/Files/122marker-azul8.png new file mode 100644 index 0000000..244cf8d Binary files /dev/null and b/B4A/Files/122marker-azul8.png differ diff --git a/B4A/Files/123marker-azul5.png b/B4A/Files/123marker-azul5.png new file mode 100644 index 0000000..643d4d7 Binary files /dev/null and b/B4A/Files/123marker-azul5.png differ diff --git a/B4A/Files/123marker-azul7.png b/B4A/Files/123marker-azul7.png new file mode 100644 index 0000000..6773b19 Binary files /dev/null and b/B4A/Files/123marker-azul7.png differ diff --git a/B4A/Files/123marker-azul8.png b/B4A/Files/123marker-azul8.png new file mode 100644 index 0000000..4576dcd Binary files /dev/null and b/B4A/Files/123marker-azul8.png differ diff --git a/B4A/Files/124marker-azul5.png b/B4A/Files/124marker-azul5.png new file mode 100644 index 0000000..fe91124 Binary files /dev/null and b/B4A/Files/124marker-azul5.png differ diff --git a/B4A/Files/124marker-azul7.png b/B4A/Files/124marker-azul7.png new file mode 100644 index 0000000..ccd58fa Binary files /dev/null and b/B4A/Files/124marker-azul7.png differ diff --git a/B4A/Files/124marker-azul8.png b/B4A/Files/124marker-azul8.png new file mode 100644 index 0000000..0d6c8c9 Binary files /dev/null and b/B4A/Files/124marker-azul8.png differ diff --git a/B4A/Files/125marker-azul5.png b/B4A/Files/125marker-azul5.png new file mode 100644 index 0000000..8f1f260 Binary files /dev/null and b/B4A/Files/125marker-azul5.png differ diff --git a/B4A/Files/125marker-azul7.png b/B4A/Files/125marker-azul7.png new file mode 100644 index 0000000..4a64a28 Binary files /dev/null and b/B4A/Files/125marker-azul7.png differ diff --git a/B4A/Files/125marker-azul8.png b/B4A/Files/125marker-azul8.png new file mode 100644 index 0000000..f3def09 Binary files /dev/null and b/B4A/Files/125marker-azul8.png differ diff --git a/B4A/Files/126marker-azul5.png b/B4A/Files/126marker-azul5.png new file mode 100644 index 0000000..5741398 Binary files /dev/null and b/B4A/Files/126marker-azul5.png differ diff --git a/B4A/Files/126marker-azul7.png b/B4A/Files/126marker-azul7.png new file mode 100644 index 0000000..d239c41 Binary files /dev/null and b/B4A/Files/126marker-azul7.png differ diff --git a/B4A/Files/126marker-azul8.png b/B4A/Files/126marker-azul8.png new file mode 100644 index 0000000..1b52219 Binary files /dev/null and b/B4A/Files/126marker-azul8.png differ diff --git a/B4A/Files/127marker-azul5.png b/B4A/Files/127marker-azul5.png new file mode 100644 index 0000000..a6d556e Binary files /dev/null and b/B4A/Files/127marker-azul5.png differ diff --git a/B4A/Files/127marker-azul7.png b/B4A/Files/127marker-azul7.png new file mode 100644 index 0000000..100f2b0 Binary files /dev/null and b/B4A/Files/127marker-azul7.png differ diff --git a/B4A/Files/127marker-azul8.png b/B4A/Files/127marker-azul8.png new file mode 100644 index 0000000..ea90951 Binary files /dev/null and b/B4A/Files/127marker-azul8.png differ diff --git a/B4A/Files/128marker-azul5.png b/B4A/Files/128marker-azul5.png new file mode 100644 index 0000000..5e1372a Binary files /dev/null and b/B4A/Files/128marker-azul5.png differ diff --git a/B4A/Files/128marker-azul7.png b/B4A/Files/128marker-azul7.png new file mode 100644 index 0000000..a743f1e Binary files /dev/null and b/B4A/Files/128marker-azul7.png differ diff --git a/B4A/Files/128marker-azul8.png b/B4A/Files/128marker-azul8.png new file mode 100644 index 0000000..fd6a638 Binary files /dev/null and b/B4A/Files/128marker-azul8.png differ diff --git a/B4A/Files/129marker-azul5.png b/B4A/Files/129marker-azul5.png new file mode 100644 index 0000000..801579c Binary files /dev/null and b/B4A/Files/129marker-azul5.png differ diff --git a/B4A/Files/129marker-azul7.png b/B4A/Files/129marker-azul7.png new file mode 100644 index 0000000..c0a4ba6 Binary files /dev/null and b/B4A/Files/129marker-azul7.png differ diff --git a/B4A/Files/129marker-azul8.png b/B4A/Files/129marker-azul8.png new file mode 100644 index 0000000..9221196 Binary files /dev/null and b/B4A/Files/129marker-azul8.png differ diff --git a/B4A/Files/12marker-azul5.png b/B4A/Files/12marker-azul5.png new file mode 100644 index 0000000..0407279 Binary files /dev/null and b/B4A/Files/12marker-azul5.png differ diff --git a/B4A/Files/12marker-azul7.png b/B4A/Files/12marker-azul7.png new file mode 100644 index 0000000..09abfd9 Binary files /dev/null and b/B4A/Files/12marker-azul7.png differ diff --git a/B4A/Files/12marker-azul8.png b/B4A/Files/12marker-azul8.png new file mode 100644 index 0000000..564dc3d Binary files /dev/null and b/B4A/Files/12marker-azul8.png differ diff --git a/B4A/Files/130marker-azul5.png b/B4A/Files/130marker-azul5.png new file mode 100644 index 0000000..2eef454 Binary files /dev/null and b/B4A/Files/130marker-azul5.png differ diff --git a/B4A/Files/130marker-azul7.png b/B4A/Files/130marker-azul7.png new file mode 100644 index 0000000..3c4e966 Binary files /dev/null and b/B4A/Files/130marker-azul7.png differ diff --git a/B4A/Files/130marker-azul8.png b/B4A/Files/130marker-azul8.png new file mode 100644 index 0000000..20614e7 Binary files /dev/null and b/B4A/Files/130marker-azul8.png differ diff --git a/B4A/Files/131marker-azul5.png b/B4A/Files/131marker-azul5.png new file mode 100644 index 0000000..d1515b2 Binary files /dev/null and b/B4A/Files/131marker-azul5.png differ diff --git a/B4A/Files/131marker-azul7.png b/B4A/Files/131marker-azul7.png new file mode 100644 index 0000000..cc33bd8 Binary files /dev/null and b/B4A/Files/131marker-azul7.png differ diff --git a/B4A/Files/131marker-azul8.png b/B4A/Files/131marker-azul8.png new file mode 100644 index 0000000..a9ac5d3 Binary files /dev/null and b/B4A/Files/131marker-azul8.png differ diff --git a/B4A/Files/132marker-azul5.png b/B4A/Files/132marker-azul5.png new file mode 100644 index 0000000..5009917 Binary files /dev/null and b/B4A/Files/132marker-azul5.png differ diff --git a/B4A/Files/132marker-azul7.png b/B4A/Files/132marker-azul7.png new file mode 100644 index 0000000..7e76ee7 Binary files /dev/null and b/B4A/Files/132marker-azul7.png differ diff --git a/B4A/Files/132marker-azul8.png b/B4A/Files/132marker-azul8.png new file mode 100644 index 0000000..d2f7a18 Binary files /dev/null and b/B4A/Files/132marker-azul8.png differ diff --git a/B4A/Files/133marker-azul5.png b/B4A/Files/133marker-azul5.png new file mode 100644 index 0000000..a782b81 Binary files /dev/null and b/B4A/Files/133marker-azul5.png differ diff --git a/B4A/Files/133marker-azul7.png b/B4A/Files/133marker-azul7.png new file mode 100644 index 0000000..bb70d82 Binary files /dev/null and b/B4A/Files/133marker-azul7.png differ diff --git a/B4A/Files/133marker-azul8.png b/B4A/Files/133marker-azul8.png new file mode 100644 index 0000000..5c9a387 Binary files /dev/null and b/B4A/Files/133marker-azul8.png differ diff --git a/B4A/Files/134marker-azul5.png b/B4A/Files/134marker-azul5.png new file mode 100644 index 0000000..460e369 Binary files /dev/null and b/B4A/Files/134marker-azul5.png differ diff --git a/B4A/Files/134marker-azul7.png b/B4A/Files/134marker-azul7.png new file mode 100644 index 0000000..7813be8 Binary files /dev/null and b/B4A/Files/134marker-azul7.png differ diff --git a/B4A/Files/134marker-azul8.png b/B4A/Files/134marker-azul8.png new file mode 100644 index 0000000..018972e Binary files /dev/null and b/B4A/Files/134marker-azul8.png differ diff --git a/B4A/Files/135marker-azul5.png b/B4A/Files/135marker-azul5.png new file mode 100644 index 0000000..b21c527 Binary files /dev/null and b/B4A/Files/135marker-azul5.png differ diff --git a/B4A/Files/135marker-azul7.png b/B4A/Files/135marker-azul7.png new file mode 100644 index 0000000..1ca228f Binary files /dev/null and b/B4A/Files/135marker-azul7.png differ diff --git a/B4A/Files/135marker-azul8.png b/B4A/Files/135marker-azul8.png new file mode 100644 index 0000000..d0fdfbe Binary files /dev/null and b/B4A/Files/135marker-azul8.png differ diff --git a/B4A/Files/136marker-azul5.png b/B4A/Files/136marker-azul5.png new file mode 100644 index 0000000..42c5ada Binary files /dev/null and b/B4A/Files/136marker-azul5.png differ diff --git a/B4A/Files/136marker-azul7.png b/B4A/Files/136marker-azul7.png new file mode 100644 index 0000000..292172d Binary files /dev/null and b/B4A/Files/136marker-azul7.png differ diff --git a/B4A/Files/136marker-azul8.png b/B4A/Files/136marker-azul8.png new file mode 100644 index 0000000..4bece36 Binary files /dev/null and b/B4A/Files/136marker-azul8.png differ diff --git a/B4A/Files/137marker-azul5.png b/B4A/Files/137marker-azul5.png new file mode 100644 index 0000000..0190e39 Binary files /dev/null and b/B4A/Files/137marker-azul5.png differ diff --git a/B4A/Files/137marker-azul7.png b/B4A/Files/137marker-azul7.png new file mode 100644 index 0000000..dbe75e9 Binary files /dev/null and b/B4A/Files/137marker-azul7.png differ diff --git a/B4A/Files/137marker-azul8.png b/B4A/Files/137marker-azul8.png new file mode 100644 index 0000000..af8a987 Binary files /dev/null and b/B4A/Files/137marker-azul8.png differ diff --git a/B4A/Files/138marker-azul5.png b/B4A/Files/138marker-azul5.png new file mode 100644 index 0000000..f6bd9d3 Binary files /dev/null and b/B4A/Files/138marker-azul5.png differ diff --git a/B4A/Files/138marker-azul7.png b/B4A/Files/138marker-azul7.png new file mode 100644 index 0000000..6f22c05 Binary files /dev/null and b/B4A/Files/138marker-azul7.png differ diff --git a/B4A/Files/138marker-azul8.png b/B4A/Files/138marker-azul8.png new file mode 100644 index 0000000..fc9964f Binary files /dev/null and b/B4A/Files/138marker-azul8.png differ diff --git a/B4A/Files/139marker-azul5.png b/B4A/Files/139marker-azul5.png new file mode 100644 index 0000000..b1df72e Binary files /dev/null and b/B4A/Files/139marker-azul5.png differ diff --git a/B4A/Files/139marker-azul7.png b/B4A/Files/139marker-azul7.png new file mode 100644 index 0000000..250bfb1 Binary files /dev/null and b/B4A/Files/139marker-azul7.png differ diff --git a/B4A/Files/139marker-azul8.png b/B4A/Files/139marker-azul8.png new file mode 100644 index 0000000..6a47869 Binary files /dev/null and b/B4A/Files/139marker-azul8.png differ diff --git a/B4A/Files/13marker-azul5.png b/B4A/Files/13marker-azul5.png new file mode 100644 index 0000000..83653d3 Binary files /dev/null and b/B4A/Files/13marker-azul5.png differ diff --git a/B4A/Files/13marker-azul7.png b/B4A/Files/13marker-azul7.png new file mode 100644 index 0000000..25eb874 Binary files /dev/null and b/B4A/Files/13marker-azul7.png differ diff --git a/B4A/Files/13marker-azul8.png b/B4A/Files/13marker-azul8.png new file mode 100644 index 0000000..caefdc9 Binary files /dev/null and b/B4A/Files/13marker-azul8.png differ diff --git a/B4A/Files/140marker-azul5.png b/B4A/Files/140marker-azul5.png new file mode 100644 index 0000000..1994e5f Binary files /dev/null and b/B4A/Files/140marker-azul5.png differ diff --git a/B4A/Files/140marker-azul7.png b/B4A/Files/140marker-azul7.png new file mode 100644 index 0000000..748d5cd Binary files /dev/null and b/B4A/Files/140marker-azul7.png differ diff --git a/B4A/Files/140marker-azul8.png b/B4A/Files/140marker-azul8.png new file mode 100644 index 0000000..4567661 Binary files /dev/null and b/B4A/Files/140marker-azul8.png differ diff --git a/B4A/Files/141marker-azul5.png b/B4A/Files/141marker-azul5.png new file mode 100644 index 0000000..59e06a6 Binary files /dev/null and b/B4A/Files/141marker-azul5.png differ diff --git a/B4A/Files/141marker-azul7.png b/B4A/Files/141marker-azul7.png new file mode 100644 index 0000000..04fcfd0 Binary files /dev/null and b/B4A/Files/141marker-azul7.png differ diff --git a/B4A/Files/141marker-azul8.png b/B4A/Files/141marker-azul8.png new file mode 100644 index 0000000..d3a33b1 Binary files /dev/null and b/B4A/Files/141marker-azul8.png differ diff --git a/B4A/Files/142marker-azul5.png b/B4A/Files/142marker-azul5.png new file mode 100644 index 0000000..c507984 Binary files /dev/null and b/B4A/Files/142marker-azul5.png differ diff --git a/B4A/Files/142marker-azul7.png b/B4A/Files/142marker-azul7.png new file mode 100644 index 0000000..ddec712 Binary files /dev/null and b/B4A/Files/142marker-azul7.png differ diff --git a/B4A/Files/142marker-azul8.png b/B4A/Files/142marker-azul8.png new file mode 100644 index 0000000..65a416d Binary files /dev/null and b/B4A/Files/142marker-azul8.png differ diff --git a/B4A/Files/143marker-azul5.png b/B4A/Files/143marker-azul5.png new file mode 100644 index 0000000..0f32bb0 Binary files /dev/null and b/B4A/Files/143marker-azul5.png differ diff --git a/B4A/Files/143marker-azul7.png b/B4A/Files/143marker-azul7.png new file mode 100644 index 0000000..2db4f87 Binary files /dev/null and b/B4A/Files/143marker-azul7.png differ diff --git a/B4A/Files/143marker-azul8.png b/B4A/Files/143marker-azul8.png new file mode 100644 index 0000000..5d5b47c Binary files /dev/null and b/B4A/Files/143marker-azul8.png differ diff --git a/B4A/Files/144marker-azul5.png b/B4A/Files/144marker-azul5.png new file mode 100644 index 0000000..a98b6e1 Binary files /dev/null and b/B4A/Files/144marker-azul5.png differ diff --git a/B4A/Files/144marker-azul7.png b/B4A/Files/144marker-azul7.png new file mode 100644 index 0000000..8198203 Binary files /dev/null and b/B4A/Files/144marker-azul7.png differ diff --git a/B4A/Files/144marker-azul8.png b/B4A/Files/144marker-azul8.png new file mode 100644 index 0000000..ad7c21b Binary files /dev/null and b/B4A/Files/144marker-azul8.png differ diff --git a/B4A/Files/145marker-azul5.png b/B4A/Files/145marker-azul5.png new file mode 100644 index 0000000..134fec9 Binary files /dev/null and b/B4A/Files/145marker-azul5.png differ diff --git a/B4A/Files/145marker-azul7.png b/B4A/Files/145marker-azul7.png new file mode 100644 index 0000000..1656184 Binary files /dev/null and b/B4A/Files/145marker-azul7.png differ diff --git a/B4A/Files/145marker-azul8.png b/B4A/Files/145marker-azul8.png new file mode 100644 index 0000000..e9baa5f Binary files /dev/null and b/B4A/Files/145marker-azul8.png differ diff --git a/B4A/Files/146marker-azul5.png b/B4A/Files/146marker-azul5.png new file mode 100644 index 0000000..baa86f8 Binary files /dev/null and b/B4A/Files/146marker-azul5.png differ diff --git a/B4A/Files/146marker-azul7.png b/B4A/Files/146marker-azul7.png new file mode 100644 index 0000000..79acccc Binary files /dev/null and b/B4A/Files/146marker-azul7.png differ diff --git a/B4A/Files/146marker-azul8.png b/B4A/Files/146marker-azul8.png new file mode 100644 index 0000000..119e264 Binary files /dev/null and b/B4A/Files/146marker-azul8.png differ diff --git a/B4A/Files/147marker-azul5.png b/B4A/Files/147marker-azul5.png new file mode 100644 index 0000000..a40c9d4 Binary files /dev/null and b/B4A/Files/147marker-azul5.png differ diff --git a/B4A/Files/147marker-azul7.png b/B4A/Files/147marker-azul7.png new file mode 100644 index 0000000..c4eda7f Binary files /dev/null and b/B4A/Files/147marker-azul7.png differ diff --git a/B4A/Files/147marker-azul8.png b/B4A/Files/147marker-azul8.png new file mode 100644 index 0000000..e0cdca2 Binary files /dev/null and b/B4A/Files/147marker-azul8.png differ diff --git a/B4A/Files/148marker-azul5.png b/B4A/Files/148marker-azul5.png new file mode 100644 index 0000000..a977469 Binary files /dev/null and b/B4A/Files/148marker-azul5.png differ diff --git a/B4A/Files/148marker-azul7.png b/B4A/Files/148marker-azul7.png new file mode 100644 index 0000000..7b664f9 Binary files /dev/null and b/B4A/Files/148marker-azul7.png differ diff --git a/B4A/Files/148marker-azul8.png b/B4A/Files/148marker-azul8.png new file mode 100644 index 0000000..e432101 Binary files /dev/null and b/B4A/Files/148marker-azul8.png differ diff --git a/B4A/Files/149marker-azul5.png b/B4A/Files/149marker-azul5.png new file mode 100644 index 0000000..22a46fb Binary files /dev/null and b/B4A/Files/149marker-azul5.png differ diff --git a/B4A/Files/149marker-azul7.png b/B4A/Files/149marker-azul7.png new file mode 100644 index 0000000..80361e7 Binary files /dev/null and b/B4A/Files/149marker-azul7.png differ diff --git a/B4A/Files/149marker-azul8.png b/B4A/Files/149marker-azul8.png new file mode 100644 index 0000000..3ffd30b Binary files /dev/null and b/B4A/Files/149marker-azul8.png differ diff --git a/B4A/Files/14marker-azul5.png b/B4A/Files/14marker-azul5.png new file mode 100644 index 0000000..7cca4d1 Binary files /dev/null and b/B4A/Files/14marker-azul5.png differ diff --git a/B4A/Files/14marker-azul7.png b/B4A/Files/14marker-azul7.png new file mode 100644 index 0000000..e9031f2 Binary files /dev/null and b/B4A/Files/14marker-azul7.png differ diff --git a/B4A/Files/14marker-azul8.png b/B4A/Files/14marker-azul8.png new file mode 100644 index 0000000..80cd96a Binary files /dev/null and b/B4A/Files/14marker-azul8.png differ diff --git a/B4A/Files/150marker-azul5.png b/B4A/Files/150marker-azul5.png new file mode 100644 index 0000000..dfe9fcc Binary files /dev/null and b/B4A/Files/150marker-azul5.png differ diff --git a/B4A/Files/150marker-azul7.png b/B4A/Files/150marker-azul7.png new file mode 100644 index 0000000..b6f78dc Binary files /dev/null and b/B4A/Files/150marker-azul7.png differ diff --git a/B4A/Files/150marker-azul8.png b/B4A/Files/150marker-azul8.png new file mode 100644 index 0000000..c3f303c Binary files /dev/null and b/B4A/Files/150marker-azul8.png differ diff --git a/B4A/Files/15marker-azul5.png b/B4A/Files/15marker-azul5.png new file mode 100644 index 0000000..01f8221 Binary files /dev/null and b/B4A/Files/15marker-azul5.png differ diff --git a/B4A/Files/15marker-azul7.png b/B4A/Files/15marker-azul7.png new file mode 100644 index 0000000..5f172a9 Binary files /dev/null and b/B4A/Files/15marker-azul7.png differ diff --git a/B4A/Files/15marker-azul8.png b/B4A/Files/15marker-azul8.png new file mode 100644 index 0000000..0c45fd7 Binary files /dev/null and b/B4A/Files/15marker-azul8.png differ diff --git a/B4A/Files/16marker-azul5.png b/B4A/Files/16marker-azul5.png new file mode 100644 index 0000000..9e43a98 Binary files /dev/null and b/B4A/Files/16marker-azul5.png differ diff --git a/B4A/Files/16marker-azul7.png b/B4A/Files/16marker-azul7.png new file mode 100644 index 0000000..a651e9f Binary files /dev/null and b/B4A/Files/16marker-azul7.png differ diff --git a/B4A/Files/16marker-azul8.png b/B4A/Files/16marker-azul8.png new file mode 100644 index 0000000..d7b02b4 Binary files /dev/null and b/B4A/Files/16marker-azul8.png differ diff --git a/B4A/Files/17marker-azul5.png b/B4A/Files/17marker-azul5.png new file mode 100644 index 0000000..a1eeda2 Binary files /dev/null and b/B4A/Files/17marker-azul5.png differ diff --git a/B4A/Files/17marker-azul7.png b/B4A/Files/17marker-azul7.png new file mode 100644 index 0000000..0e9968f Binary files /dev/null and b/B4A/Files/17marker-azul7.png differ diff --git a/B4A/Files/17marker-azul8.png b/B4A/Files/17marker-azul8.png new file mode 100644 index 0000000..63f1a46 Binary files /dev/null and b/B4A/Files/17marker-azul8.png differ diff --git a/B4A/Files/18marker-azul5.png b/B4A/Files/18marker-azul5.png new file mode 100644 index 0000000..a32a8ec Binary files /dev/null and b/B4A/Files/18marker-azul5.png differ diff --git a/B4A/Files/18marker-azul7.png b/B4A/Files/18marker-azul7.png new file mode 100644 index 0000000..a54cbd0 Binary files /dev/null and b/B4A/Files/18marker-azul7.png differ diff --git a/B4A/Files/18marker-azul8.png b/B4A/Files/18marker-azul8.png new file mode 100644 index 0000000..7279aec Binary files /dev/null and b/B4A/Files/18marker-azul8.png differ diff --git a/B4A/Files/19marker-azul5.png b/B4A/Files/19marker-azul5.png new file mode 100644 index 0000000..b3135c8 Binary files /dev/null and b/B4A/Files/19marker-azul5.png differ diff --git a/B4A/Files/19marker-azul7.png b/B4A/Files/19marker-azul7.png new file mode 100644 index 0000000..9cadf02 Binary files /dev/null and b/B4A/Files/19marker-azul7.png differ diff --git a/B4A/Files/19marker-azul8.png b/B4A/Files/19marker-azul8.png new file mode 100644 index 0000000..0620f32 Binary files /dev/null and b/B4A/Files/19marker-azul8.png differ diff --git a/B4A/Files/1marker-azul5.png b/B4A/Files/1marker-azul5.png new file mode 100644 index 0000000..7106097 Binary files /dev/null and b/B4A/Files/1marker-azul5.png differ diff --git a/B4A/Files/1marker-azul7.png b/B4A/Files/1marker-azul7.png new file mode 100644 index 0000000..c0664ad Binary files /dev/null and b/B4A/Files/1marker-azul7.png differ diff --git a/B4A/Files/1marker-azul8.png b/B4A/Files/1marker-azul8.png new file mode 100644 index 0000000..f714bce Binary files /dev/null and b/B4A/Files/1marker-azul8.png differ diff --git a/B4A/Files/20marker-azul5.png b/B4A/Files/20marker-azul5.png new file mode 100644 index 0000000..a43df34 Binary files /dev/null and b/B4A/Files/20marker-azul5.png differ diff --git a/B4A/Files/20marker-azul7.png b/B4A/Files/20marker-azul7.png new file mode 100644 index 0000000..c4edaa8 Binary files /dev/null and b/B4A/Files/20marker-azul7.png differ diff --git a/B4A/Files/20marker-azul8.png b/B4A/Files/20marker-azul8.png new file mode 100644 index 0000000..1165e0c Binary files /dev/null and b/B4A/Files/20marker-azul8.png differ diff --git a/B4A/Files/21marker-azul5.png b/B4A/Files/21marker-azul5.png new file mode 100644 index 0000000..0e664a5 Binary files /dev/null and b/B4A/Files/21marker-azul5.png differ diff --git a/B4A/Files/21marker-azul7.png b/B4A/Files/21marker-azul7.png new file mode 100644 index 0000000..0f52bc7 Binary files /dev/null and b/B4A/Files/21marker-azul7.png differ diff --git a/B4A/Files/21marker-azul8.png b/B4A/Files/21marker-azul8.png new file mode 100644 index 0000000..8d45815 Binary files /dev/null and b/B4A/Files/21marker-azul8.png differ diff --git a/B4A/Files/22marker-azul5.png b/B4A/Files/22marker-azul5.png new file mode 100644 index 0000000..ddd79c5 Binary files /dev/null and b/B4A/Files/22marker-azul5.png differ diff --git a/B4A/Files/22marker-azul7.png b/B4A/Files/22marker-azul7.png new file mode 100644 index 0000000..9f3406b Binary files /dev/null and b/B4A/Files/22marker-azul7.png differ diff --git a/B4A/Files/22marker-azul8.png b/B4A/Files/22marker-azul8.png new file mode 100644 index 0000000..91809d7 Binary files /dev/null and b/B4A/Files/22marker-azul8.png differ diff --git a/B4A/Files/23marker-azul5.png b/B4A/Files/23marker-azul5.png new file mode 100644 index 0000000..3f661f1 Binary files /dev/null and b/B4A/Files/23marker-azul5.png differ diff --git a/B4A/Files/23marker-azul7.png b/B4A/Files/23marker-azul7.png new file mode 100644 index 0000000..07ee8ad Binary files /dev/null and b/B4A/Files/23marker-azul7.png differ diff --git a/B4A/Files/23marker-azul8.png b/B4A/Files/23marker-azul8.png new file mode 100644 index 0000000..896a9c4 Binary files /dev/null and b/B4A/Files/23marker-azul8.png differ diff --git a/B4A/Files/24marker-azul5.png b/B4A/Files/24marker-azul5.png new file mode 100644 index 0000000..27f695b Binary files /dev/null and b/B4A/Files/24marker-azul5.png differ diff --git a/B4A/Files/24marker-azul7.png b/B4A/Files/24marker-azul7.png new file mode 100644 index 0000000..fd03f29 Binary files /dev/null and b/B4A/Files/24marker-azul7.png differ diff --git a/B4A/Files/24marker-azul8.png b/B4A/Files/24marker-azul8.png new file mode 100644 index 0000000..1dc3c84 Binary files /dev/null and b/B4A/Files/24marker-azul8.png differ diff --git a/B4A/Files/25marker-azul5.png b/B4A/Files/25marker-azul5.png new file mode 100644 index 0000000..1d55d4f Binary files /dev/null and b/B4A/Files/25marker-azul5.png differ diff --git a/B4A/Files/25marker-azul7.png b/B4A/Files/25marker-azul7.png new file mode 100644 index 0000000..4842e2c Binary files /dev/null and b/B4A/Files/25marker-azul7.png differ diff --git a/B4A/Files/25marker-azul8.png b/B4A/Files/25marker-azul8.png new file mode 100644 index 0000000..cb6a555 Binary files /dev/null and b/B4A/Files/25marker-azul8.png differ diff --git a/B4A/Files/26marker-azul5.png b/B4A/Files/26marker-azul5.png new file mode 100644 index 0000000..6cb3984 Binary files /dev/null and b/B4A/Files/26marker-azul5.png differ diff --git a/B4A/Files/26marker-azul7.png b/B4A/Files/26marker-azul7.png new file mode 100644 index 0000000..41685a9 Binary files /dev/null and b/B4A/Files/26marker-azul7.png differ diff --git a/B4A/Files/26marker-azul8.png b/B4A/Files/26marker-azul8.png new file mode 100644 index 0000000..d90f0f7 Binary files /dev/null and b/B4A/Files/26marker-azul8.png differ diff --git a/B4A/Files/27marker-azul5.png b/B4A/Files/27marker-azul5.png new file mode 100644 index 0000000..2ac81f7 Binary files /dev/null and b/B4A/Files/27marker-azul5.png differ diff --git a/B4A/Files/27marker-azul7.png b/B4A/Files/27marker-azul7.png new file mode 100644 index 0000000..14fa443 Binary files /dev/null and b/B4A/Files/27marker-azul7.png differ diff --git a/B4A/Files/27marker-azul8.png b/B4A/Files/27marker-azul8.png new file mode 100644 index 0000000..fa0db8b Binary files /dev/null and b/B4A/Files/27marker-azul8.png differ diff --git a/B4A/Files/28marker-azul5.png b/B4A/Files/28marker-azul5.png new file mode 100644 index 0000000..9c3b41e Binary files /dev/null and b/B4A/Files/28marker-azul5.png differ diff --git a/B4A/Files/28marker-azul7.png b/B4A/Files/28marker-azul7.png new file mode 100644 index 0000000..99a13c2 Binary files /dev/null and b/B4A/Files/28marker-azul7.png differ diff --git a/B4A/Files/28marker-azul8.png b/B4A/Files/28marker-azul8.png new file mode 100644 index 0000000..73a1f63 Binary files /dev/null and b/B4A/Files/28marker-azul8.png differ diff --git a/B4A/Files/29marker-azul5.png b/B4A/Files/29marker-azul5.png new file mode 100644 index 0000000..7e6f122 Binary files /dev/null and b/B4A/Files/29marker-azul5.png differ diff --git a/B4A/Files/29marker-azul7.png b/B4A/Files/29marker-azul7.png new file mode 100644 index 0000000..771d91d Binary files /dev/null and b/B4A/Files/29marker-azul7.png differ diff --git a/B4A/Files/29marker-azul8.png b/B4A/Files/29marker-azul8.png new file mode 100644 index 0000000..bd8cf25 Binary files /dev/null and b/B4A/Files/29marker-azul8.png differ diff --git a/B4A/Files/2marker-azul5.png b/B4A/Files/2marker-azul5.png new file mode 100644 index 0000000..b0938dd Binary files /dev/null and b/B4A/Files/2marker-azul5.png differ diff --git a/B4A/Files/2marker-azul7.png b/B4A/Files/2marker-azul7.png new file mode 100644 index 0000000..4aa9911 Binary files /dev/null and b/B4A/Files/2marker-azul7.png differ diff --git a/B4A/Files/2marker-azul8.png b/B4A/Files/2marker-azul8.png new file mode 100644 index 0000000..a26f5f1 Binary files /dev/null and b/B4A/Files/2marker-azul8.png differ diff --git a/B4A/Files/30marker-azul5.png b/B4A/Files/30marker-azul5.png new file mode 100644 index 0000000..31d5a9e Binary files /dev/null and b/B4A/Files/30marker-azul5.png differ diff --git a/B4A/Files/30marker-azul7.png b/B4A/Files/30marker-azul7.png new file mode 100644 index 0000000..e98c826 Binary files /dev/null and b/B4A/Files/30marker-azul7.png differ diff --git a/B4A/Files/30marker-azul8.png b/B4A/Files/30marker-azul8.png new file mode 100644 index 0000000..ffeb69b Binary files /dev/null and b/B4A/Files/30marker-azul8.png differ diff --git a/B4A/Files/31marker-azul5.png b/B4A/Files/31marker-azul5.png new file mode 100644 index 0000000..c816781 Binary files /dev/null and b/B4A/Files/31marker-azul5.png differ diff --git a/B4A/Files/31marker-azul7.png b/B4A/Files/31marker-azul7.png new file mode 100644 index 0000000..6f71a90 Binary files /dev/null and b/B4A/Files/31marker-azul7.png differ diff --git a/B4A/Files/31marker-azul8.png b/B4A/Files/31marker-azul8.png new file mode 100644 index 0000000..835b1d6 Binary files /dev/null and b/B4A/Files/31marker-azul8.png differ diff --git a/B4A/Files/32marker-azul5.png b/B4A/Files/32marker-azul5.png new file mode 100644 index 0000000..7dc066a Binary files /dev/null and b/B4A/Files/32marker-azul5.png differ diff --git a/B4A/Files/32marker-azul7.png b/B4A/Files/32marker-azul7.png new file mode 100644 index 0000000..4b33b24 Binary files /dev/null and b/B4A/Files/32marker-azul7.png differ diff --git a/B4A/Files/32marker-azul8.png b/B4A/Files/32marker-azul8.png new file mode 100644 index 0000000..1ab9e0d Binary files /dev/null and b/B4A/Files/32marker-azul8.png differ diff --git a/B4A/Files/33marker-azul5.png b/B4A/Files/33marker-azul5.png new file mode 100644 index 0000000..787d337 Binary files /dev/null and b/B4A/Files/33marker-azul5.png differ diff --git a/B4A/Files/33marker-azul7.png b/B4A/Files/33marker-azul7.png new file mode 100644 index 0000000..544341b Binary files /dev/null and b/B4A/Files/33marker-azul7.png differ diff --git a/B4A/Files/33marker-azul8.png b/B4A/Files/33marker-azul8.png new file mode 100644 index 0000000..27dcc2f Binary files /dev/null and b/B4A/Files/33marker-azul8.png differ diff --git a/B4A/Files/34marker-azul5.png b/B4A/Files/34marker-azul5.png new file mode 100644 index 0000000..dfea94c Binary files /dev/null and b/B4A/Files/34marker-azul5.png differ diff --git a/B4A/Files/34marker-azul7.png b/B4A/Files/34marker-azul7.png new file mode 100644 index 0000000..dc76dd4 Binary files /dev/null and b/B4A/Files/34marker-azul7.png differ diff --git a/B4A/Files/34marker-azul8.png b/B4A/Files/34marker-azul8.png new file mode 100644 index 0000000..623b695 Binary files /dev/null and b/B4A/Files/34marker-azul8.png differ diff --git a/B4A/Files/35marker-azul5.png b/B4A/Files/35marker-azul5.png new file mode 100644 index 0000000..2dd9d94 Binary files /dev/null and b/B4A/Files/35marker-azul5.png differ diff --git a/B4A/Files/35marker-azul7.png b/B4A/Files/35marker-azul7.png new file mode 100644 index 0000000..d2d441b Binary files /dev/null and b/B4A/Files/35marker-azul7.png differ diff --git a/B4A/Files/35marker-azul8.png b/B4A/Files/35marker-azul8.png new file mode 100644 index 0000000..e3a7cbd Binary files /dev/null and b/B4A/Files/35marker-azul8.png differ diff --git a/B4A/Files/36marker-azul5.png b/B4A/Files/36marker-azul5.png new file mode 100644 index 0000000..7180e49 Binary files /dev/null and b/B4A/Files/36marker-azul5.png differ diff --git a/B4A/Files/36marker-azul7.png b/B4A/Files/36marker-azul7.png new file mode 100644 index 0000000..b0c7ae8 Binary files /dev/null and b/B4A/Files/36marker-azul7.png differ diff --git a/B4A/Files/36marker-azul8.png b/B4A/Files/36marker-azul8.png new file mode 100644 index 0000000..a4cf2f8 Binary files /dev/null and b/B4A/Files/36marker-azul8.png differ diff --git a/B4A/Files/37marker-azul5.png b/B4A/Files/37marker-azul5.png new file mode 100644 index 0000000..7aca5f5 Binary files /dev/null and b/B4A/Files/37marker-azul5.png differ diff --git a/B4A/Files/37marker-azul7.png b/B4A/Files/37marker-azul7.png new file mode 100644 index 0000000..391e5ad Binary files /dev/null and b/B4A/Files/37marker-azul7.png differ diff --git a/B4A/Files/37marker-azul8.png b/B4A/Files/37marker-azul8.png new file mode 100644 index 0000000..5882c7d Binary files /dev/null and b/B4A/Files/37marker-azul8.png differ diff --git a/B4A/Files/38marker-azul5.png b/B4A/Files/38marker-azul5.png new file mode 100644 index 0000000..af6ea66 Binary files /dev/null and b/B4A/Files/38marker-azul5.png differ diff --git a/B4A/Files/38marker-azul7.png b/B4A/Files/38marker-azul7.png new file mode 100644 index 0000000..ba01605 Binary files /dev/null and b/B4A/Files/38marker-azul7.png differ diff --git a/B4A/Files/38marker-azul8.png b/B4A/Files/38marker-azul8.png new file mode 100644 index 0000000..e1c5ef1 Binary files /dev/null and b/B4A/Files/38marker-azul8.png differ diff --git a/B4A/Files/39marker-azul5.png b/B4A/Files/39marker-azul5.png new file mode 100644 index 0000000..8f953e2 Binary files /dev/null and b/B4A/Files/39marker-azul5.png differ diff --git a/B4A/Files/39marker-azul7.png b/B4A/Files/39marker-azul7.png new file mode 100644 index 0000000..2356ed6 Binary files /dev/null and b/B4A/Files/39marker-azul7.png differ diff --git a/B4A/Files/39marker-azul8.png b/B4A/Files/39marker-azul8.png new file mode 100644 index 0000000..c536f17 Binary files /dev/null and b/B4A/Files/39marker-azul8.png differ diff --git a/B4A/Files/3marker-azul5.png b/B4A/Files/3marker-azul5.png new file mode 100644 index 0000000..6d71156 Binary files /dev/null and b/B4A/Files/3marker-azul5.png differ diff --git a/B4A/Files/3marker-azul7.png b/B4A/Files/3marker-azul7.png new file mode 100644 index 0000000..7f30203 Binary files /dev/null and b/B4A/Files/3marker-azul7.png differ diff --git a/B4A/Files/3marker-azul8.png b/B4A/Files/3marker-azul8.png new file mode 100644 index 0000000..d598680 Binary files /dev/null and b/B4A/Files/3marker-azul8.png differ diff --git a/B4A/Files/40marker-azul5.png b/B4A/Files/40marker-azul5.png new file mode 100644 index 0000000..34ec2d3 Binary files /dev/null and b/B4A/Files/40marker-azul5.png differ diff --git a/B4A/Files/40marker-azul7.png b/B4A/Files/40marker-azul7.png new file mode 100644 index 0000000..abee18c Binary files /dev/null and b/B4A/Files/40marker-azul7.png differ diff --git a/B4A/Files/40marker-azul8.png b/B4A/Files/40marker-azul8.png new file mode 100644 index 0000000..8f8c8bb Binary files /dev/null and b/B4A/Files/40marker-azul8.png differ diff --git a/B4A/Files/41marker-azul5.png b/B4A/Files/41marker-azul5.png new file mode 100644 index 0000000..df9387b Binary files /dev/null and b/B4A/Files/41marker-azul5.png differ diff --git a/B4A/Files/41marker-azul7.png b/B4A/Files/41marker-azul7.png new file mode 100644 index 0000000..dbc07cc Binary files /dev/null and b/B4A/Files/41marker-azul7.png differ diff --git a/B4A/Files/41marker-azul8.png b/B4A/Files/41marker-azul8.png new file mode 100644 index 0000000..ee58456 Binary files /dev/null and b/B4A/Files/41marker-azul8.png differ diff --git a/B4A/Files/42marker-azul5.png b/B4A/Files/42marker-azul5.png new file mode 100644 index 0000000..4815120 Binary files /dev/null and b/B4A/Files/42marker-azul5.png differ diff --git a/B4A/Files/42marker-azul7.png b/B4A/Files/42marker-azul7.png new file mode 100644 index 0000000..d7f03f3 Binary files /dev/null and b/B4A/Files/42marker-azul7.png differ diff --git a/B4A/Files/42marker-azul8.png b/B4A/Files/42marker-azul8.png new file mode 100644 index 0000000..dd8ab11 Binary files /dev/null and b/B4A/Files/42marker-azul8.png differ diff --git a/B4A/Files/43marker-azul5.png b/B4A/Files/43marker-azul5.png new file mode 100644 index 0000000..a576476 Binary files /dev/null and b/B4A/Files/43marker-azul5.png differ diff --git a/B4A/Files/43marker-azul7.png b/B4A/Files/43marker-azul7.png new file mode 100644 index 0000000..8fab1da Binary files /dev/null and b/B4A/Files/43marker-azul7.png differ diff --git a/B4A/Files/43marker-azul8.png b/B4A/Files/43marker-azul8.png new file mode 100644 index 0000000..1f95218 Binary files /dev/null and b/B4A/Files/43marker-azul8.png differ diff --git a/B4A/Files/44marker-azul5.png b/B4A/Files/44marker-azul5.png new file mode 100644 index 0000000..c6bfd67 Binary files /dev/null and b/B4A/Files/44marker-azul5.png differ diff --git a/B4A/Files/44marker-azul7.png b/B4A/Files/44marker-azul7.png new file mode 100644 index 0000000..c177511 Binary files /dev/null and b/B4A/Files/44marker-azul7.png differ diff --git a/B4A/Files/44marker-azul8.png b/B4A/Files/44marker-azul8.png new file mode 100644 index 0000000..45a4de9 Binary files /dev/null and b/B4A/Files/44marker-azul8.png differ diff --git a/B4A/Files/45marker-azul5.png b/B4A/Files/45marker-azul5.png new file mode 100644 index 0000000..dab5957 Binary files /dev/null and b/B4A/Files/45marker-azul5.png differ diff --git a/B4A/Files/45marker-azul7.png b/B4A/Files/45marker-azul7.png new file mode 100644 index 0000000..55d8f29 Binary files /dev/null and b/B4A/Files/45marker-azul7.png differ diff --git a/B4A/Files/45marker-azul8.png b/B4A/Files/45marker-azul8.png new file mode 100644 index 0000000..4949fc0 Binary files /dev/null and b/B4A/Files/45marker-azul8.png differ diff --git a/B4A/Files/46marker-azul5.png b/B4A/Files/46marker-azul5.png new file mode 100644 index 0000000..51c8cc1 Binary files /dev/null and b/B4A/Files/46marker-azul5.png differ diff --git a/B4A/Files/46marker-azul7.png b/B4A/Files/46marker-azul7.png new file mode 100644 index 0000000..5bc6085 Binary files /dev/null and b/B4A/Files/46marker-azul7.png differ diff --git a/B4A/Files/46marker-azul8.png b/B4A/Files/46marker-azul8.png new file mode 100644 index 0000000..0ccd358 Binary files /dev/null and b/B4A/Files/46marker-azul8.png differ diff --git a/B4A/Files/47marker-azul5.png b/B4A/Files/47marker-azul5.png new file mode 100644 index 0000000..83a7638 Binary files /dev/null and b/B4A/Files/47marker-azul5.png differ diff --git a/B4A/Files/47marker-azul7.png b/B4A/Files/47marker-azul7.png new file mode 100644 index 0000000..aebf326 Binary files /dev/null and b/B4A/Files/47marker-azul7.png differ diff --git a/B4A/Files/47marker-azul8.png b/B4A/Files/47marker-azul8.png new file mode 100644 index 0000000..3636567 Binary files /dev/null and b/B4A/Files/47marker-azul8.png differ diff --git a/B4A/Files/48marker-azul5.png b/B4A/Files/48marker-azul5.png new file mode 100644 index 0000000..f10d803 Binary files /dev/null and b/B4A/Files/48marker-azul5.png differ diff --git a/B4A/Files/48marker-azul7.png b/B4A/Files/48marker-azul7.png new file mode 100644 index 0000000..5e73554 Binary files /dev/null and b/B4A/Files/48marker-azul7.png differ diff --git a/B4A/Files/48marker-azul8.png b/B4A/Files/48marker-azul8.png new file mode 100644 index 0000000..3f6f27c Binary files /dev/null and b/B4A/Files/48marker-azul8.png differ diff --git a/B4A/Files/49marker-azul5.png b/B4A/Files/49marker-azul5.png new file mode 100644 index 0000000..14b633a Binary files /dev/null and b/B4A/Files/49marker-azul5.png differ diff --git a/B4A/Files/49marker-azul7.png b/B4A/Files/49marker-azul7.png new file mode 100644 index 0000000..0437906 Binary files /dev/null and b/B4A/Files/49marker-azul7.png differ diff --git a/B4A/Files/49marker-azul8.png b/B4A/Files/49marker-azul8.png new file mode 100644 index 0000000..cdb53c4 Binary files /dev/null and b/B4A/Files/49marker-azul8.png differ diff --git a/B4A/Files/4marker-azul5.png b/B4A/Files/4marker-azul5.png new file mode 100644 index 0000000..d4543ac Binary files /dev/null and b/B4A/Files/4marker-azul5.png differ diff --git a/B4A/Files/4marker-azul7.png b/B4A/Files/4marker-azul7.png new file mode 100644 index 0000000..c8a9f4c Binary files /dev/null and b/B4A/Files/4marker-azul7.png differ diff --git a/B4A/Files/4marker-azul8.png b/B4A/Files/4marker-azul8.png new file mode 100644 index 0000000..cb23ed0 Binary files /dev/null and b/B4A/Files/4marker-azul8.png differ diff --git a/B4A/Files/50marker-azul5.png b/B4A/Files/50marker-azul5.png new file mode 100644 index 0000000..200289f Binary files /dev/null and b/B4A/Files/50marker-azul5.png differ diff --git a/B4A/Files/50marker-azul7.png b/B4A/Files/50marker-azul7.png new file mode 100644 index 0000000..9151f98 Binary files /dev/null and b/B4A/Files/50marker-azul7.png differ diff --git a/B4A/Files/50marker-azul8.png b/B4A/Files/50marker-azul8.png new file mode 100644 index 0000000..754300d Binary files /dev/null and b/B4A/Files/50marker-azul8.png differ diff --git a/B4A/Files/51marker-azul5.png b/B4A/Files/51marker-azul5.png new file mode 100644 index 0000000..78060d5 Binary files /dev/null and b/B4A/Files/51marker-azul5.png differ diff --git a/B4A/Files/51marker-azul7.png b/B4A/Files/51marker-azul7.png new file mode 100644 index 0000000..ec8f027 Binary files /dev/null and b/B4A/Files/51marker-azul7.png differ diff --git a/B4A/Files/51marker-azul8.png b/B4A/Files/51marker-azul8.png new file mode 100644 index 0000000..14ac222 Binary files /dev/null and b/B4A/Files/51marker-azul8.png differ diff --git a/B4A/Files/52marker-azul5.png b/B4A/Files/52marker-azul5.png new file mode 100644 index 0000000..74c4baf Binary files /dev/null and b/B4A/Files/52marker-azul5.png differ diff --git a/B4A/Files/52marker-azul7.png b/B4A/Files/52marker-azul7.png new file mode 100644 index 0000000..a4c10c0 Binary files /dev/null and b/B4A/Files/52marker-azul7.png differ diff --git a/B4A/Files/52marker-azul8.png b/B4A/Files/52marker-azul8.png new file mode 100644 index 0000000..59356a0 Binary files /dev/null and b/B4A/Files/52marker-azul8.png differ diff --git a/B4A/Files/53marker-azul5.png b/B4A/Files/53marker-azul5.png new file mode 100644 index 0000000..add0460 Binary files /dev/null and b/B4A/Files/53marker-azul5.png differ diff --git a/B4A/Files/53marker-azul7.png b/B4A/Files/53marker-azul7.png new file mode 100644 index 0000000..a1541f1 Binary files /dev/null and b/B4A/Files/53marker-azul7.png differ diff --git a/B4A/Files/53marker-azul8.png b/B4A/Files/53marker-azul8.png new file mode 100644 index 0000000..8f98d9c Binary files /dev/null and b/B4A/Files/53marker-azul8.png differ diff --git a/B4A/Files/54marker-azul5.png b/B4A/Files/54marker-azul5.png new file mode 100644 index 0000000..abfe397 Binary files /dev/null and b/B4A/Files/54marker-azul5.png differ diff --git a/B4A/Files/54marker-azul7.png b/B4A/Files/54marker-azul7.png new file mode 100644 index 0000000..b5c19a6 Binary files /dev/null and b/B4A/Files/54marker-azul7.png differ diff --git a/B4A/Files/54marker-azul8.png b/B4A/Files/54marker-azul8.png new file mode 100644 index 0000000..6cd09a6 Binary files /dev/null and b/B4A/Files/54marker-azul8.png differ diff --git a/B4A/Files/55marker-azul5.png b/B4A/Files/55marker-azul5.png new file mode 100644 index 0000000..8a95f28 Binary files /dev/null and b/B4A/Files/55marker-azul5.png differ diff --git a/B4A/Files/55marker-azul7.png b/B4A/Files/55marker-azul7.png new file mode 100644 index 0000000..c209406 Binary files /dev/null and b/B4A/Files/55marker-azul7.png differ diff --git a/B4A/Files/55marker-azul8.png b/B4A/Files/55marker-azul8.png new file mode 100644 index 0000000..be94334 Binary files /dev/null and b/B4A/Files/55marker-azul8.png differ diff --git a/B4A/Files/56marker-azul5.png b/B4A/Files/56marker-azul5.png new file mode 100644 index 0000000..2de4b70 Binary files /dev/null and b/B4A/Files/56marker-azul5.png differ diff --git a/B4A/Files/56marker-azul7.png b/B4A/Files/56marker-azul7.png new file mode 100644 index 0000000..a18515f Binary files /dev/null and b/B4A/Files/56marker-azul7.png differ diff --git a/B4A/Files/56marker-azul8.png b/B4A/Files/56marker-azul8.png new file mode 100644 index 0000000..3f1459b Binary files /dev/null and b/B4A/Files/56marker-azul8.png differ diff --git a/B4A/Files/57marker-azul5.png b/B4A/Files/57marker-azul5.png new file mode 100644 index 0000000..886e375 Binary files /dev/null and b/B4A/Files/57marker-azul5.png differ diff --git a/B4A/Files/57marker-azul7.png b/B4A/Files/57marker-azul7.png new file mode 100644 index 0000000..d684412 Binary files /dev/null and b/B4A/Files/57marker-azul7.png differ diff --git a/B4A/Files/57marker-azul8.png b/B4A/Files/57marker-azul8.png new file mode 100644 index 0000000..a2c5031 Binary files /dev/null and b/B4A/Files/57marker-azul8.png differ diff --git a/B4A/Files/58marker-azul5.png b/B4A/Files/58marker-azul5.png new file mode 100644 index 0000000..004b337 Binary files /dev/null and b/B4A/Files/58marker-azul5.png differ diff --git a/B4A/Files/58marker-azul7.png b/B4A/Files/58marker-azul7.png new file mode 100644 index 0000000..346d0dc Binary files /dev/null and b/B4A/Files/58marker-azul7.png differ diff --git a/B4A/Files/58marker-azul8.png b/B4A/Files/58marker-azul8.png new file mode 100644 index 0000000..05403a9 Binary files /dev/null and b/B4A/Files/58marker-azul8.png differ diff --git a/B4A/Files/59marker-azul5.png b/B4A/Files/59marker-azul5.png new file mode 100644 index 0000000..641bf82 Binary files /dev/null and b/B4A/Files/59marker-azul5.png differ diff --git a/B4A/Files/59marker-azul7.png b/B4A/Files/59marker-azul7.png new file mode 100644 index 0000000..872128f Binary files /dev/null and b/B4A/Files/59marker-azul7.png differ diff --git a/B4A/Files/59marker-azul8.png b/B4A/Files/59marker-azul8.png new file mode 100644 index 0000000..dc8702e Binary files /dev/null and b/B4A/Files/59marker-azul8.png differ diff --git a/B4A/Files/5marker-azul5.png b/B4A/Files/5marker-azul5.png new file mode 100644 index 0000000..872bcd9 Binary files /dev/null and b/B4A/Files/5marker-azul5.png differ diff --git a/B4A/Files/5marker-azul7.png b/B4A/Files/5marker-azul7.png new file mode 100644 index 0000000..b245550 Binary files /dev/null and b/B4A/Files/5marker-azul7.png differ diff --git a/B4A/Files/5marker-azul8.png b/B4A/Files/5marker-azul8.png new file mode 100644 index 0000000..1a24ded Binary files /dev/null and b/B4A/Files/5marker-azul8.png differ diff --git a/B4A/Files/60marker-azul5.png b/B4A/Files/60marker-azul5.png new file mode 100644 index 0000000..ac3776d Binary files /dev/null and b/B4A/Files/60marker-azul5.png differ diff --git a/B4A/Files/60marker-azul7.png b/B4A/Files/60marker-azul7.png new file mode 100644 index 0000000..ec8454e Binary files /dev/null and b/B4A/Files/60marker-azul7.png differ diff --git a/B4A/Files/60marker-azul8.png b/B4A/Files/60marker-azul8.png new file mode 100644 index 0000000..7d94ed2 Binary files /dev/null and b/B4A/Files/60marker-azul8.png differ diff --git a/B4A/Files/61marker-azul5.png b/B4A/Files/61marker-azul5.png new file mode 100644 index 0000000..e3549a2 Binary files /dev/null and b/B4A/Files/61marker-azul5.png differ diff --git a/B4A/Files/61marker-azul7.png b/B4A/Files/61marker-azul7.png new file mode 100644 index 0000000..85c23e8 Binary files /dev/null and b/B4A/Files/61marker-azul7.png differ diff --git a/B4A/Files/61marker-azul8.png b/B4A/Files/61marker-azul8.png new file mode 100644 index 0000000..13e63c8 Binary files /dev/null and b/B4A/Files/61marker-azul8.png differ diff --git a/B4A/Files/62marker-azul5.png b/B4A/Files/62marker-azul5.png new file mode 100644 index 0000000..6b34ebc Binary files /dev/null and b/B4A/Files/62marker-azul5.png differ diff --git a/B4A/Files/62marker-azul7.png b/B4A/Files/62marker-azul7.png new file mode 100644 index 0000000..3a482c9 Binary files /dev/null and b/B4A/Files/62marker-azul7.png differ diff --git a/B4A/Files/62marker-azul8.png b/B4A/Files/62marker-azul8.png new file mode 100644 index 0000000..adcf3b8 Binary files /dev/null and b/B4A/Files/62marker-azul8.png differ diff --git a/B4A/Files/63marker-azul5.png b/B4A/Files/63marker-azul5.png new file mode 100644 index 0000000..579f655 Binary files /dev/null and b/B4A/Files/63marker-azul5.png differ diff --git a/B4A/Files/63marker-azul7.png b/B4A/Files/63marker-azul7.png new file mode 100644 index 0000000..ad6b799 Binary files /dev/null and b/B4A/Files/63marker-azul7.png differ diff --git a/B4A/Files/63marker-azul8.png b/B4A/Files/63marker-azul8.png new file mode 100644 index 0000000..f7a6ef8 Binary files /dev/null and b/B4A/Files/63marker-azul8.png differ diff --git a/B4A/Files/64marker-azul5.png b/B4A/Files/64marker-azul5.png new file mode 100644 index 0000000..968ea78 Binary files /dev/null and b/B4A/Files/64marker-azul5.png differ diff --git a/B4A/Files/64marker-azul7.png b/B4A/Files/64marker-azul7.png new file mode 100644 index 0000000..22da28e Binary files /dev/null and b/B4A/Files/64marker-azul7.png differ diff --git a/B4A/Files/64marker-azul8.png b/B4A/Files/64marker-azul8.png new file mode 100644 index 0000000..039d3c9 Binary files /dev/null and b/B4A/Files/64marker-azul8.png differ diff --git a/B4A/Files/65marker-azul5.png b/B4A/Files/65marker-azul5.png new file mode 100644 index 0000000..67d65d6 Binary files /dev/null and b/B4A/Files/65marker-azul5.png differ diff --git a/B4A/Files/65marker-azul7.png b/B4A/Files/65marker-azul7.png new file mode 100644 index 0000000..12ed77a Binary files /dev/null and b/B4A/Files/65marker-azul7.png differ diff --git a/B4A/Files/65marker-azul8.png b/B4A/Files/65marker-azul8.png new file mode 100644 index 0000000..3a703b3 Binary files /dev/null and b/B4A/Files/65marker-azul8.png differ diff --git a/B4A/Files/66marker-azul5.png b/B4A/Files/66marker-azul5.png new file mode 100644 index 0000000..ba9d77d Binary files /dev/null and b/B4A/Files/66marker-azul5.png differ diff --git a/B4A/Files/66marker-azul7.png b/B4A/Files/66marker-azul7.png new file mode 100644 index 0000000..20b0a37 Binary files /dev/null and b/B4A/Files/66marker-azul7.png differ diff --git a/B4A/Files/66marker-azul8.png b/B4A/Files/66marker-azul8.png new file mode 100644 index 0000000..a96852f Binary files /dev/null and b/B4A/Files/66marker-azul8.png differ diff --git a/B4A/Files/67marker-azul5.png b/B4A/Files/67marker-azul5.png new file mode 100644 index 0000000..8e7d04f Binary files /dev/null and b/B4A/Files/67marker-azul5.png differ diff --git a/B4A/Files/67marker-azul7.png b/B4A/Files/67marker-azul7.png new file mode 100644 index 0000000..0ee8fdf Binary files /dev/null and b/B4A/Files/67marker-azul7.png differ diff --git a/B4A/Files/67marker-azul8.png b/B4A/Files/67marker-azul8.png new file mode 100644 index 0000000..26ced4b Binary files /dev/null and b/B4A/Files/67marker-azul8.png differ diff --git a/B4A/Files/68marker-azul5.png b/B4A/Files/68marker-azul5.png new file mode 100644 index 0000000..a8178f6 Binary files /dev/null and b/B4A/Files/68marker-azul5.png differ diff --git a/B4A/Files/68marker-azul7.png b/B4A/Files/68marker-azul7.png new file mode 100644 index 0000000..15dff07 Binary files /dev/null and b/B4A/Files/68marker-azul7.png differ diff --git a/B4A/Files/68marker-azul8.png b/B4A/Files/68marker-azul8.png new file mode 100644 index 0000000..dc4cc16 Binary files /dev/null and b/B4A/Files/68marker-azul8.png differ diff --git a/B4A/Files/69marker-azul5.png b/B4A/Files/69marker-azul5.png new file mode 100644 index 0000000..dcb137a Binary files /dev/null and b/B4A/Files/69marker-azul5.png differ diff --git a/B4A/Files/69marker-azul7.png b/B4A/Files/69marker-azul7.png new file mode 100644 index 0000000..5a7ea20 Binary files /dev/null and b/B4A/Files/69marker-azul7.png differ diff --git a/B4A/Files/69marker-azul8.png b/B4A/Files/69marker-azul8.png new file mode 100644 index 0000000..e9d5a74 Binary files /dev/null and b/B4A/Files/69marker-azul8.png differ diff --git a/B4A/Files/6marker-azul5.png b/B4A/Files/6marker-azul5.png new file mode 100644 index 0000000..9eff267 Binary files /dev/null and b/B4A/Files/6marker-azul5.png differ diff --git a/B4A/Files/6marker-azul7.png b/B4A/Files/6marker-azul7.png new file mode 100644 index 0000000..5683b1d Binary files /dev/null and b/B4A/Files/6marker-azul7.png differ diff --git a/B4A/Files/6marker-azul8.png b/B4A/Files/6marker-azul8.png new file mode 100644 index 0000000..559c508 Binary files /dev/null and b/B4A/Files/6marker-azul8.png differ diff --git a/B4A/Files/70marker-azul5.png b/B4A/Files/70marker-azul5.png new file mode 100644 index 0000000..297857c Binary files /dev/null and b/B4A/Files/70marker-azul5.png differ diff --git a/B4A/Files/70marker-azul7.png b/B4A/Files/70marker-azul7.png new file mode 100644 index 0000000..51f716b Binary files /dev/null and b/B4A/Files/70marker-azul7.png differ diff --git a/B4A/Files/70marker-azul8.png b/B4A/Files/70marker-azul8.png new file mode 100644 index 0000000..01dd97e Binary files /dev/null and b/B4A/Files/70marker-azul8.png differ diff --git a/B4A/Files/71marker-azul5.png b/B4A/Files/71marker-azul5.png new file mode 100644 index 0000000..0dbc373 Binary files /dev/null and b/B4A/Files/71marker-azul5.png differ diff --git a/B4A/Files/71marker-azul7.png b/B4A/Files/71marker-azul7.png new file mode 100644 index 0000000..fa005e5 Binary files /dev/null and b/B4A/Files/71marker-azul7.png differ diff --git a/B4A/Files/71marker-azul8.png b/B4A/Files/71marker-azul8.png new file mode 100644 index 0000000..c35dd1f Binary files /dev/null and b/B4A/Files/71marker-azul8.png differ diff --git a/B4A/Files/72marker-azul5.png b/B4A/Files/72marker-azul5.png new file mode 100644 index 0000000..09a0d91 Binary files /dev/null and b/B4A/Files/72marker-azul5.png differ diff --git a/B4A/Files/72marker-azul7.png b/B4A/Files/72marker-azul7.png new file mode 100644 index 0000000..02643ba Binary files /dev/null and b/B4A/Files/72marker-azul7.png differ diff --git a/B4A/Files/72marker-azul8.png b/B4A/Files/72marker-azul8.png new file mode 100644 index 0000000..61d006a Binary files /dev/null and b/B4A/Files/72marker-azul8.png differ diff --git a/B4A/Files/73marker-azul5.png b/B4A/Files/73marker-azul5.png new file mode 100644 index 0000000..5a2cdbc Binary files /dev/null and b/B4A/Files/73marker-azul5.png differ diff --git a/B4A/Files/73marker-azul7.png b/B4A/Files/73marker-azul7.png new file mode 100644 index 0000000..6d893f1 Binary files /dev/null and b/B4A/Files/73marker-azul7.png differ diff --git a/B4A/Files/73marker-azul8.png b/B4A/Files/73marker-azul8.png new file mode 100644 index 0000000..3e513fb Binary files /dev/null and b/B4A/Files/73marker-azul8.png differ diff --git a/B4A/Files/74marker-azul5.png b/B4A/Files/74marker-azul5.png new file mode 100644 index 0000000..4edffba Binary files /dev/null and b/B4A/Files/74marker-azul5.png differ diff --git a/B4A/Files/74marker-azul7.png b/B4A/Files/74marker-azul7.png new file mode 100644 index 0000000..ab6ef89 Binary files /dev/null and b/B4A/Files/74marker-azul7.png differ diff --git a/B4A/Files/74marker-azul8.png b/B4A/Files/74marker-azul8.png new file mode 100644 index 0000000..d3578b0 Binary files /dev/null and b/B4A/Files/74marker-azul8.png differ diff --git a/B4A/Files/75marker-azul5.png b/B4A/Files/75marker-azul5.png new file mode 100644 index 0000000..aa3c032 Binary files /dev/null and b/B4A/Files/75marker-azul5.png differ diff --git a/B4A/Files/75marker-azul7.png b/B4A/Files/75marker-azul7.png new file mode 100644 index 0000000..dc7e74d Binary files /dev/null and b/B4A/Files/75marker-azul7.png differ diff --git a/B4A/Files/75marker-azul8.png b/B4A/Files/75marker-azul8.png new file mode 100644 index 0000000..caeb04a Binary files /dev/null and b/B4A/Files/75marker-azul8.png differ diff --git a/B4A/Files/76marker-azul5.png b/B4A/Files/76marker-azul5.png new file mode 100644 index 0000000..db2e5b6 Binary files /dev/null and b/B4A/Files/76marker-azul5.png differ diff --git a/B4A/Files/76marker-azul7.png b/B4A/Files/76marker-azul7.png new file mode 100644 index 0000000..2d74201 Binary files /dev/null and b/B4A/Files/76marker-azul7.png differ diff --git a/B4A/Files/76marker-azul8.png b/B4A/Files/76marker-azul8.png new file mode 100644 index 0000000..debd3ba Binary files /dev/null and b/B4A/Files/76marker-azul8.png differ diff --git a/B4A/Files/77marker-azul5.png b/B4A/Files/77marker-azul5.png new file mode 100644 index 0000000..b1e1ef5 Binary files /dev/null and b/B4A/Files/77marker-azul5.png differ diff --git a/B4A/Files/77marker-azul7.png b/B4A/Files/77marker-azul7.png new file mode 100644 index 0000000..fce4b62 Binary files /dev/null and b/B4A/Files/77marker-azul7.png differ diff --git a/B4A/Files/77marker-azul8.png b/B4A/Files/77marker-azul8.png new file mode 100644 index 0000000..0cbe71b Binary files /dev/null and b/B4A/Files/77marker-azul8.png differ diff --git a/B4A/Files/78marker-azul5.png b/B4A/Files/78marker-azul5.png new file mode 100644 index 0000000..37a2176 Binary files /dev/null and b/B4A/Files/78marker-azul5.png differ diff --git a/B4A/Files/78marker-azul7.png b/B4A/Files/78marker-azul7.png new file mode 100644 index 0000000..262c2a9 Binary files /dev/null and b/B4A/Files/78marker-azul7.png differ diff --git a/B4A/Files/78marker-azul8.png b/B4A/Files/78marker-azul8.png new file mode 100644 index 0000000..7f1a8ab Binary files /dev/null and b/B4A/Files/78marker-azul8.png differ diff --git a/B4A/Files/79marker-azul5.png b/B4A/Files/79marker-azul5.png new file mode 100644 index 0000000..f69863b Binary files /dev/null and b/B4A/Files/79marker-azul5.png differ diff --git a/B4A/Files/79marker-azul7.png b/B4A/Files/79marker-azul7.png new file mode 100644 index 0000000..b7a4de9 Binary files /dev/null and b/B4A/Files/79marker-azul7.png differ diff --git a/B4A/Files/79marker-azul8.png b/B4A/Files/79marker-azul8.png new file mode 100644 index 0000000..4a6eedd Binary files /dev/null and b/B4A/Files/79marker-azul8.png differ diff --git a/B4A/Files/7marker-azul5.png b/B4A/Files/7marker-azul5.png new file mode 100644 index 0000000..538d90d Binary files /dev/null and b/B4A/Files/7marker-azul5.png differ diff --git a/B4A/Files/7marker-azul7.png b/B4A/Files/7marker-azul7.png new file mode 100644 index 0000000..164c376 Binary files /dev/null and b/B4A/Files/7marker-azul7.png differ diff --git a/B4A/Files/7marker-azul8.png b/B4A/Files/7marker-azul8.png new file mode 100644 index 0000000..9c52314 Binary files /dev/null and b/B4A/Files/7marker-azul8.png differ diff --git a/B4A/Files/80marker-azul5.png b/B4A/Files/80marker-azul5.png new file mode 100644 index 0000000..b2ed537 Binary files /dev/null and b/B4A/Files/80marker-azul5.png differ diff --git a/B4A/Files/80marker-azul7.png b/B4A/Files/80marker-azul7.png new file mode 100644 index 0000000..e9bc1cc Binary files /dev/null and b/B4A/Files/80marker-azul7.png differ diff --git a/B4A/Files/80marker-azul8.png b/B4A/Files/80marker-azul8.png new file mode 100644 index 0000000..60f0a0b Binary files /dev/null and b/B4A/Files/80marker-azul8.png differ diff --git a/B4A/Files/81marker-azul5.png b/B4A/Files/81marker-azul5.png new file mode 100644 index 0000000..c40ad8f Binary files /dev/null and b/B4A/Files/81marker-azul5.png differ diff --git a/B4A/Files/81marker-azul7.png b/B4A/Files/81marker-azul7.png new file mode 100644 index 0000000..e306417 Binary files /dev/null and b/B4A/Files/81marker-azul7.png differ diff --git a/B4A/Files/81marker-azul8.png b/B4A/Files/81marker-azul8.png new file mode 100644 index 0000000..5261d14 Binary files /dev/null and b/B4A/Files/81marker-azul8.png differ diff --git a/B4A/Files/82marker-azul5.png b/B4A/Files/82marker-azul5.png new file mode 100644 index 0000000..8b0a075 Binary files /dev/null and b/B4A/Files/82marker-azul5.png differ diff --git a/B4A/Files/82marker-azul7.png b/B4A/Files/82marker-azul7.png new file mode 100644 index 0000000..47aff6f Binary files /dev/null and b/B4A/Files/82marker-azul7.png differ diff --git a/B4A/Files/82marker-azul8.png b/B4A/Files/82marker-azul8.png new file mode 100644 index 0000000..04f73cf Binary files /dev/null and b/B4A/Files/82marker-azul8.png differ diff --git a/B4A/Files/83marker-azul5.png b/B4A/Files/83marker-azul5.png new file mode 100644 index 0000000..73e10d5 Binary files /dev/null and b/B4A/Files/83marker-azul5.png differ diff --git a/B4A/Files/83marker-azul7.png b/B4A/Files/83marker-azul7.png new file mode 100644 index 0000000..9d2aaf0 Binary files /dev/null and b/B4A/Files/83marker-azul7.png differ diff --git a/B4A/Files/83marker-azul8.png b/B4A/Files/83marker-azul8.png new file mode 100644 index 0000000..b92c798 Binary files /dev/null and b/B4A/Files/83marker-azul8.png differ diff --git a/B4A/Files/84marker-azul5.png b/B4A/Files/84marker-azul5.png new file mode 100644 index 0000000..f8a566a Binary files /dev/null and b/B4A/Files/84marker-azul5.png differ diff --git a/B4A/Files/84marker-azul7.png b/B4A/Files/84marker-azul7.png new file mode 100644 index 0000000..3c08be2 Binary files /dev/null and b/B4A/Files/84marker-azul7.png differ diff --git a/B4A/Files/84marker-azul8.png b/B4A/Files/84marker-azul8.png new file mode 100644 index 0000000..1a643e1 Binary files /dev/null and b/B4A/Files/84marker-azul8.png differ diff --git a/B4A/Files/85marker-azul5.png b/B4A/Files/85marker-azul5.png new file mode 100644 index 0000000..11adcd8 Binary files /dev/null and b/B4A/Files/85marker-azul5.png differ diff --git a/B4A/Files/85marker-azul7.png b/B4A/Files/85marker-azul7.png new file mode 100644 index 0000000..08d586d Binary files /dev/null and b/B4A/Files/85marker-azul7.png differ diff --git a/B4A/Files/85marker-azul8.png b/B4A/Files/85marker-azul8.png new file mode 100644 index 0000000..8ae34cc Binary files /dev/null and b/B4A/Files/85marker-azul8.png differ diff --git a/B4A/Files/86marker-azul5.png b/B4A/Files/86marker-azul5.png new file mode 100644 index 0000000..500d61c Binary files /dev/null and b/B4A/Files/86marker-azul5.png differ diff --git a/B4A/Files/86marker-azul7.png b/B4A/Files/86marker-azul7.png new file mode 100644 index 0000000..ce35100 Binary files /dev/null and b/B4A/Files/86marker-azul7.png differ diff --git a/B4A/Files/86marker-azul8.png b/B4A/Files/86marker-azul8.png new file mode 100644 index 0000000..3019b95 Binary files /dev/null and b/B4A/Files/86marker-azul8.png differ diff --git a/B4A/Files/87marker-azul5.png b/B4A/Files/87marker-azul5.png new file mode 100644 index 0000000..2d5c413 Binary files /dev/null and b/B4A/Files/87marker-azul5.png differ diff --git a/B4A/Files/87marker-azul7.png b/B4A/Files/87marker-azul7.png new file mode 100644 index 0000000..7bb581a Binary files /dev/null and b/B4A/Files/87marker-azul7.png differ diff --git a/B4A/Files/87marker-azul8.png b/B4A/Files/87marker-azul8.png new file mode 100644 index 0000000..08e5f9f Binary files /dev/null and b/B4A/Files/87marker-azul8.png differ diff --git a/B4A/Files/88marker-azul5.png b/B4A/Files/88marker-azul5.png new file mode 100644 index 0000000..cf13ef3 Binary files /dev/null and b/B4A/Files/88marker-azul5.png differ diff --git a/B4A/Files/88marker-azul7.png b/B4A/Files/88marker-azul7.png new file mode 100644 index 0000000..c6c12c0 Binary files /dev/null and b/B4A/Files/88marker-azul7.png differ diff --git a/B4A/Files/88marker-azul8.png b/B4A/Files/88marker-azul8.png new file mode 100644 index 0000000..a34300a Binary files /dev/null and b/B4A/Files/88marker-azul8.png differ diff --git a/B4A/Files/89marker-azul5.png b/B4A/Files/89marker-azul5.png new file mode 100644 index 0000000..c2a41d5 Binary files /dev/null and b/B4A/Files/89marker-azul5.png differ diff --git a/B4A/Files/89marker-azul7.png b/B4A/Files/89marker-azul7.png new file mode 100644 index 0000000..af42523 Binary files /dev/null and b/B4A/Files/89marker-azul7.png differ diff --git a/B4A/Files/89marker-azul8.png b/B4A/Files/89marker-azul8.png new file mode 100644 index 0000000..20894c6 Binary files /dev/null and b/B4A/Files/89marker-azul8.png differ diff --git a/B4A/Files/8marker-azul5.png b/B4A/Files/8marker-azul5.png new file mode 100644 index 0000000..2789968 Binary files /dev/null and b/B4A/Files/8marker-azul5.png differ diff --git a/B4A/Files/8marker-azul7.png b/B4A/Files/8marker-azul7.png new file mode 100644 index 0000000..6d5b876 Binary files /dev/null and b/B4A/Files/8marker-azul7.png differ diff --git a/B4A/Files/8marker-azul8.png b/B4A/Files/8marker-azul8.png new file mode 100644 index 0000000..1b4ad16 Binary files /dev/null and b/B4A/Files/8marker-azul8.png differ diff --git a/B4A/Files/90marker-azul5.png b/B4A/Files/90marker-azul5.png new file mode 100644 index 0000000..62a0a91 Binary files /dev/null and b/B4A/Files/90marker-azul5.png differ diff --git a/B4A/Files/90marker-azul7.png b/B4A/Files/90marker-azul7.png new file mode 100644 index 0000000..be578c4 Binary files /dev/null and b/B4A/Files/90marker-azul7.png differ diff --git a/B4A/Files/90marker-azul8.png b/B4A/Files/90marker-azul8.png new file mode 100644 index 0000000..42c84bc Binary files /dev/null and b/B4A/Files/90marker-azul8.png differ diff --git a/B4A/Files/91marker-azul5.png b/B4A/Files/91marker-azul5.png new file mode 100644 index 0000000..0281746 Binary files /dev/null and b/B4A/Files/91marker-azul5.png differ diff --git a/B4A/Files/91marker-azul7.png b/B4A/Files/91marker-azul7.png new file mode 100644 index 0000000..19ea1ef Binary files /dev/null and b/B4A/Files/91marker-azul7.png differ diff --git a/B4A/Files/91marker-azul8.png b/B4A/Files/91marker-azul8.png new file mode 100644 index 0000000..9f9fc9c Binary files /dev/null and b/B4A/Files/91marker-azul8.png differ diff --git a/B4A/Files/92marker-azul5.png b/B4A/Files/92marker-azul5.png new file mode 100644 index 0000000..9a16e90 Binary files /dev/null and b/B4A/Files/92marker-azul5.png differ diff --git a/B4A/Files/92marker-azul7.png b/B4A/Files/92marker-azul7.png new file mode 100644 index 0000000..de05ef9 Binary files /dev/null and b/B4A/Files/92marker-azul7.png differ diff --git a/B4A/Files/92marker-azul8.png b/B4A/Files/92marker-azul8.png new file mode 100644 index 0000000..532b5b4 Binary files /dev/null and b/B4A/Files/92marker-azul8.png differ diff --git a/B4A/Files/93marker-azul5.png b/B4A/Files/93marker-azul5.png new file mode 100644 index 0000000..a31318f Binary files /dev/null and b/B4A/Files/93marker-azul5.png differ diff --git a/B4A/Files/93marker-azul7.png b/B4A/Files/93marker-azul7.png new file mode 100644 index 0000000..85c6dcb Binary files /dev/null and b/B4A/Files/93marker-azul7.png differ diff --git a/B4A/Files/93marker-azul8.png b/B4A/Files/93marker-azul8.png new file mode 100644 index 0000000..85aec9b Binary files /dev/null and b/B4A/Files/93marker-azul8.png differ diff --git a/B4A/Files/94marker-azul5.png b/B4A/Files/94marker-azul5.png new file mode 100644 index 0000000..3c73896 Binary files /dev/null and b/B4A/Files/94marker-azul5.png differ diff --git a/B4A/Files/94marker-azul7.png b/B4A/Files/94marker-azul7.png new file mode 100644 index 0000000..b6ad911 Binary files /dev/null and b/B4A/Files/94marker-azul7.png differ diff --git a/B4A/Files/94marker-azul8.png b/B4A/Files/94marker-azul8.png new file mode 100644 index 0000000..33113a7 Binary files /dev/null and b/B4A/Files/94marker-azul8.png differ diff --git a/B4A/Files/95marker-azul5.png b/B4A/Files/95marker-azul5.png new file mode 100644 index 0000000..9361fd8 Binary files /dev/null and b/B4A/Files/95marker-azul5.png differ diff --git a/B4A/Files/95marker-azul7.png b/B4A/Files/95marker-azul7.png new file mode 100644 index 0000000..50074ac Binary files /dev/null and b/B4A/Files/95marker-azul7.png differ diff --git a/B4A/Files/95marker-azul8.png b/B4A/Files/95marker-azul8.png new file mode 100644 index 0000000..28d927f Binary files /dev/null and b/B4A/Files/95marker-azul8.png differ diff --git a/B4A/Files/96marker-azul5.png b/B4A/Files/96marker-azul5.png new file mode 100644 index 0000000..6b57dbc Binary files /dev/null and b/B4A/Files/96marker-azul5.png differ diff --git a/B4A/Files/96marker-azul7.png b/B4A/Files/96marker-azul7.png new file mode 100644 index 0000000..5c8d1da Binary files /dev/null and b/B4A/Files/96marker-azul7.png differ diff --git a/B4A/Files/96marker-azul8.png b/B4A/Files/96marker-azul8.png new file mode 100644 index 0000000..121819c Binary files /dev/null and b/B4A/Files/96marker-azul8.png differ diff --git a/B4A/Files/97marker-azul5.png b/B4A/Files/97marker-azul5.png new file mode 100644 index 0000000..c4017b9 Binary files /dev/null and b/B4A/Files/97marker-azul5.png differ diff --git a/B4A/Files/97marker-azul7.png b/B4A/Files/97marker-azul7.png new file mode 100644 index 0000000..4d6b716 Binary files /dev/null and b/B4A/Files/97marker-azul7.png differ diff --git a/B4A/Files/97marker-azul8.png b/B4A/Files/97marker-azul8.png new file mode 100644 index 0000000..bf9cab4 Binary files /dev/null and b/B4A/Files/97marker-azul8.png differ diff --git a/B4A/Files/98marker-azul5.png b/B4A/Files/98marker-azul5.png new file mode 100644 index 0000000..532fc8f Binary files /dev/null and b/B4A/Files/98marker-azul5.png differ diff --git a/B4A/Files/98marker-azul7.png b/B4A/Files/98marker-azul7.png new file mode 100644 index 0000000..66907e7 Binary files /dev/null and b/B4A/Files/98marker-azul7.png differ diff --git a/B4A/Files/98marker-azul8.png b/B4A/Files/98marker-azul8.png new file mode 100644 index 0000000..ad9b9b6 Binary files /dev/null and b/B4A/Files/98marker-azul8.png differ diff --git a/B4A/Files/99marker-azul5.png b/B4A/Files/99marker-azul5.png new file mode 100644 index 0000000..34f1123 Binary files /dev/null and b/B4A/Files/99marker-azul5.png differ diff --git a/B4A/Files/99marker-azul7.png b/B4A/Files/99marker-azul7.png new file mode 100644 index 0000000..c6dc2d8 Binary files /dev/null and b/B4A/Files/99marker-azul7.png differ diff --git a/B4A/Files/99marker-azul8.png b/B4A/Files/99marker-azul8.png new file mode 100644 index 0000000..bb9e999 Binary files /dev/null and b/B4A/Files/99marker-azul8.png differ diff --git a/B4A/Files/9marker-azul5.png b/B4A/Files/9marker-azul5.png new file mode 100644 index 0000000..9c0c741 Binary files /dev/null and b/B4A/Files/9marker-azul5.png differ diff --git a/B4A/Files/9marker-azul7.png b/B4A/Files/9marker-azul7.png new file mode 100644 index 0000000..9a70430 Binary files /dev/null and b/B4A/Files/9marker-azul7.png differ diff --git a/B4A/Files/9marker-azul8.png b/B4A/Files/9marker-azul8.png new file mode 100644 index 0000000..2d1f7f7 Binary files /dev/null and b/B4A/Files/9marker-azul8.png differ diff --git a/B4A/Files/principal.bal b/B4A/Files/principal.bal index 36ef53f..35e1749 100644 Binary files a/B4A/Files/principal.bal and b/B4A/Files/principal.bal differ diff --git a/B4A/MAPA_RUTAS.bas b/B4A/MAPA_RUTAS.bas index 4770345..27231eb 100644 --- a/B4A/MAPA_RUTAS.bas +++ b/B4A/MAPA_RUTAS.bas @@ -127,7 +127,7 @@ Sub MapFragment1_Ready Private esteAzul2 As String If azul = 1 Or todos = 1 Then c.IsInitialized - c = Starter.skmt.ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LAT, CAT_CL_LONG, CAT_CL_RUTA from kmt_info where gestion = 0 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA") + c = Starter.skmt.ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LAT, CAT_CL_LONG, CAT_CL_RUTA from kmt_info where gestion = 0 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA") rutaAnt = "" For i = 0 To c.RowCount -1 c.Position = i @@ -152,6 +152,9 @@ Sub MapFragment1_Ready If esteAzul = 3 Then esteAzul2= NumSerie&"maker-azul2.png" If esteAzul = 4 Then esteAzul2= NumSerie&"maker-azul3.png" If esteAzul = 5 Then esteAzul2= NumSerie&"maker-azul4.png" + If esteAzul = 6 Then esteAzul2= NumSerie&"maker-azul5.png" + If esteAzul = 7 Then esteAzul2= NumSerie&"maker-azul7.png" + If esteAzul = 8 Then esteAzul2= NumSerie&"maker-azul8.png" ' Log(ruta & "|" & esteAzul & "|" & esteAzul2) ' Log(NumSerie&" "& Tienda&" --------"& esteAzul2&" --------"&esteAzul) MARK_AZUL = gmap.AddMarker3(LatitudRu,LongitudRU,CODIGO,LoadBitmap(File.DirAssets, esteAzul2)) @@ -165,7 +168,7 @@ Sub MapFragment1_Ready If verde = 1 Or todos = 1 Then rutaAnt = "" c2.IsInitialized - c2=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA") + c2=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA") For i = 0 To c2.RowCount -1 c2.Position = i LongitudRU = c2.GetString("CAT_CL_LONG") @@ -190,7 +193,7 @@ Sub MapFragment1_Ready If verde = 1 Or todos = 1 Then rutaAnt = "" c2.IsInitialized - c2=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA") + c2=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA") For i = 0 To c2.RowCount -1 c2.Position = i LongitudRU = c2.GetString("CAT_CL_LONG") @@ -211,7 +214,7 @@ Sub MapFragment1_Ready If rojo = 1 Or todos = 1 Then rutaAnt = "" c3.IsInitialized - c3=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA") + c3=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA") For i = 0 To c3.RowCount -1 c3.Position = i LongitudRU = c3.GetDouble("CAT_CL_LONG") @@ -236,7 +239,7 @@ Sub MapFragment1_Ready If rojo = 1 Or todos = 1 Then rutaAnt = "" c3.IsInitialized - c3=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA") + c3=Starter.skmt.ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA") For i = 0 To c3.RowCount -1 c3.Position = i LongitudRU = c3.GetDouble("CAT_CL_LONG") diff --git a/B4A/Mazapa_Reparto.b4a b/B4A/Mazapa_Reparto.b4a index 50a01b6..72d9c82 100644 --- a/B4A/Mazapa_Reparto.b4a +++ b/B4A/Mazapa_Reparto.b4a @@ -3006,7 +3006,7 @@ Version=12.8 #Region Project Attributes #ApplicationLabel: MAZAPA Reparto #VersionCode: 1 - #VersionName: 5.01.05 + #VersionName: 5.01.12 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: portrait #CanInstallToExternalStorage: False diff --git a/B4A/Mazapa_Reparto.b4a.meta b/B4A/Mazapa_Reparto.b4a.meta index 43f197c..a3a87b0 100644 --- a/B4A/Mazapa_Reparto.b4a.meta +++ b/B4A/Mazapa_Reparto.b4a.meta @@ -91,6 +91,6 @@ ModuleClosedNodes6= ModuleClosedNodes7= ModuleClosedNodes8= ModuleClosedNodes9= -NavigationStack=Diseñador Visual,principal.bal,-100,1,Diseñador Visual,proditem2.bal,-100,1,Diseñador Visual,detalle_promo.bal,-100,1,C_Detalle_Promo,Class_Globals,0,0,Diseñador Visual,productos.bal,-100,3,C_Detalle_Promo,Initialize,17,0,C_Detalle_Promo,B4XPage_Created,25,0,C_Principal,Class_Globals,0,0,C_Principal,B4XPage_Created,106,0,C_Principal,B4XPage_Appear,160,0,C_Principal,JobDone,1523,0 +NavigationStack=C_Principal,B4XPage_Created,117,0,C_Principal,B4XPage_Appear,227,6,C_Clientes,B4XPage_Appear,68,0,C_Clientes,ListView1_ItemClick,148,0,C_Clientes,generaListViewRutas,207,0,C_Clientes,BUSCA_TextChanged,236,0,C_Clientes,traeRutaDia,452,0,C_Clientes,traeTodosAVisitar,538,0,C_Clientes,caculaRutaGPS,634,0,MAPA_RUTAS,Globals,40,0,MAPA_RUTAS,MapFragment1_Ready,150,0 SelectedBuild=0 -VisibleModules=1,2,3,4,5,6,7,8,9,10,16 +VisibleModules=1,2,3,4,5,6,7,8,9,10,27 diff --git a/B4A/Objects/AndroidManifest.xml b/B4A/Objects/AndroidManifest.xml index dc62638..26f55ad 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_mazapa.keymon.lat" android:versionCode="1" - android:versionName="5.01.05" + android:versionName="5.01.12" android:installLocation="internalOnly"> diff --git a/B4A/Objects/Mazapa_Reparto.apk b/B4A/Objects/Mazapa_Reparto.apk index 4fc3a1e..6c23086 100644 Binary files a/B4A/Objects/Mazapa_Reparto.apk and b/B4A/Objects/Mazapa_Reparto.apk differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.class index 20d1853..b445092 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.class index 8f74059..7c6d308 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater.class index 3b3587f..4dd290b 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/appupdater.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xbytesbuilder.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xbytesbuilder.class index e535357..44221bc 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xbytesbuilder.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xbytesbuilder.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xfloattextfield.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xfloattextfield.class index d7564d4..5859497 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xfloattextfield.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xfloattextfield.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4ximageview.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4ximageview.class index 0e867e7..a43760d 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4ximageview.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4ximageview.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class index 92cea27..c79bd8d 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class index 28778e9..873a229 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class index 5f92f56..8353b3b 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage.class index 3e29218..d9b44fd 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xmainpage.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xpagesmanager.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xpagesmanager.class index c47789e..a01a525 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xpagesmanager.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xpagesmanager.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xsearchtemplate.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xsearchtemplate.class index 4213461..25d803d 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xsearchtemplate.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/b4xsearchtemplate.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class index 5e63282..49bdf8d 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class index 6a455a7..d55532e 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist.class index f754f01..ab056e1 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cheklist.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cliente.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cliente.class index 3319ebd..dc4d84b 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cliente.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_cliente.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class index faa7db3..cf49001 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class index 4a33a3e..9814692 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class index be3b122..377443a 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class index 98ff1b1..e4d9af7 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class index f317e42..e2af253 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class index 8c1321d..b8f176d 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class index 213078a..439b37b 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes.class index cb4711e..0922aac 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_clientes.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_detalleventa.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_detalleventa.class index 8b592bb..bca183a 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_detalleventa.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_detalleventa.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_foto.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_foto.class index 6f0e42e..1ce6d96 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_foto.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_foto.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_historico.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_historico.class index 9d212f3..d28bbed 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_historico.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_historico.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_noventa.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_noventa.class index fd39975..c6d842c 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_noventa.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_noventa.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class index 9d42688..ebbe6b5 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal.class index 368dbb8..4f7c45c 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_principal.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_productos.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_productos.class index ec81e9c..36ba45a 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_productos.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_productos.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_tabulador.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_tabulador.class index f3a4a8c..8c70b76 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_tabulador.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_tabulador.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class index f7bfad7..7dba8a8 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cameraexclass.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cameraexclass.class index 96768ec..51b145f 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cameraexclass.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cameraexclass.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class index 6b0147f..9170044 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class index 96653ba..e489fad 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class index feb2527..81346ab 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class index 8d6a11b..b370aee 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class index 2166a91..b3ad9e1 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate.class index ae6d01a..b39d808 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/cl_appupdate.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/dbrequestmanager.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/dbrequestmanager.class index e05ee2d..f631c28 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/dbrequestmanager.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/dbrequestmanager.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/escposprinter.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/escposprinter.class index 0c241b2..777d5e8 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/escposprinter.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/escposprinter.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/fileprovider.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/fileprovider.class index 0f647c8..59d9937 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/fileprovider.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/fileprovider.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/foto.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/foto.class index bd798ac..2e27646 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/foto.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/foto.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httpjob.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httpjob.class index f57356b..dcbf46d 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httpjob.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httpjob.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httputils2service.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httputils2service.class index 63bc0e2..e3b69b0 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httputils2service.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/httputils2service.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/manageexternalstorage.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/manageexternalstorage.class index b67bdae..b2a07d7 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/manageexternalstorage.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/manageexternalstorage.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_cliente.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_cliente.class index 8230f99..bab66b3 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_cliente.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_cliente.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.class index 2b52902..aba249a 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas.class index f46f449..3d65d37 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/mapa_rutas.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/newinst2.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/newinst2.class index df71ea3..b906ed2 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/newinst2.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/newinst2.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/starter.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/starter.class index 49875fc..8224ce1 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/starter.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/starter.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/subs.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/subs.class index 2856f0c..8f487e0 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/subs.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/subs.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class index 927f45f..488deb6 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.class differ diff --git a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker.class b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker.class index b8ffd78..236924f 100644 Binary files a/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker.class and b/B4A/Objects/bin/classes/reparto_mazapa/keymon/lat/tracker.class differ diff --git a/B4A/Objects/bin/temp.ap_ b/B4A/Objects/bin/temp.ap_ index 0596533..5eb0567 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 3e54ca6..ca84c66 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 644ad86..90a17a7 100644 --- a/B4A/Objects/d8_arguments.txt +++ b/B4A/Objects/d8_arguments.txt @@ -1,6 +1,6 @@ --release --output -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects --lib C:\Android\platforms\android-30\android.jar C:\Android\tools\..\extras\b4a_local\unpacked-b4ashared-63837499356000\dex_v1\b4ashared.zip @@ -74,321 +74,321 @@ 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 -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\core\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\drawerlayout\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\fragment\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\media\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\base\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\common\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\animatedcounter.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\anotherprogressbar$ResumableSub_BusyLoop.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\anotherprogressbar.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$appupdater_BR.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$ResumableSub_download_newApk.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$ResumableSub_Service_Start.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$_mnewversion.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xbitset.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xbreadcrumb.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xbytesbuilder.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcache$_b4xcacheitem.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcache.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcollections.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcolortemplate$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcolortemplate$_colorpickerpart.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcolortemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcombobox$ResumableSub_RaiseEvent.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcombobox.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcomparatorsort.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdatetemplate$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdatetemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog$ResumableSub_ShowCustom.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog$ResumableSub_ShowTemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xfloattextfield$ResumableSub_SwitchFromPasswordToRegular.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xfloattextfield.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xformatter$_b4xformatdata.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xformatter.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4ximageview.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xinputtemplate$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xinputtemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xlisttemplate$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xlisttemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xloadingindicator$ResumableSub_MainLoop.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xloadingindicator.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xlongtexttemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_B4XPage_Appear.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_b_envioBD_Click.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_b_terpc_Click.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xorderedmap.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpages.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesdelegator.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$PagesMenuListener.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$ResumableSub_HandleCloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$_b4amenuitem.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$_b4xpageinfo.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$_b4xpageparent.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xplusminus$ResumableSub_StartDownLoop.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xplusminus.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xradiobutton$ResumableSub_SetValueImpl.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xradiobutton.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xsearchtemplate$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xsearchtemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xseekbar.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xset.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xsignaturetemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xswitch$ResumableSub_SetValueImpl.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xswitch.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xtimedtemplate$ResumableSub_Show.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xtimedtemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\batteryutilities.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cameraexclass$_camerainfoandid.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cameraexclass$_camerasize.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cameraexclass.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_DownloadApk.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_IsvalidWV.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_ReadWebVN.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_TryApkUpdate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_UpdateApk.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_buscar$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_buscar.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist$ResumableSub_B4XPage_Appear.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist$ResumableSub_InitializeCamera2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cliente$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cliente.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_b_GetDirs_Click.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_caculaRutaGPS.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_distanciaEntreCoords.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_generaListViewRutas.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_ListView1_ItemClick.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_traeRutaDia.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_detalleventa$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_detalleventa.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_detalle_promo.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_foto$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_foto.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_historico$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_historico.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_mapas.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_noventa.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_nuevocliente.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_pedidos.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_principal$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_principal.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_productos$ResumableSub_B4XPage_CloseRequest.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_productos.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_tabulador.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_ticketsdia.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_updateavailable$ResumableSub_B4XPage_Appear.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_updateavailable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\dbrequestmanager$_dbcommand.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\dbrequestmanager$_dbresult.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\dbrequestmanager.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\escposprinter$_animage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\escposprinter.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\fileprovider.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$B4AMenuItemsClickListener.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$HandleKeyDelayed.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$ResumeMessage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$WaitForLayout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\httpjob$_multipartfiledata.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\httpjob.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\httputils2service.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\madewithlove.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$B4AMenuItemsClickListener.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$HandleKeyDelayed.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$ResumeMessage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$WaitForLayout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\manageexternalstorage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$B4AMenuItemsClickListener.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$HandleKeyDelayed.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$ResumableSub_MapFragment1_Ready.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$ResumeMessage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$WaitForLayout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$B4AMenuItemsClickListener.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$HandleKeyDelayed.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$ResumableSub_MapFragment1_Ready.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$ResumeMessage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$WaitForLayout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2$2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2$newinst2_BR.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$anim.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$attr.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$color.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$dimen.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$drawable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$id.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$integer.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$layout.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$string.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$style.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$styleable.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$xml.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\roundslider.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\scrollinglabel$ResumableSub_StartScrolling.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\scrollinglabel.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter$2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter$starter_BR.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\subs.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\swiftbutton.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$1.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$ResumableSub_StartFLP.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$ResumableSub_StartFLP2Reqs.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$tracker_BR.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\xuiviewsutils.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_check.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_checklist.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_clientes.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_detalleventa.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_detalle_promo.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_historico.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_login.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_mainpage.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_mapa_cliente.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_mapa_rutas.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_no_venta.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_panel_pick_ciego.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_pedido.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_principal.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_proditem.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_proditem2.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_productos.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_searchtemplate.dex -C:\Users\carlo\Desktop\Mazapa_Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_tabulador.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\coordinatorlayout\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\core\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\drawerlayout\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\fragment\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\media\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\androidx\swiperefreshlayout\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\base\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\common\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\com\google\android\gms\maps\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\animatedcounter.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\anotherprogressbar$ResumableSub_BusyLoop.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\anotherprogressbar.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$appupdater_BR.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$ResumableSub_download_newApk.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$ResumableSub_Service_Start.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater$_mnewversion.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\appupdater.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xbitset.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xbreadcrumb.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xbytesbuilder.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcache$_b4xcacheitem.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcache.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcollections.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcolortemplate$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcolortemplate$_colorpickerpart.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcolortemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcombobox$ResumableSub_RaiseEvent.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcombobox.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xcomparatorsort.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdatetemplate$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdatetemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog$ResumableSub_ShowCustom.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog$ResumableSub_ShowTemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xdialog.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xfloattextfield$ResumableSub_SwitchFromPasswordToRegular.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xfloattextfield.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xformatter$_b4xformatdata.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xformatter.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4ximageview.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xinputtemplate$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xinputtemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xlisttemplate$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xlisttemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xloadingindicator$ResumableSub_MainLoop.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xloadingindicator.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xlongtexttemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_B4XPage_Appear.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_b_envioBD_Click.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage$ResumableSub_b_terpc_Click.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xmainpage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xorderedmap.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpages.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesdelegator.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$PagesMenuListener.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$ResumableSub_HandleCloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$_b4amenuitem.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$_b4xpageinfo.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager$_b4xpageparent.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xpagesmanager.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xplusminus$ResumableSub_StartDownLoop.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xplusminus.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xradiobutton$ResumableSub_SetValueImpl.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xradiobutton.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xsearchtemplate$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xsearchtemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xseekbar.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xset.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xsignaturetemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xswitch$ResumableSub_SetValueImpl.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xswitch.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xtimedtemplate$ResumableSub_Show.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\b4xtimedtemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\batteryutilities.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cameraexclass$_camerainfoandid.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cameraexclass$_camerasize.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cameraexclass.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_DownloadApk.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_IsvalidWV.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_ReadWebVN.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_TryApkUpdate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate$ResumableSub_UpdateApk.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\cl_appupdate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_buscar$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_buscar.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist$ResumableSub_B4XPage_Appear.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist$ResumableSub_InitializeCamera2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cheklist.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cliente$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_cliente.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_b_GetDirs_Click.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_caculaRutaGPS.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_distanciaEntreCoords.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_generaListViewRutas.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_ListView1_ItemClick.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes$ResumableSub_traeRutaDia.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_clientes.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_detalleventa$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_detalleventa.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_detalle_promo.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_foto$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_foto.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_historico$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_historico.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_mapas.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_noventa.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_nuevocliente.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_pedidos.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_principal$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_principal.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_productos$ResumableSub_B4XPage_CloseRequest.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_productos.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_tabulador.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_ticketsdia.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_updateavailable$ResumableSub_B4XPage_Appear.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\c_updateavailable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\dbrequestmanager$_dbcommand.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\dbrequestmanager$_dbresult.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\dbrequestmanager.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\escposprinter$_animage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\escposprinter.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\fileprovider.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$B4AMenuItemsClickListener.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$HandleKeyDelayed.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$ResumeMessage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto$WaitForLayout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\foto.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\httpjob$_multipartfiledata.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\httpjob.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\httputils2service.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\madewithlove.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$B4AMenuItemsClickListener.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$HandleKeyDelayed.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$ResumeMessage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main$WaitForLayout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\main.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\manageexternalstorage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$B4AMenuItemsClickListener.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$HandleKeyDelayed.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$ResumableSub_MapFragment1_Ready.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$ResumeMessage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente$WaitForLayout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_cliente.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$B4AMenuItemsClickListener.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$HandleKeyDelayed.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$ResumableSub_MapFragment1_Ready.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$ResumeMessage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas$WaitForLayout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\mapa_rutas.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2$2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2$newinst2_BR.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\newinst2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$anim.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$attr.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$color.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$dimen.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$drawable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$id.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$integer.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$layout.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$string.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$style.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$styleable.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R$xml.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\R.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\roundslider.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\scrollinglabel$ResumableSub_StartScrolling.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\scrollinglabel.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter$2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter$starter_BR.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\starter.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\subs.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\swiftbutton.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$1.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$ResumableSub_StartFLP.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$ResumableSub_StartFLP2Reqs.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker$tracker_BR.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\tracker.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\xuiviewsutils.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_check.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_checklist.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_clientes.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_detalleventa.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_detalle_promo.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_historico.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_login.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_mainpage.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_mapa_cliente.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_mapa_rutas.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_no_venta.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_panel_pick_ciego.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_pedido.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_principal.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_proditem.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_proditem2.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_productos.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_searchtemplate.dex +C:\DESARROLLO_MOVIL\Mazapa-Reparto\B4A\Objects\dexed\reparto_mazapa\keymon\lat\designerscripts\LS_tabulador.dex diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.dex index b06ff79..4d85f8f 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_Service_Start.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.dex index 62b6a13..b2849b5 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater$ResumableSub_download_newApk.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater.dex index 76dd2c3..e92dc9b 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/appupdater.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xbytesbuilder.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xbytesbuilder.dex index 83c50af..e181e53 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xbytesbuilder.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xbytesbuilder.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xfloattextfield.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xfloattextfield.dex index f82146a..19aa124 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xfloattextfield.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xfloattextfield.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4ximageview.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4ximageview.dex index a056ab3..c0963ff 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4ximageview.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4ximageview.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex index 8996f2c..71c63ac 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_B4XPage_Appear.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex index cd86c3d..60e8a0a 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_envioBD_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex index fa9ac81..f0f22f4 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage$ResumableSub_b_terpc_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage.dex index 814ac2d..a812815 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xmainpage.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xpagesmanager.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xpagesmanager.dex index ad93b1b..6ae7017 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xpagesmanager.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xpagesmanager.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xsearchtemplate.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xsearchtemplate.dex index 04a19dd..1113dd2 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xsearchtemplate.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/b4xsearchtemplate.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex index 91f805c..2c31002 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_B4XPage_Appear.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex index 2d247d0..d6d75c4 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist$ResumableSub_InitializeCamera2.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist.dex index 1f0abab..ac7efb2 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cheklist.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cliente.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cliente.dex index 1592aa1..b3f58eb 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cliente.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_cliente.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex index 0eab3dd..acd1c0f 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_B4XPage_CloseRequest.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex index d52cd1a..f54cb2b 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_ListView1_ItemClick.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex index aa5db0c..5691c87 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_b_GetDirs_Click.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex index caf5324..0802046 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_caculaRutaGPS.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex index 8ca01a7..a30be53 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_distanciaEntreCoords.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex index 4bd8e52..8082ef0 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_generaListViewRutas.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex index 0cee7d7..1572c0f 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes$ResumableSub_traeRutaDia.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes.dex index 8de7b4e..0b32fe3 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_clientes.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_detalleventa.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_detalleventa.dex index 44d3be4..7e97b5d 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_detalleventa.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_detalleventa.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_foto.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_foto.dex index 24e5d8e..68b55fe 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_foto.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_foto.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_historico.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_historico.dex index a5512bf..ed00021 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_historico.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_historico.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_noventa.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_noventa.dex index 476a27a..9eff82c 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_noventa.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_noventa.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex index a009f61..07ef021 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal$ResumableSub_B4XPage_CloseRequest.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal.dex index 02775c2..48d93da 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_principal.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_productos.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_productos.dex index 97eda14..cdc9c7d 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_productos.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_productos.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_tabulador.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_tabulador.dex index 5a1a7d0..93ecc80 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_tabulador.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_tabulador.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex index c8c55a4..73cec53 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/c_updateavailable$ResumableSub_B4XPage_Appear.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cameraexclass.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cameraexclass.dex index 59ecc76..37e6381 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cameraexclass.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cameraexclass.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex index 69d639c..3a7e465 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_DownloadApk.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex index 402f2c2..68b2557 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_IsvalidWV.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex index 1739778..5ac4679 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_ReadWebVN.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex index bb2f0b5..9bc3cc2 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_TryApkUpdate.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex index 4a30fa4..3c7a6bb 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate$ResumableSub_UpdateApk.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate.dex index 637ba8a..93b5f0c 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/cl_appupdate.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/dbrequestmanager.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/dbrequestmanager.dex index d384ed1..bea9aad 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/dbrequestmanager.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/dbrequestmanager.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/escposprinter.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/escposprinter.dex index 544e362..4663324 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/escposprinter.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/escposprinter.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/fileprovider.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/fileprovider.dex index ff8bad1..691a43c 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/fileprovider.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/fileprovider.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/foto.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/foto.dex index 5db9c34..ef02d33 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/foto.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/foto.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httpjob.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httpjob.dex index a30ef99..8ec3675 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httpjob.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httpjob.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httputils2service.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httputils2service.dex index fa888bf..793aed0 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httputils2service.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/httputils2service.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/manageexternalstorage.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/manageexternalstorage.dex index 1b44597..e3533b9 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/manageexternalstorage.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/manageexternalstorage.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_cliente.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_cliente.dex index fbcbe78..df09e56 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_cliente.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_cliente.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.dex index c34cf0b..df17c6c 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas$ResumableSub_MapFragment1_Ready.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas.dex index cf95bf4..9c4a848 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/mapa_rutas.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/newinst2.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/newinst2.dex index 975efb9..a6617fd 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/newinst2.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/newinst2.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/starter.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/starter.dex index 43b6c97..e40321e 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/starter.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/starter.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/subs.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/subs.dex index 4e7e497..21b9245 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/subs.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/subs.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex index eeb4121..4822e0a 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker$ResumableSub_StartFLP2Reqs.dex differ diff --git a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker.dex b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker.dex index 379ad82..554a1ac 100644 Binary files a/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker.dex and b/B4A/Objects/dexed/reparto_mazapa/keymon/lat/tracker.dex differ diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/appupdater.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/appupdater.java index 5167283..4ac70f4 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/appupdater.java +++ b/B4A/Objects/src/reparto_mazapa/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("2589827","Descargando actualización",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8589827","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._ocultaprogreso /*String*/ (); //BA.debugLineNum = 178;BA.debugLine="Log(\"ocultamos prigreso DOWNLOAD APK\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("2589846","ocultamos prigreso DOWNLOAD APK",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8589846","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("2983052",("Using FileProvider? - "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("8983052",("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("21048590","FileProvider::GetFileUri - error - "+anywheresoftware.b4a.keywords.Common.LastException(processBA).getMessage(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("81048590","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("2393217","appUpdater(), Service_Create",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8393217","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("2917505","appUpdater(), Service_Destroy",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8917505","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("2458753","appUpdater(), Service_Start",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8458753","appUpdater(), Service_Start",0); //BA.debugLineNum = 112;BA.debugLine="B4XPages.MainPage.muestraProgreso(\"Buscando actua"; parent.mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._muestraprogreso /*String*/ ("Buscando actualización"); //BA.debugLineNum = 113;BA.debugLine="Log(\"Buscando actualización\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("2458756","Buscando actualización",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8458756","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("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); +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); //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("2458773","No new app",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8458773","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("2458780","New app true",0); +anywheresoftware.b4a.keywords.Common.LogImpl("8458780","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("2458786","appUpdater(), Job Failed, error "+anywheresoftware.b4a.keywords.Common.LastException(processBA).getMessage(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("8458786","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("2458789","appUpdater(), Job Failed "+parent._lnk,0); +anywheresoftware.b4a.keywords.Common.LogImpl("8458789","appUpdater(), Job Failed "+parent._lnk,0); if (true) break; case 19: diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xbytesbuilder.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xbytesbuilder.java index 99f7d2a..6895a8e 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xbytesbuilder.java +++ b/B4A/Objects/src/reparto_mazapa/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("926476546","Index too large",0);}; +__c.LogImpl("914876674","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("926542082","Index too large",0);}; +__c.LogImpl("914942210","Index too large",0);}; //BA.debugLineNum = 59;BA.debugLine="Append(Data)"; _append(_data); }else { diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xfloattextfield.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xfloattextfield.java index 8a855f3..1811987 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xfloattextfield.java +++ b/B4A/Objects/src/reparto_mazapa/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("943057176","Multiline not supported with password mode.",0); +__c.LogImpl("931457304","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_mazapa/keymon/lat/b4ximageview.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4ximageview.java index 6118901..f5e6ed6 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4ximageview.java +++ b/B4A/Objects/src/reparto_mazapa/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("945416475","Invalid resize mode: "+_mresizemode,0); +__c.LogImpl("933816603","Invalid resize mode: "+_mresizemode,0); break; } } ; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xmainpage.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xmainpage.java index 2cf4964..ee8fba3 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xmainpage.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xmainpage.java @@ -265,7 +265,7 @@ this.state = -1; //BA.debugLineNum = 555;BA.debugLine="Dim FileName As String = \"kmt.db\""; _filename = "kmt.db"; //BA.debugLineNum = 557;BA.debugLine="Log(\"xxxxxx:\"&Provider.SharedFolder)"; -parent.__c.LogImpl("21769477","xxxxxx:"+parent._provider._sharedfolder /*String*/ ,0); +parent.__c.LogImpl("81769477","xxxxxx:"+parent._provider._sharedfolder /*String*/ ,0); //BA.debugLineNum = 558;BA.debugLine="Sleep(1000)"; parent.__c.Sleep(ba,this,(int) (1000)); this.state = 1; @@ -357,7 +357,7 @@ _f = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObject //BA.debugLineNum = 794;BA.debugLine="f.Position=0"; _f.setPosition((int) (0)); //BA.debugLineNum = 795;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -__c.LogImpl("22687003",_f.GetString("RUTAA"),0); +__c.LogImpl("82687003",_f.GetString("RUTAA"),0); //BA.debugLineNum = 796;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 = 797;BA.debugLine="If a.RowCount>0 Then"; @@ -385,12 +385,12 @@ _c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObject //BA.debugLineNum = 808;BA.debugLine="If c.RowCount = 0 Then"; if (_c.getRowCount()==0) { //BA.debugLineNum = 810;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -__c.LogImpl("22687018",_f.GetString("RUTAA"),0); +__c.LogImpl("82687018",_f.GetString("RUTAA"),0); //BA.debugLineNum = 811;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 = 814;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -__c.LogImpl("22687022",_f.GetString("RUTAA"),0); +__c.LogImpl("82687022",_f.GetString("RUTAA"),0); //BA.debugLineNum = 815;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)]})); }; @@ -400,7 +400,7 @@ _f.Close(); //BA.debugLineNum = 820;BA.debugLine="a.Close"; _a.Close(); //BA.debugLineNum = 821;BA.debugLine="Log(\"Processed item \" & i)"; -__c.LogImpl("22687029","Processed item "+BA.NumberToString(_i),0); +__c.LogImpl("82687029","Processed item "+BA.NumberToString(_i),0); } }; //BA.debugLineNum = 823;BA.debugLine="et_buspc.Text = \"\""; @@ -422,7 +422,7 @@ return ""; public String _b_server_click() throws Exception{ //BA.debugLineNum = 574;BA.debugLine="Private Sub b_server_Click"; //BA.debugLineNum = 575;BA.debugLine="Log(\"Guardar servidor\")"; -__c.LogImpl("21900545","Guardar servidor",0); +__c.LogImpl("81900545","Guardar servidor",0); //BA.debugLineNum = 576;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 = 577;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_VARIA"; @@ -433,11 +433,11 @@ _b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*Str _starter._server /*String*/ = _b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ; //BA.debugLineNum = 580;BA.debugLine="If logger Then Log(\"Inicializamos reqManager con"; if (_logger) { -__c.LogImpl("21900550","Inicializamos reqManager con "+_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; +__c.LogImpl("81900550","Inicializamos reqManager con "+_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; //BA.debugLineNum = 581;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serve"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 582;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("21900552",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("81900552",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 583;BA.debugLine="reinicializaReqManager"; _reinicializareqmanager(); //BA.debugLineNum = 584;BA.debugLine="p_appUpdate.Visible = False"; @@ -616,7 +616,7 @@ parent._f = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.Ab //BA.debugLineNum = 859;BA.debugLine="f.Position=0"; parent._f.setPosition((int) (0)); //BA.debugLineNum = 860;BA.debugLine="Log(f.GetString(\"RUTAA\"))"; -parent.__c.LogImpl("22752545",parent._f.GetString("RUTAA"),0); +parent.__c.LogImpl("82752545",parent._f.GetString("RUTAA"),0); //BA.debugLineNum = 862;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 = 863;BA.debugLine="If a.RowCount>0 Then"; @@ -641,7 +641,7 @@ case 17: this.state = 18; ; //BA.debugLineNum = 866;BA.debugLine="Log(a.GetString(\"ID_ALMACEN\"))"; -parent.__c.LogImpl("22752551",parent._a.GetString("ID_ALMACEN"),0); +parent.__c.LogImpl("82752551",parent._a.GetString("ID_ALMACEN"),0); //BA.debugLineNum = 868;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"))); @@ -711,7 +711,7 @@ parent._f.Close(); //BA.debugLineNum = 884;BA.debugLine="a.Close"; parent._a.Close(); //BA.debugLineNum = 885;BA.debugLine="Log(\"Processed item \" & i)"; -parent.__c.LogImpl("22752570","Processed item "+BA.NumberToString(_i),0); +parent.__c.LogImpl("82752570","Processed item "+BA.NumberToString(_i),0); if (true) break; if (true) break; @@ -720,7 +720,7 @@ case 28: this.state = 29; ; //BA.debugLineNum = 887;BA.debugLine="Log(\"Finished processing all items\")"; -parent.__c.LogImpl("22752572","Finished processing all items",0); +parent.__c.LogImpl("82752572","Finished processing all items",0); //BA.debugLineNum = 888;BA.debugLine="P_CIEGO.Visible = False"; parent._p_ciego.setVisible(parent.__c.False); //BA.debugLineNum = 889;BA.debugLine="et_buspc.Text = \"\""; @@ -925,7 +925,7 @@ this.state = 16; //BA.debugLineNum = 231;BA.debugLine="ToastMessageShow(\"No permission\", True)"; parent.__c.ToastMessageShow(BA.ObjectToCharSequence("No permission"),parent.__c.True); //BA.debugLineNum = 232;BA.debugLine="Log(\"Sin permisos\")"; -parent.__c.LogImpl("21376270","Sin permisos",0); +parent.__c.LogImpl("81376270","Sin permisos",0); if (true) break; case 16: @@ -1209,11 +1209,11 @@ _server = "http://187.189.244.154:1781"; //BA.debugLineNum = 203;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serve"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 204;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("21310816",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("81310816",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 205;BA.debugLine="Label1.Text = Application.VersionName"; _label1.setText(BA.ObjectToCharSequence(__c.Application.getVersionName())); //BA.debugLineNum = 207;BA.debugLine="Log(\"provider\")"; -__c.LogImpl("21310819","provider",0); +__c.LogImpl("81310819","provider",0); //BA.debugLineNum = 208;BA.debugLine="Provider.Initialize"; _provider._initialize /*String*/ (ba); //BA.debugLineNum = 216;BA.debugLine="End Sub"; @@ -1541,11 +1541,11 @@ _fecha2 = __c.Regex.Split("-",_fecha[(int) (0)]); //BA.debugLineNum = 663;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&\""; _fecha3 = _fecha2[(int) (2)]+"/"+_fecha2[(int) (1)]+"/"+_fecha2[(int) (0)]; //BA.debugLineNum = 664;BA.debugLine="Log(fecha3)"; -__c.LogImpl("22424852",_fecha3,0); +__c.LogImpl("82424852",_fecha3,0); //BA.debugLineNum = 665;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1"; _hora = __c.Regex.Split("\\.",_fecha[(int) (1)]); //BA.debugLineNum = 666;BA.debugLine="Log(hora(0))"; -__c.LogImpl("22424854",_hora[(int) (0)],0); +__c.LogImpl("82424854",_hora[(int) (0)],0); }; //BA.debugLineNum = 671;BA.debugLine="Private cI As Cursor"; _ci = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); @@ -1633,7 +1633,7 @@ _clv_pick_ciego._clear(); //BA.debugLineNum = 733;BA.debugLine="q_buscar = \"%\" & et_buspc.Text & \"%\""; _q_buscar = "%"+_et_buspc.getText()+"%"; //BA.debugLineNum = 734;BA.debugLine="Log(q_buscar)"; -__c.LogImpl("22621447",_q_buscar,0); +__c.LogImpl("82621447",_q_buscar,0); //BA.debugLineNum = 735;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 = 736;BA.debugLine="If c.RowCount > 0 Then"; @@ -1813,7 +1813,7 @@ final int groupLen25 = group25.getSize() for (; index25 < groupLen25;index25++){ _records = (Object[])(group25.Get(index25)); //BA.debugLineNum = 317;BA.debugLine="Log(\"Coordenadas del almacen: \" & records(res"; -__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); +__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); //BA.debugLineNum = 318;BA.debugLine="Private lat, lon As Double"; _lat = 0; _lon = 0; @@ -1885,7 +1885,7 @@ _cat_pa_pass = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Column //BA.debugLineNum = 351;BA.debugLine="If CAT_PA_PASS = et_codigo.Text Then"; if ((_cat_pa_pass).equals(_et_codigo.getText())) { //BA.debugLineNum = 352;BA.debugLine="Log(CAT_PA_PASS)"; -__c.LogImpl("21507392",_cat_pa_pass,0); +__c.LogImpl("81507392",_cat_pa_pass,0); //BA.debugLineNum = 353;BA.debugLine="p_validacion.Visible = False"; _p_validacion.setVisible(__c.False); //BA.debugLineNum = 354;BA.debugLine="et_codigo.Text = \"\""; @@ -1921,9 +1921,9 @@ _records = (Object[])(group73.Get(index73)); //BA.debugLineNum = 372;BA.debugLine="Dim CUENTA As String = records(result.Columns"; _cuenta = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CUENTA"))))]); //BA.debugLineNum = 373;BA.debugLine="Log(CUENTA)"; -__c.LogImpl("21507413",_cuenta,0); +__c.LogImpl("81507413",_cuenta,0); //BA.debugLineNum = 374;BA.debugLine="Log(id)"; -__c.LogImpl("21507414",_id,0); +__c.LogImpl("81507414",_id,0); //BA.debugLineNum = 375;BA.debugLine="If CUENTA = 0 Then"; if ((_cuenta).equals(BA.NumberToString(0))) { //BA.debugLineNum = 376;BA.debugLine="c = Starter.skmt.ExecQuery2(\"SELECT * FROM P"; @@ -1959,7 +1959,7 @@ _cmd.Initialize(); //BA.debugLineNum = 395;BA.debugLine="cmd.Name = \"update_PICKCIEGO_MAZAPA\""; _cmd.Name /*String*/ = "update_PICKCIEGO_MAZAPA"; //BA.debugLineNum = 396;BA.debugLine="Log(\"FECHA\" & c.GetString(\"PC_FECHA\"))"; -__c.LogImpl("21507436","FECHA"+_c.GetString("PC_FECHA"),0); +__c.LogImpl("81507436","FECHA"+_c.GetString("PC_FECHA"),0); //BA.debugLineNum = 397;BA.debugLine="cmd.Parameters = Array As Object(c.GetStrin"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("PC_CANT")),(Object)(_c.GetString("PC_ID_PROD")),(Object)(_c.GetString("PC_ALMACEN")),(Object)(_c.GetString("PC_RUTA")),(Object)(_c.GetString("PC_FECHA")),(Object)("REPARTO")}; //BA.debugLineNum = 398;BA.debugLine="reqManager.ExecuteCommand(cmd, \"update_PC\")"; @@ -2070,7 +2070,7 @@ _c2.setPosition((int) (0)); if (_c2.getRowCount()>0) { _c2.GetString("USUARIO");}; //BA.debugLineNum = 457;BA.debugLine="Log(CUENTA & \"----------------------!!\")"; -__c.LogImpl("21507497",_cuenta+"----------------------!!",0); +__c.LogImpl("81507497",_cuenta+"----------------------!!",0); //BA.debugLineNum = 458;BA.debugLine="If CUENTA = \"0\" Then"; if ((_cuenta).equals("0")) { //BA.debugLineNum = 460;BA.debugLine="c = Starter.skmt.ExecQuery2(\"SELECT * FROM E"; @@ -2108,7 +2108,7 @@ _cmd.Name /*String*/ = "update_MontoCuenta_MAZAPArep"; //BA.debugLineNum = 481;BA.debugLine="cmd.Parameters = Array As Object(c.GetStrin"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("EML_MONTO")),(Object)(_c.GetString("EML_ALMACEN")),(Object)(_c.GetString("EML_RUTA")),(Object)(_c.GetString("EML_USUARIO")),(Object)(_c.GetString("EML_FECHA_PED")),(Object)("REPARTO")}; //BA.debugLineNum = 483;BA.debugLine="Log(c.GetString(\"EML_MONTO\")& \" \" & c.GetSt"; -__c.LogImpl("21507523",_c.GetString("EML_MONTO")+" "+_c.GetString("EML_ALMACEN")+" "+_c.GetString("EML_RUTA")+" "+_c.GetString("EML_USUARIO"),0); +__c.LogImpl("81507523",_c.GetString("EML_MONTO")+" "+_c.GetString("EML_ALMACEN")+" "+_c.GetString("EML_RUTA")+" "+_c.GetString("EML_USUARIO"),0); //BA.debugLineNum = 484;BA.debugLine="reqManager.ExecuteCommand(cmd, \"update_MC\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("update_MC")); //BA.debugLineNum = 485;BA.debugLine="MsgboxAsync(\"Se sobre escribio el Monto\", \""; @@ -2169,7 +2169,7 @@ _et_server.setText(BA.ObjectToCharSequence(_value)); //BA.debugLineNum = 592;BA.debugLine="reqManager.Initialize(Me, Value)"; _reqmanager._initialize /*String*/ (ba,this,BA.ObjectToString(_value)); //BA.debugLineNum = 593;BA.debugLine="LogColor($\"ReqServer = ${Value}\"$, Colors.red)"; -__c.LogImpl("21966085",("ReqServer = "+__c.SmartStringFormatter("",_value)+""),__c.Colors.Red); +__c.LogImpl("81966085",("ReqServer = "+__c.SmartStringFormatter("",_value)+""),__c.Colors.Red); //BA.debugLineNum = 594;BA.debugLine="ToastMessageShow(\"Servidor modificado\", False)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Servidor modificado"),__c.False); //BA.debugLineNum = 595;BA.debugLine="End Sub"; @@ -2219,9 +2219,9 @@ if (_a.getRowCount()>0) { _a.setPosition((int) (0)); }; //BA.debugLineNum = 939;BA.debugLine="Log(a.GetString(\"ID_ALMACEN\"))"; -__c.LogImpl("22949128",_a.GetString("ID_ALMACEN"),0); +__c.LogImpl("82949128",_a.GetString("ID_ALMACEN"),0); //BA.debugLineNum = 940;BA.debugLine="Log(f.GetString(\"CAT_CL_RUTA\"))"; -__c.LogImpl("22949129",_f.GetString("CAT_CL_RUTA"),0); +__c.LogImpl("82949129",_f.GetString("CAT_CL_RUTA"),0); //BA.debugLineNum = 942;BA.debugLine="If et_codigo.Text = \"KMTS1\" Then"; if ((_et_codigo.getText()).equals("KMTS1")) { //BA.debugLineNum = 943;BA.debugLine="p_validacion.Visible = False"; @@ -2255,9 +2255,9 @@ public String _reinicializareqmanager() throws Exception{ _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); //BA.debugLineNum = 599;BA.debugLine="If logger Then Log(B4XPages.MainPage.server)"; if (_logger) { -__c.LogImpl("22031618",_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; +__c.LogImpl("82031618",_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ,0);}; //BA.debugLineNum = 600;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("22031619",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); +__c.LogImpl("82031619",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); //BA.debugLineNum = 601;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xpagesmanager.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xpagesmanager.java index 4de30bb..afc96a2 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xpagesmanager.java +++ b/B4A/Objects/src/reparto_mazapa/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("931195139",("Page with this id already exists: "+__c.SmartStringFormatter("",(Object)(_idtolower))+"!"),0); +__c.LogImpl("919595267",("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("931064085","#SupportedOrientations attribute must be set to landscape or portrait.",_xui.Color_Red); +__c.LogImpl("919464213","#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("931457284","Only top page can be closed",0); +__c.LogImpl("919857412","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("931457287","First page cannot be closed",0); +__c.LogImpl("919857415","First page cannot be closed",0); //BA.debugLineNum = 217;BA.debugLine="Return"; if (true) return ""; }; @@ -590,9 +590,9 @@ _pi = (reparto_mazapa.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("932112643","Error: page id not found: "+_id,0); +__c.LogImpl("920512771","Error: page id not found: "+_id,0); //BA.debugLineNum = 402;BA.debugLine="Log(\"Ids: \" & IdToB4XPage.Keys) 'ignore"; -__c.LogImpl("932112644","Ids: "+BA.ObjectToString(_idtob4xpage._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ()),0); +__c.LogImpl("920512772","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("930998555","Call B4XPages.GetManager.LogEvents = True to enable logging B4XPages events.",0); +__c.LogImpl("919398683","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("933226755",_msg,0); +__c.LogImpl("921626883",_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("932702478","Too many parameters",0); +__c.LogImpl("921102606","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("932768014","Too many parameters",0); +__c.LogImpl("921168142","Too many parameters",0); break; } } ; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xsearchtemplate.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xsearchtemplate.java index 4c31b7c..c622179 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/b4xsearchtemplate.java +++ b/B4A/Objects/src/reparto_mazapa/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("951183647","Index time: "+BA.NumberToString((__c.DateTime.getNow()-_starttime))+" ms ("+BA.NumberToString(_items.getSize())+" Items)",0); +__c.LogImpl("939583775","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_mazapa/keymon/lat/c_cheklist.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_cheklist.java index 637bf41..2861b2c 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_cheklist.java +++ b/B4A/Objects/src/reparto_mazapa/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("27471112","creado en promotoria "+_dirp+_dir,0); +__c.LogImpl("87471112","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("27471115","creado en raiz",0); +__c.LogImpl("87471115","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("27471121","creado en promotoria "+_dirp+_dir+_dir2,0); +__c.LogImpl("87471121","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("27471124","creado en raiz",0); +__c.LogImpl("87471124","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("24325379",parent._c.GetString("PLACA"),0); +parent.__c.LogImpl("84325379",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("24325387","inicializamos Camara",0); +parent.__c.LogImpl("84325387","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("24325398","SDK = "+BA.NumberToString(_sdkversion)+" : Requesting WRITE_EXTERNAL_STORAGE permission",0); +parent.__c.LogImpl("84325398","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("24325402",("PERMISSION_WRITE_EXTERNAL_STORAGE = "+parent.__c.SmartStringFormatter("",(Object)(_result))+""),0); +parent.__c.LogImpl("84325402",("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("24325404","SDK = "+BA.NumberToString(_sdkversion)+" : Requesting MANAGE_EXTERNAL_STORAGE permission",0); +parent.__c.LogImpl("84325404","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("24325405","On Entry MANAGE_EXTERNAL_STORAGE = "+BA.ObjectToString(parent._mes1._haspermission /*boolean*/ ()),0); +parent.__c.LogImpl("84325405","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("24325409","Getting permission",0); +parent.__c.LogImpl("84325409","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("24587547","tome foto",0); +__c.LogImpl("84587547","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("24587555","creado en promotoria "+_dirp+_dir,0); +__c.LogImpl("84587555","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("24587558","creado en raiz",0); +__c.LogImpl("84587558","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("24587564","creado en promotoria "+_dirp+_dir+_dir2,0); +__c.LogImpl("84587564","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("24587567","creado en raiz",0); +__c.LogImpl("84587567","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("24587573","Picture saved."+__c.CRLF+"File size: "+BA.NumberToString(__c.File.Size(_dir,_filename))+_dir+","+_filename,0); +__c.LogImpl("84587573","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("24587576",_nombrefoto,0); +__c.LogImpl("84587576",_nombrefoto,0); //BA.debugLineNum = 295;BA.debugLine="Log(nombrefoto1)"; -__c.LogImpl("24587577",_nombrefoto1,0); +__c.LogImpl("84587577",_nombrefoto1,0); //BA.debugLineNum = 296;BA.debugLine="Log(nombrefoto2)"; -__c.LogImpl("24587578",_nombrefoto2,0); +__c.LogImpl("84587578",_nombrefoto2,0); //BA.debugLineNum = 297;BA.debugLine="Log(nombrefoto3)"; -__c.LogImpl("24587579",_nombrefoto3,0); +__c.LogImpl("84587579",_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("24521985","Camara ready",0); +__c.LogImpl("84521985","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("24521991",BA.ObjectToString(_camex._getpreviewsize /*reparto_mazapa.keymon.lat.cameraexclass._camerasize*/ ()),0); +__c.LogImpl("84521991",BA.ObjectToString(_camex._getpreviewsize /*reparto_mazapa.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("24521994","Cannot open camera",0); +__c.LogImpl("84521994","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("27405570",_itemselect4,0); +__c.LogImpl("87405570",_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("27340034",_itemselect3,0); +__c.LogImpl("87340034",_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("27274498",_itemselect2,0); +__c.LogImpl("87274498",_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("27208962",_itemselect1,0); +__c.LogImpl("87208962",_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("24456454","inicializamos Camara",0); +parent.__c.LogImpl("84456454","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("27602177","JOBDONE CLIENTE . "+BA.ObjectToString(_job._success /*boolean*/ ),0); +__c.LogImpl("87602177","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("27602181","Error: "+BA.ObjectToString(_job._tag /*Object*/ )+" : "+_job._errormessage /*String*/ ,__c.Colors.Blue); +__c.LogImpl("87602181","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("27602183","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); +__c.LogImpl("87602183","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.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("27602189",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); +__c.LogImpl("87602189",("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("27602192",("Pedido PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); +__c.LogImpl("87602192",("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("27602212",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("87602212",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_mazapa.keymon.lat.dbrequestmanager._dbcommand _cmd = null; //BA.debugLineNum = 724;BA.debugLine="Sub mandaPendientes"; //BA.debugLineNum = 725;BA.debugLine="Log(\"MandaPendientes\")"; -__c.LogImpl("27536641","MandaPendientes",0); +__c.LogImpl("87536641","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("27536644",("Pedido PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); +__c.LogImpl("87536644",("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_mazapa/keymon/lat/c_cliente.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_cliente.java index f4fdebf..798ac59 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_cliente.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_cliente.java @@ -116,58 +116,58 @@ public String _activity_pause(boolean _userclosed) throws Exception{ return ""; } public String _b_imp_click() throws Exception{ - //BA.debugLineNum = 411;BA.debugLine="Sub B_IMP_Click"; - //BA.debugLineNum = 825;BA.debugLine="Guardado"; + //BA.debugLineNum = 412;BA.debugLine="Sub B_IMP_Click"; + //BA.debugLineNum = 826;BA.debugLine="Guardado"; _guardado(); - //BA.debugLineNum = 826;BA.debugLine="End Sub"; + //BA.debugLineNum = 827;BA.debugLine="End Sub"; return ""; } public String _b_noentrega_click() throws Exception{ - //BA.debugLineNum = 368;BA.debugLine="Sub b_noEntrega_Click"; - //BA.debugLineNum = 370;BA.debugLine="B4XPages.ShowPage(\"noVenta\")"; + //BA.debugLineNum = 369;BA.debugLine="Sub b_noEntrega_Click"; + //BA.debugLineNum = 371;BA.debugLine="B4XPages.ShowPage(\"noVenta\")"; _b4xpages._showpage /*String*/ (ba,"noVenta"); - //BA.debugLineNum = 371;BA.debugLine="End Sub"; + //BA.debugLineNum = 372;BA.debugLine="End Sub"; return ""; } public String _b_paso2_click() throws Exception{ anywheresoftware.b4a.sql.SQL.CursorWrapper _mandamapa = null; - //BA.debugLineNum = 900;BA.debugLine="Sub B_PASO2_Click"; - //BA.debugLineNum = 901;BA.debugLine="DateTime.DateFormat = \"MM/dd/yyyy\""; + //BA.debugLineNum = 901;BA.debugLine="Sub B_PASO2_Click"; + //BA.debugLineNum = 902;BA.debugLine="DateTime.DateFormat = \"MM/dd/yyyy\""; __c.DateTime.setDateFormat("MM/dd/yyyy"); - //BA.debugLineNum = 902;BA.debugLine="sDate=DateTime.Date(DateTime.Now)"; + //BA.debugLineNum = 903;BA.debugLine="sDate=DateTime.Date(DateTime.Now)"; _sdate = __c.DateTime.Date(__c.DateTime.getNow()); - //BA.debugLineNum = 903;BA.debugLine="sTime=DateTime.Time(DateTime.Now)"; + //BA.debugLineNum = 904;BA.debugLine="sTime=DateTime.Time(DateTime.Now)"; _stime = __c.DateTime.Time(__c.DateTime.getNow()); - //BA.debugLineNum = 904;BA.debugLine="c=Starter.skmt.ExecQuery(\"select CUENTA from cuen"; + //BA.debugLineNum = 905;BA.debugLine="c=Starter.skmt.ExecQuery(\"select CUENTA from cuen"; _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 CUENTA from cuentaa"))); - //BA.debugLineNum = 905;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 906;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 906;BA.debugLine="cuenta = c.GetString(\"CUENTA\")"; + //BA.debugLineNum = 907;BA.debugLine="cuenta = c.GetString(\"CUENTA\")"; _cuenta = _c.GetString("CUENTA"); - //BA.debugLineNum = 907;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from usu"; + //BA.debugLineNum = 908;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from usu"; _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"))); - //BA.debugLineNum = 908;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 909;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 909;BA.debugLine="usuario = c.GetString(\"USUARIO\")"; + //BA.debugLineNum = 910;BA.debugLine="usuario = c.GetString(\"USUARIO\")"; _usuario = _c.GetString("USUARIO"); - //BA.debugLineNum = 910;BA.debugLine="c.Close"; + //BA.debugLineNum = 911;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 911;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM NOVENTA WH"; + //BA.debugLineNum = 912;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM NOVENTA WH"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM NOVENTA WHERE NV_CLIENTE IN (select cuenta from cuentaa)"); - //BA.debugLineNum = 912;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO NOVENTA"; + //BA.debugLineNum = 913;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) VALUES(?,?,?,?,?,?,?) ",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_cuenta),(Object)(_sdate+_stime),(Object)(_usuario),(Object)("PASO"),(Object)("PASO ESPERA"),(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._lat_gps /*String*/ ),(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._lon_gps /*String*/ )})); - //BA.debugLineNum = 914;BA.debugLine="Dim mandamapa As Cursor = Starter.skmt.ExecQuery("; + //BA.debugLineNum = 915;BA.debugLine="Dim mandamapa As Cursor = Starter.skmt.ExecQuery("; _mandamapa = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _mandamapa = (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 kmt_info WHERE gestion = 0"))); - //BA.debugLineNum = 915;BA.debugLine="If mandamapa.RowCount > 0 Then"; + //BA.debugLineNum = 916;BA.debugLine="If mandamapa.RowCount > 0 Then"; if (_mandamapa.getRowCount()>0) { - //BA.debugLineNum = 916;BA.debugLine="StartActivity(MAPA_RUTAS)"; + //BA.debugLineNum = 917;BA.debugLine="StartActivity(MAPA_RUTAS)"; __c.StartActivity(ba,(Object)(_mapa_rutas.getObject())); }else if(_mandamapa.getRowCount()==0) { - //BA.debugLineNum = 918;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; + //BA.debugLineNum = 919;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; _b4xpages._showpage /*String*/ (ba,"Principal"); }; - //BA.debugLineNum = 920;BA.debugLine="End Sub"; + //BA.debugLineNum = 921;BA.debugLine="End Sub"; return ""; } public String _b4xpage_appear() throws Exception{ @@ -387,13 +387,13 @@ _cuenta3 = BA.NumberToString((double)(Double.parseDouble(_cuenta3))+(double)(Dou }; }; //BA.debugLineNum = 240;BA.debugLine="Log(cuenta0)"; -__c.LogImpl("27864440",_cuenta0,0); +__c.LogImpl("87864440",_cuenta0,0); //BA.debugLineNum = 241;BA.debugLine="Log(Cuenta1)"; -__c.LogImpl("27864441",_cuenta1,0); +__c.LogImpl("87864441",_cuenta1,0); //BA.debugLineNum = 242;BA.debugLine="Log(Cuenta2)"; -__c.LogImpl("27864442",_cuenta2,0); +__c.LogImpl("87864442",_cuenta2,0); //BA.debugLineNum = 243;BA.debugLine="Log(Cuenta3)"; -__c.LogImpl("27864443",_cuenta3,0); +__c.LogImpl("87864443",_cuenta3,0); //BA.debugLineNum = 245;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 = 246;BA.debugLine="L_CANT.Text = NumberFormat2((arti + arti1 +arti2"; @@ -420,7 +420,7 @@ _printer1._disconnect /*String*/ (); //BA.debugLineNum = 265;BA.debugLine="Printer1.Connect"; _printer1._connect /*boolean*/ (); //BA.debugLineNum = 266;BA.debugLine="Log(\"2\")"; -__c.LogImpl("27864466","2",0); +__c.LogImpl("87864466","2",0); }; //BA.debugLineNum = 269;BA.debugLine="Dim pag As Cursor = Starter.skmt.ExecQuery(\"selec"; _pag = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); @@ -490,12 +490,12 @@ parent.__c.ReturnFromResumableSub(this,null);return;} case 0: //C this.state = -1; - //BA.debugLineNum = 376;BA.debugLine="B4XPages.ShowPage(\"Clientes\")"; + //BA.debugLineNum = 377;BA.debugLine="B4XPages.ShowPage(\"Clientes\")"; parent._b4xpages._showpage /*String*/ (ba,"Clientes"); - //BA.debugLineNum = 377;BA.debugLine="Return False"; + //BA.debugLineNum = 378;BA.debugLine="Return False"; if (true) { parent.__c.ReturnFromResumableSub(this,(Object)(parent.__c.False));return;}; - //BA.debugLineNum = 378;BA.debugLine="End Sub"; + //BA.debugLineNum = 379;BA.debugLine="End Sub"; if (true) break; } @@ -547,7 +547,7 @@ if (_c.GetString("CAT_CL_ATIENTE2")!= null && (_c.GetString("CAT_CL_ATIENTE2")). //BA.debugLineNum = 105;BA.debugLine="l_atiende2.Text = c.GetString(\"CAT_CL_ATIENTE2\")"; _l_atiende2.setText(BA.ObjectToCharSequence(_c.GetString("CAT_CL_ATIENTE2"))); //BA.debugLineNum = 106;BA.debugLine="Log(\"|\"&c.GetString(\"CAT_CL_ATIENTE2\")&\"|\")"; -__c.LogImpl("27798809","|"+_c.GetString("CAT_CL_ATIENTE2")+"|",0); +__c.LogImpl("87798809","|"+_c.GetString("CAT_CL_ATIENTE2")+"|",0); }else { //BA.debugLineNum = 108;BA.debugLine="l_atiende2.Text = \" \""; _l_atiende2.setText(BA.ObjectToCharSequence(" ")); @@ -714,8 +714,8 @@ _l_montoefec = new anywheresoftware.b4a.objects.LabelWrapper(); return ""; } public String _datos_click() throws Exception{ - //BA.debugLineNum = 385;BA.debugLine="Sub DATOS_Click"; - //BA.debugLineNum = 387;BA.debugLine="End Sub"; + //BA.debugLineNum = 386;BA.debugLine="Sub DATOS_Click"; + //BA.debugLineNum = 388;BA.debugLine="End Sub"; return ""; } public String _gest_click() throws Exception{ @@ -791,76 +791,70 @@ _d.setPosition((int) (0)); _rutapre = _d.GetString("CAT_CL_RUTA"); //BA.debugLineNum = 339;BA.debugLine="d.Close"; _d.Close(); - //BA.debugLineNum = 340;BA.debugLine="d = Starter.skmt.ExecQuery(\"SELECT HVD_FECHA FROM"; -_d = (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_FECHA FROM HIST_VENTAS WHERE HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)"))); - //BA.debugLineNum = 341;BA.debugLine="d.Position = 0"; -_d.setPosition((int) (0)); - //BA.debugLineNum = 342;BA.debugLine="Dim fechaprev As String = d.GetString(\"HVD_FECHA\""; -_fechaprev = _d.GetString("HVD_FECHA"); - //BA.debugLineNum = 343;BA.debugLine="d.Close"; -_d.Close(); - //BA.debugLineNum = 345;BA.debugLine="Dim rutaactualizar As String"; + //BA.debugLineNum = 343;BA.debugLine="Dim fechaprev As String = Subs.traefECHAPREV"; +_fechaprev = _subs._traefechaprev /*String*/ (ba); + //BA.debugLineNum = 346;BA.debugLine="Dim rutaactualizar As String"; _rutaactualizar = ""; - //BA.debugLineNum = 346;BA.debugLine="Dim rut As Cursor = Starter.skmt.ExecQuery(\"SELEC"; + //BA.debugLineNum = 347;BA.debugLine="Dim rut As Cursor = Starter.skmt.ExecQuery(\"SELEC"; _rut = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _rut = (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 FROM kmt_info WHERE CAT_CL_CODIGO IN (SELECT CUENTA FROM CUENTAA)"))); - //BA.debugLineNum = 347;BA.debugLine="If rut.RowCount > 0 Then"; + //BA.debugLineNum = 348;BA.debugLine="If rut.RowCount > 0 Then"; if (_rut.getRowCount()>0) { - //BA.debugLineNum = 348;BA.debugLine="rut.Position = 0"; + //BA.debugLineNum = 349;BA.debugLine="rut.Position = 0"; _rut.setPosition((int) (0)); - //BA.debugLineNum = 349;BA.debugLine="rutaactualizar = rut.GetString(\"CAT_CL_RUTA\")"; + //BA.debugLineNum = 350;BA.debugLine="rutaactualizar = rut.GetString(\"CAT_CL_RUTA\")"; _rutaactualizar = _rut.GetString("CAT_CL_RUTA"); }; - //BA.debugLineNum = 352;BA.debugLine="Starter.skmt.ExecNonQuery($\"DELETE FROM NOVENTA W"; + //BA.debugLineNum = 353;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))+"' ")); - //BA.debugLineNum = 353;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO NOVENTA ("; + //BA.debugLineNum = 354;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_mazapa.keymon.lat.b4xmainpage*/ (ba)._lat_gps /*String*/ ),(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._lon_gps /*String*/ ),(Object)(_rutaactualizar)})); - //BA.debugLineNum = 354;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO REPARTO_G"; + //BA.debugLineNum = 355;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO REPARTO_G"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO REPARTO_GEO (CLIENTE, USUARIO, FECHA_PUNTEO, LATITUD, LONGITUD, ALMACEN, RUTA_REPARTO, RUTA_PREV, FECHA_PREVENTA, TIPO,ENVIO) VALUES(?,?,?,?,?,?,?,?,?,?,0)",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{_la_cuenta.getText(),_usuario,_sdate+" "+_stime,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._lat_gps /*String*/ ,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._lon_gps /*String*/ ,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._almacen /*String*/ ,_ruta,_rutapre,_fechaprev,"ENTREGADO"})); - //BA.debugLineNum = 355;BA.debugLine="Starter.skmt.ExecNonQuery($\"UPDATE kmt_info set g"; + //BA.debugLineNum = 356;BA.debugLine="Starter.skmt.ExecNonQuery($\"UPDATE kmt_info set g"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("UPDATE kmt_info set gestion = 2, HORAENT = '"+__c.SmartStringFormatter("",(Object)(_sdate+" "+_stime))+"' where CAT_CL_CODIGO In (select cuenta from cuentaa) and CAT_CL_RUTA = '"+__c.SmartStringFormatter("",(Object)(_rutaactualizar))+"' ")); - //BA.debugLineNum = 356;BA.debugLine="Starter.skmt.ExecNonQuery(\"update HIST_VENTAS SET"; + //BA.debugLineNum = 357;BA.debugLine="Starter.skmt.ExecNonQuery(\"update HIST_VENTAS SET"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("update HIST_VENTAS SET HVD_ESTATUS = 1 WHERE HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)"); - //BA.debugLineNum = 357;BA.debugLine="mandaPendientesreparto"; + //BA.debugLineNum = 358;BA.debugLine="mandaPendientesreparto"; _mandapendientesreparto(); - //BA.debugLineNum = 360;BA.debugLine="Dim mandamapa As Cursor = Starter.skmt.ExecQuery("; + //BA.debugLineNum = 361;BA.debugLine="Dim mandamapa As Cursor = Starter.skmt.ExecQuery("; _mandamapa = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); -_mandamapa = (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 kmt_info WHERE gestion = 0"))); - //BA.debugLineNum = 361;BA.debugLine="If mandamapa.RowCount > 0 Then"; +_mandamapa = (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 kmt_info WHERE gestion = 0 and CAT_CL_CODIGO <> 63403"))); + //BA.debugLineNum = 362;BA.debugLine="If mandamapa.RowCount > 0 Then"; if (_mandamapa.getRowCount()>0) { - //BA.debugLineNum = 362;BA.debugLine="StartActivity(MAPA_RUTAS)"; + //BA.debugLineNum = 363;BA.debugLine="StartActivity(MAPA_RUTAS)"; __c.StartActivity(ba,(Object)(_mapa_rutas.getObject())); }else if(_mandamapa.getRowCount()==0) { - //BA.debugLineNum = 364;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; + //BA.debugLineNum = 365;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; _b4xpages._showpage /*String*/ (ba,"Principal"); }; - //BA.debugLineNum = 366;BA.debugLine="End Sub"; + //BA.debugLineNum = 367;BA.debugLine="End Sub"; return ""; } public String _guardar_click() throws Exception{ anywheresoftware.b4a.sql.SQL.CursorWrapper _mandamapa = null; - //BA.debugLineNum = 389;BA.debugLine="Sub Guardar_Click"; - //BA.debugLineNum = 390;BA.debugLine="Dim mandamapa As Cursor = Starter.skmt.ExecQuery("; + //BA.debugLineNum = 390;BA.debugLine="Sub Guardar_Click"; + //BA.debugLineNum = 391;BA.debugLine="Dim mandamapa As Cursor = Starter.skmt.ExecQuery("; _mandamapa = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); -_mandamapa = (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 kmt_info WHERE gestion = 0"))); - //BA.debugLineNum = 391;BA.debugLine="If mandamapa.RowCount > 0 Then"; +_mandamapa = (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 kmt_info WHERE gestion = 0 AND cat_cl_codigo <> 63403"))); + //BA.debugLineNum = 392;BA.debugLine="If mandamapa.RowCount > 0 Then"; if (_mandamapa.getRowCount()>0) { - //BA.debugLineNum = 392;BA.debugLine="StartActivity(MAPA_RUTAS)"; + //BA.debugLineNum = 393;BA.debugLine="StartActivity(MAPA_RUTAS)"; __c.StartActivity(ba,(Object)(_mapa_rutas.getObject())); }else if(_mandamapa.getRowCount()==0) { - //BA.debugLineNum = 394;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; + //BA.debugLineNum = 395;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; _b4xpages._showpage /*String*/ (ba,"Principal"); }; - //BA.debugLineNum = 396;BA.debugLine="End Sub"; + //BA.debugLineNum = 397;BA.debugLine="End Sub"; return ""; } public String _hist_click() throws Exception{ - //BA.debugLineNum = 402;BA.debugLine="Sub HIST_Click"; - //BA.debugLineNum = 406;BA.debugLine="B4XPages.MainPage.detalleVenta.prodsMap.Initializ"; + //BA.debugLineNum = 403;BA.debugLine="Sub HIST_Click"; + //BA.debugLineNum = 407;BA.debugLine="B4XPages.MainPage.detalleVenta.prodsMap.Initializ"; _b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._detalleventa /*reparto_mazapa.keymon.lat.c_detalleventa*/ ._prodsmap /*anywheresoftware.b4a.objects.collections.Map*/ .Initialize(); - //BA.debugLineNum = 408;BA.debugLine="B4XPages.ShowPage(\"DetalleVenta\")"; + //BA.debugLineNum = 409;BA.debugLine="B4XPages.ShowPage(\"DetalleVenta\")"; _b4xpages._showpage /*String*/ (ba,"DetalleVenta"); - //BA.debugLineNum = 409;BA.debugLine="End Sub"; + //BA.debugLineNum = 410;BA.debugLine="End Sub"; return ""; } public Object _initialize(anywheresoftware.b4a.BA _ba) throws Exception{ @@ -876,29 +870,29 @@ reparto_mazapa.keymon.lat.dbrequestmanager._dbresult _resultado = null; String _cliente = ""; Object[] _records = null; String _k = ""; - //BA.debugLineNum = 943;BA.debugLine="Sub JobDone(Job As HttpJob)"; - //BA.debugLineNum = 944;BA.debugLine="Log(Job.Success)"; -__c.LogImpl("29109505",BA.ObjectToString(_job._success /*boolean*/ ),0); - //BA.debugLineNum = 945;BA.debugLine="If Job.Success = False Then"; + //BA.debugLineNum = 944;BA.debugLine="Sub JobDone(Job As HttpJob)"; + //BA.debugLineNum = 945;BA.debugLine="Log(Job.Success)"; +__c.LogImpl("89109505",BA.ObjectToString(_job._success /*boolean*/ ),0); + //BA.debugLineNum = 946;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { }else { - //BA.debugLineNum = 948;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("29109509","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); - //BA.debugLineNum = 949;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 949;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; +__c.LogImpl("89109509","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); + //BA.debugLineNum = 950;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 950;BA.debugLine="Dim resultado As DBResult = reqManager.HandleJo"; + //BA.debugLineNum = 951;BA.debugLine="Dim resultado As DBResult = reqManager.HandleJo"; _resultado = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 951;BA.debugLine="If resultado.Tag.As(String).IndexOf(\"ins_REPART"; + //BA.debugLineNum = 952;BA.debugLine="If resultado.Tag.As(String).IndexOf(\"ins_REPART"; if ((BA.ObjectToString(_resultado.Tag /*Object*/ )).indexOf("ins_REPARTOPendientes_head_")>-1) { - //BA.debugLineNum = 952;BA.debugLine="Private cliente As String= resultado.Tag"; + //BA.debugLineNum = 953;BA.debugLine="Private cliente As String= resultado.Tag"; _cliente = BA.ObjectToString(_resultado.Tag /*Object*/ ); - //BA.debugLineNum = 953;BA.debugLine="cliente = cliente.SubString(cliente.IndexOf(\"_"; + //BA.debugLineNum = 954;BA.debugLine="cliente = cliente.SubString(cliente.IndexOf(\"_"; _cliente = _cliente.substring((int) (_cliente.indexOf("_")+24)); - //BA.debugLineNum = 954;BA.debugLine="Log($\"Cliente1:${cliente}\"$)"; -__c.LogImpl("29109515",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); - //BA.debugLineNum = 955;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update REPARTO_GEO"; + //BA.debugLineNum = 955;BA.debugLine="Log($\"Cliente1:${cliente}\"$)"; +__c.LogImpl("89109515",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); + //BA.debugLineNum = 956;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 = 956;BA.debugLine="For Each records() As Object In resultado.Rows"; + //BA.debugLineNum = 957;BA.debugLine="For Each records() As Object In resultado.Rows"; { final anywheresoftware.b4a.BA.IterableList group12 = _resultado.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; final int groupLen12 = group12.getSize() @@ -906,7 +900,7 @@ final int groupLen12 = group12.getSize() ; for (; index12 < groupLen12;index12++){ _records = (Object[])(group12.Get(index12)); - //BA.debugLineNum = 957;BA.debugLine="For Each k As String In resultado.Columns.Key"; + //BA.debugLineNum = 958;BA.debugLine="For Each k As String In resultado.Columns.Key"; { final anywheresoftware.b4a.BA.IterableList group13 = _resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Keys(); final int groupLen13 = group13.getSize() @@ -914,18 +908,18 @@ final int groupLen13 = group13.getSize() ; for (; index13 < groupLen13;index13++){ _k = BA.ObjectToString(group13.Get(index13)); - //BA.debugLineNum = 958;BA.debugLine="Log(resultado.Tag & \": \" & k & \": \" & record"; -__c.LogImpl("29109519",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); + //BA.debugLineNum = 959;BA.debugLine="Log(resultado.Tag & \": \" & k & \": \" & record"; +__c.LogImpl("89109519",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } }; }; }; - //BA.debugLineNum = 963;BA.debugLine="Job.Release"; + //BA.debugLineNum = 964;BA.debugLine="Job.Release"; _job._release /*String*/ (); }; - //BA.debugLineNum = 966;BA.debugLine="End Sub"; + //BA.debugLineNum = 967;BA.debugLine="End Sub"; return ""; } public String _listview1_itemlongclick(int _position,Object _value) throws Exception{ @@ -936,170 +930,170 @@ return ""; public String _mandapendientesreparto() throws Exception{ int _i = 0; reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand _cmd = null; - //BA.debugLineNum = 923;BA.debugLine="Sub mandaPendientesreparto"; - //BA.debugLineNum = 924;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT CLIENTE, USUARI"; + //BA.debugLineNum = 924;BA.debugLine="Sub mandaPendientesreparto"; + //BA.debugLineNum = 925;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 where ENVIO <> 1"))); - //BA.debugLineNum = 925;BA.debugLine="Log($\"REPARTO_Cliente PENDIENTE: ${c.RowCount}\"$)"; -__c.LogImpl("29043970",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); - //BA.debugLineNum = 926;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 926;BA.debugLine="Log($\"REPARTO_Cliente PENDIENTE: ${c.RowCount}\"$)"; +__c.LogImpl("89043970",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); + //BA.debugLineNum = 927;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 927;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 928;BA.debugLine="For i=0 To c.RowCount -1"; { final int step4 = 1; final int limit4 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit4 ;_i = _i + step4 ) { - //BA.debugLineNum = 928;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 929;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 930;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 931;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 931;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 932;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 933;BA.debugLine="cmd.Parameters = Array As Object(c.GetString(\"C"; + //BA.debugLineNum = 934;BA.debugLine="cmd.Parameters = Array As Object(c.GetString(\"C"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("CLIENTE")),(Object)(_c.GetString("USUARIO")),(Object)(_c.GetString("FECHA_PUNTEO")),(Object)(_c.GetString("LATITUD")),(Object)(_c.GetString("LONGITUD")),(Object)(_c.GetString("ALMACEN")),(Object)(_c.GetString("RUTA_REPARTO")),(Object)(_c.GetString("RUTA_PREV")),(Object)(_c.GetString("FECHA_PREVENTA")),(Object)(_c.GetString("MOTIVO")),(Object)(_c.GetString("COMENTARIO")),(Object)(_c.GetString("TIPO"))}; - //BA.debugLineNum = 934;BA.debugLine="reqManager.ExecuteCommand(cmd , $\"ins_REPARTOPe"; + //BA.debugLineNum = 935;BA.debugLine="reqManager.ExecuteCommand(cmd , $\"ins_REPARTOPe"; _reqmanager._executecommand /*String*/ (_cmd,(Object)(("ins_REPARTOPendientes_head_"+__c.SmartStringFormatter("",(Object)(_c.GetString("CLIENTE")))+""))); } }; }; - //BA.debugLineNum = 938;BA.debugLine="c.Close"; + //BA.debugLineNum = 939;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 939;BA.debugLine="End Sub"; + //BA.debugLineNum = 940;BA.debugLine="End Sub"; return ""; } public String _nuevo_click() throws Exception{ - //BA.debugLineNum = 398;BA.debugLine="Sub NUEVO_Click"; - //BA.debugLineNum = 399;BA.debugLine="StartActivity(MAPA_CLIENTE)"; + //BA.debugLineNum = 399;BA.debugLine="Sub NUEVO_Click"; + //BA.debugLineNum = 400;BA.debugLine="StartActivity(MAPA_CLIENTE)"; __c.StartActivity(ba,(Object)(_mapa_cliente.getObject())); - //BA.debugLineNum = 400;BA.debugLine="End Sub"; + //BA.debugLineNum = 401;BA.debugLine="End Sub"; return ""; } public String _printer_connected(boolean _success) throws Exception{ - //BA.debugLineNum = 849;BA.debugLine="Sub Printer_Connected (Success As Boolean)"; - //BA.debugLineNum = 850;BA.debugLine="If Success Then"; + //BA.debugLineNum = 850;BA.debugLine="Sub Printer_Connected (Success As Boolean)"; + //BA.debugLineNum = 851;BA.debugLine="If Success Then"; if (_success) { - //BA.debugLineNum = 851;BA.debugLine="B_IMP.Enabled = True"; + //BA.debugLineNum = 852;BA.debugLine="B_IMP.Enabled = True"; _b_imp.setEnabled(__c.True); - //BA.debugLineNum = 852;BA.debugLine="PASA_IMP = \"1\""; + //BA.debugLineNum = 853;BA.debugLine="PASA_IMP = \"1\""; _pasa_imp = "1"; }else { - //BA.debugLineNum = 854;BA.debugLine="B_IMP.Enabled = False"; + //BA.debugLineNum = 855;BA.debugLine="B_IMP.Enabled = False"; _b_imp.setEnabled(__c.False); - //BA.debugLineNum = 855;BA.debugLine="If Msgbox2(\"\", \"Printer Error\",\"Reprint\",\"Cancel"; + //BA.debugLineNum = 856;BA.debugLine="If Msgbox2(\"\", \"Printer Error\",\"Reprint\",\"Cancel"; if (__c.Msgbox2(BA.ObjectToCharSequence(""),BA.ObjectToCharSequence("Printer Error"),"Reprint","Cancel","",(android.graphics.Bitmap)(__c.Null),ba)==__c.DialogResponse.POSITIVE) { - //BA.debugLineNum = 856;BA.debugLine="StartPrinter"; + //BA.debugLineNum = 857;BA.debugLine="StartPrinter"; _startprinter(); }; }; - //BA.debugLineNum = 859;BA.debugLine="End Sub"; + //BA.debugLineNum = 860;BA.debugLine="End Sub"; return ""; } public String _printer1_connected(boolean _success) throws Exception{ - //BA.debugLineNum = 828;BA.debugLine="Sub Printer1_Connected (Success As Boolean)"; - //BA.debugLineNum = 830;BA.debugLine="If Success Then"; + //BA.debugLineNum = 829;BA.debugLine="Sub Printer1_Connected (Success As Boolean)"; + //BA.debugLineNum = 831;BA.debugLine="If Success Then"; if (_success) { - //BA.debugLineNum = 831;BA.debugLine="ToastMessageShow(\"Impresora conectada\", False)"; + //BA.debugLineNum = 832;BA.debugLine="ToastMessageShow(\"Impresora conectada\", False)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Impresora conectada"),__c.False); - //BA.debugLineNum = 832;BA.debugLine="Starter.skmt.ExecNonQuery2(\"delete from CAT_VARI"; + //BA.debugLineNum = 833;BA.debugLine="Starter.skmt.ExecNonQuery2(\"delete from CAT_VARI"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("delete from CAT_VARIABLES where CAT_VA_DESCRIPCION = ?",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)("MACIMP")})); - //BA.debugLineNum = 833;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_VARI"; + //BA.debugLineNum = 834;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 = 834;BA.debugLine="LogColor(\"Impresora conectada\", Colors.Green)"; -__c.LogImpl("28781830","Impresora conectada",__c.Colors.Green); - //BA.debugLineNum = 836;BA.debugLine="impresoraConectada = True"; + //BA.debugLineNum = 835;BA.debugLine="LogColor(\"Impresora conectada\", Colors.Green)"; +__c.LogImpl("88781830","Impresora conectada",__c.Colors.Green); + //BA.debugLineNum = 837;BA.debugLine="impresoraConectada = True"; _impresoraconectada = __c.True; }else { - //BA.debugLineNum = 840;BA.debugLine="LogColor(\"Error conectando la impresora\", Colors"; -__c.LogImpl("28781836","Error conectando la impresora",__c.Colors.Red); - //BA.debugLineNum = 841;BA.debugLine="errorImpresora = errorImpresora + 1"; + //BA.debugLineNum = 841;BA.debugLine="LogColor(\"Error conectando la impresora\", Colors"; +__c.LogImpl("88781836","Error conectando la impresora",__c.Colors.Red); + //BA.debugLineNum = 842;BA.debugLine="errorImpresora = errorImpresora + 1"; _errorimpresora = (int) (_errorimpresora+1); - //BA.debugLineNum = 842;BA.debugLine="If errorImpresora > 1 Then"; + //BA.debugLineNum = 843;BA.debugLine="If errorImpresora > 1 Then"; if (_errorimpresora>1) { - //BA.debugLineNum = 843;BA.debugLine="Starter.MAC_IMPRESORA = \"0\""; + //BA.debugLineNum = 844;BA.debugLine="Starter.MAC_IMPRESORA = \"0\""; _starter._mac_impresora /*String*/ = "0"; - //BA.debugLineNum = 844;BA.debugLine="errorImpresora = 0"; + //BA.debugLineNum = 845;BA.debugLine="errorImpresora = 0"; _errorimpresora = (int) (0); }; }; - //BA.debugLineNum = 847;BA.debugLine="End Sub"; + //BA.debugLineNum = 848;BA.debugLine="End Sub"; return ""; } public String _startprinter() throws Exception{ int _resimp = 0; int _i = 0; - //BA.debugLineNum = 861;BA.debugLine="Sub StartPrinter"; - //BA.debugLineNum = 862;BA.debugLine="Dim PairedDevices As Map"; + //BA.debugLineNum = 862;BA.debugLine="Sub StartPrinter"; + //BA.debugLineNum = 863;BA.debugLine="Dim PairedDevices As Map"; _paireddevices = new anywheresoftware.b4a.objects.collections.Map(); - //BA.debugLineNum = 863;BA.debugLine="Dim L As List"; + //BA.debugLineNum = 864;BA.debugLine="Dim L As List"; _l = new anywheresoftware.b4a.objects.collections.List(); - //BA.debugLineNum = 864;BA.debugLine="Dim resimp As Int"; + //BA.debugLineNum = 865;BA.debugLine="Dim resimp As Int"; _resimp = 0; - //BA.debugLineNum = 865;BA.debugLine="ToastMessageShow(\"Printing.....\",True)"; + //BA.debugLineNum = 866;BA.debugLine="ToastMessageShow(\"Printing.....\",True)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Printing....."),__c.True); - //BA.debugLineNum = 866;BA.debugLine="PairedDevices.Initialize"; + //BA.debugLineNum = 867;BA.debugLine="PairedDevices.Initialize"; _paireddevices.Initialize(); - //BA.debugLineNum = 867;BA.debugLine="Try"; -try { //BA.debugLineNum = 868;BA.debugLine="PairedDevices = cmp20.GetPairedDevices"; + //BA.debugLineNum = 868;BA.debugLine="Try"; +try { //BA.debugLineNum = 869;BA.debugLine="PairedDevices = cmp20.GetPairedDevices"; _paireddevices = _cmp20.GetPairedDevices(); } catch (Exception e9) { - ba.setLastException(e9); //BA.debugLineNum = 870;BA.debugLine="Msgbox(\"Getting Paired Devices\",\"Printer Error\")"; + ba.setLastException(e9); //BA.debugLineNum = 871;BA.debugLine="Msgbox(\"Getting Paired Devices\",\"Printer Error\")"; __c.Msgbox(BA.ObjectToCharSequence("Getting Paired Devices"),BA.ObjectToCharSequence("Printer Error"),ba); - //BA.debugLineNum = 871;BA.debugLine="printer.Close"; + //BA.debugLineNum = 872;BA.debugLine="printer.Close"; _printer.Close(); - //BA.debugLineNum = 872;BA.debugLine="cmp20.Disconnect"; + //BA.debugLineNum = 873;BA.debugLine="cmp20.Disconnect"; _cmp20.Disconnect(); }; - //BA.debugLineNum = 874;BA.debugLine="If PairedDevices.Size = 0 Then"; + //BA.debugLineNum = 875;BA.debugLine="If PairedDevices.Size = 0 Then"; if (_paireddevices.getSize()==0) { - //BA.debugLineNum = 875;BA.debugLine="Msgbox(\"Error Connecting to Printer - Printer No"; + //BA.debugLineNum = 876;BA.debugLine="Msgbox(\"Error Connecting to Printer - Printer No"; __c.Msgbox(BA.ObjectToCharSequence("Error Connecting to Printer - Printer Not Found"),BA.ObjectToCharSequence(""),ba); - //BA.debugLineNum = 876;BA.debugLine="Return"; + //BA.debugLineNum = 877;BA.debugLine="Return"; if (true) return ""; }; - //BA.debugLineNum = 878;BA.debugLine="If PairedDevices.Size = 1 Then"; + //BA.debugLineNum = 879;BA.debugLine="If PairedDevices.Size = 1 Then"; if (_paireddevices.getSize()==1) { - //BA.debugLineNum = 879;BA.debugLine="Try"; -try { //BA.debugLineNum = 881;BA.debugLine="cmp20.ConnectInsecure(btAdmin,PairedDevices.Get"; + //BA.debugLineNum = 880;BA.debugLine="Try"; +try { //BA.debugLineNum = 882;BA.debugLine="cmp20.ConnectInsecure(btAdmin,PairedDevices.Get"; _cmp20.ConnectInsecure(ba,_btadmin,BA.ObjectToString(_paireddevices.Get(_paireddevices.GetKeyAt((int) (0)))),(int) (1)); } catch (Exception e21) { - ba.setLastException(e21); //BA.debugLineNum = 884;BA.debugLine="Msgbox(\"Connecting\",\"Printer Error\") 'ignore"; + ba.setLastException(e21); //BA.debugLineNum = 885;BA.debugLine="Msgbox(\"Connecting\",\"Printer Error\") 'ignore"; __c.Msgbox(BA.ObjectToCharSequence("Connecting"),BA.ObjectToCharSequence("Printer Error"),ba); - //BA.debugLineNum = 885;BA.debugLine="printer.Close"; + //BA.debugLineNum = 886;BA.debugLine="printer.Close"; _printer.Close(); - //BA.debugLineNum = 886;BA.debugLine="cmp20.Disconnect"; + //BA.debugLineNum = 887;BA.debugLine="cmp20.Disconnect"; _cmp20.Disconnect(); }; }else { - //BA.debugLineNum = 889;BA.debugLine="L.Initialize"; + //BA.debugLineNum = 890;BA.debugLine="L.Initialize"; _l.Initialize(); - //BA.debugLineNum = 890;BA.debugLine="For i = 0 To PairedDevices.Size - 1"; + //BA.debugLineNum = 891;BA.debugLine="For i = 0 To PairedDevices.Size - 1"; { final int step27 = 1; final int limit27 = (int) (_paireddevices.getSize()-1); _i = (int) (0) ; for (;_i <= limit27 ;_i = _i + step27 ) { - //BA.debugLineNum = 891;BA.debugLine="L.Add(PairedDevices.GetKeyAt(i))"; + //BA.debugLineNum = 892;BA.debugLine="L.Add(PairedDevices.GetKeyAt(i))"; _l.Add(_paireddevices.GetKeyAt(_i)); } }; - //BA.debugLineNum = 893;BA.debugLine="resimp = InputList(L, \"Choose device\", -1) 'igno"; + //BA.debugLineNum = 894;BA.debugLine="resimp = InputList(L, \"Choose device\", -1) 'igno"; _resimp = __c.InputList(_l,BA.ObjectToCharSequence("Choose device"),(int) (-1),ba); - //BA.debugLineNum = 894;BA.debugLine="If resimp <> DialogResponse.CANCEL Then"; + //BA.debugLineNum = 895;BA.debugLine="If resimp <> DialogResponse.CANCEL Then"; if (_resimp!=__c.DialogResponse.CANCEL) { - //BA.debugLineNum = 895;BA.debugLine="cmp20.Connect(PairedDevices.Get(L.Get(resimp)))"; + //BA.debugLineNum = 896;BA.debugLine="cmp20.Connect(PairedDevices.Get(L.Get(resimp)))"; _cmp20.Connect(ba,BA.ObjectToString(_paireddevices.Get(_l.Get(_resimp)))); }; }; - //BA.debugLineNum = 898;BA.debugLine="End Sub"; + //BA.debugLineNum = 899;BA.debugLine="End Sub"; return ""; } public String _tar_click() throws Exception{ - //BA.debugLineNum = 380;BA.debugLine="Sub Tar_Click"; - //BA.debugLineNum = 382;BA.debugLine="B4XPages.ShowPage(\"Productos\")"; + //BA.debugLineNum = 381;BA.debugLine="Sub Tar_Click"; + //BA.debugLineNum = 383;BA.debugLine="B4XPages.ShowPage(\"Productos\")"; _b4xpages._showpage /*String*/ (ba,"Productos"); - //BA.debugLineNum = 383;BA.debugLine="End Sub"; + //BA.debugLineNum = 384;BA.debugLine="End Sub"; return ""; } public Object callSub(String sub, Object sender, Object[] args) throws Exception { diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_clientes.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_clientes.java index efac548..2d62bdf 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_clientes.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_clientes.java @@ -250,7 +250,7 @@ case 18: this.state = 19; ; //BA.debugLineNum = 489;BA.debugLine="Log($\"locActual: ${locActual}, thisLoc1: ${this"; -parent.__c.LogImpl("29895959",("locActual: "+parent.__c.SmartStringFormatter("",(Object)(_locactual))+", thisLoc1: "+parent.__c.SmartStringFormatter("",(Object)(_thisloc1))+""),0); +parent.__c.LogImpl("89895959",("locActual: "+parent.__c.SmartStringFormatter("",(Object)(_locactual))+", thisLoc1: "+parent.__c.SmartStringFormatter("",(Object)(_thisloc1))+""),0); //BA.debugLineNum = 490;BA.debugLine="Wait For(distanciaEntreCoords(distancia2, locAc"; parent.__c.WaitFor("complete", ba, this, parent._distanciaentrecoords(_distancia2,_locactual,_thisloc1)); this.state = 33; @@ -261,14 +261,14 @@ 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("29895961",("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); +parent.__c.LogImpl("89895961",("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)"; _tid = (int)(BA.ObjectToNumber(_r.Get((int) (0)))); //BA.debugLineNum = 493;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("29895964","|"+BA.NumberToString(_tid)+"| - "+BA.ObjectToString(parent._distorderedmap._get /*Object*/ ((Object)(_tid))),parent.__c.Colors.Blue); +parent.__c.LogImpl("89895964","|"+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"; _tempndd = BA.ObjectToString(_tmap.Get((Object)("nomDirDist"))); //BA.debugLineNum = 496;BA.debugLine="Private indexD As Int = tempNDD.IndexOf(\"Distan"; @@ -294,7 +294,7 @@ case 24: this.state = 25; ; //BA.debugLineNum = 498;BA.debugLine="Log(tempNDD)"; -parent.__c.LogImpl("29895968",_tempndd,0); +parent.__c.LogImpl("89895968",_tempndd,0); //BA.debugLineNum = 499;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"; @@ -439,7 +439,7 @@ _listview1.setTop((int)(Double.parseDouble(_lv1top))); _listview1.setTop((int) ((double)(Double.parseDouble(_lv1top))+100)); }; //BA.debugLineNum = 69;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 order by 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"; if (_c.getRowCount()>0) { //BA.debugLineNum = 71;BA.debugLine="c.Position = 0"; @@ -510,7 +510,7 @@ _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .setLongitu }; }; //BA.debugLineNum = 109;BA.debugLine="Log(Starter.cedisLocation)"; -__c.LogImpl("29371708",BA.ObjectToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ ),0); +__c.LogImpl("89371708",BA.ObjectToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ ),0); //BA.debugLineNum = 110;BA.debugLine="End Sub"; return ""; } @@ -537,7 +537,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 116;BA.debugLine="Log(entro)"; -parent.__c.LogImpl("29437187",parent._entro,0); +parent.__c.LogImpl("89437187",parent._entro,0); //BA.debugLineNum = 117;BA.debugLine="If rutaGenerada Or entro = 3 Then ' Si ya generam"; if (true) break; @@ -597,7 +597,7 @@ _clientesmapao._initialize /*String*/ (ba); //BA.debugLineNum = 43;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("29306120","Coordenadas del almacen: "+BA.NumberToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLongitude())+","+BA.NumberToString(_starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .getLatitude()),0); +__c.LogImpl("89306120","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"; return ""; } @@ -609,7 +609,7 @@ anywheresoftware.b4a.objects.LabelWrapper _label2 = null; //BA.debugLineNum = 236;BA.debugLine="q_buscar = \"%\" & busca.Text & \"%\""; _q_buscar = "%"+_busca.getText()+"%"; //BA.debugLineNum = 237;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 order by CAT_CL_CODIGO ",new String[]{_q_buscar}))); +_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"; _listview1.Clear(); //BA.debugLineNum = 239;BA.debugLine="lfila.text = \"Nombre y Calle\""; @@ -710,7 +710,7 @@ _tmplist.AddAll(anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{"A //BA.debugLineNum = 596;BA.debugLine="coords.InsertAt(0,tmpList)"; _coords.InsertAt((int) (0),(Object)(_tmplist.getObject())); //BA.debugLineNum = 597;BA.debugLine="Log(\"=================================\")"; -parent.__c.LogImpl("210223622","=================================",0); +parent.__c.LogImpl("810223622","=================================",0); //BA.debugLineNum = 599;BA.debugLine="Private coordsStr As String = \"\""; _coordsstr = ""; //BA.debugLineNum = 600;BA.debugLine="For Each tienda As List In coords"; @@ -781,7 +781,7 @@ case 10: this.state = 11; ; //BA.debugLineNum = 608;BA.debugLine="Log(coordsStr)"; -parent.__c.LogImpl("210223633",_coordsstr,0); +parent.__c.LogImpl("810223633",_coordsstr,0); //BA.debugLineNum = 609;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"; @@ -791,7 +791,7 @@ _j._initialize /*String*/ (ba,"trip",parent); //BA.debugLineNum = 612;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("210223638",("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); +parent.__c.LogImpl("810223638",("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)"; parent.__c.WaitFor("jobdone", ba, this, (Object)(_j)); this.state = 35; @@ -824,7 +824,7 @@ _jp.Initialize(_j._getstring /*String*/ ()); _m = new anywheresoftware.b4a.objects.collections.Map(); _m = _jp.NextObject(); //BA.debugLineNum = 619;BA.debugLine="Log(m)"; -parent.__c.LogImpl("210223644",BA.ObjectToString(_m),0); +parent.__c.LogImpl("810223644",BA.ObjectToString(_m),0); //BA.debugLineNum = 620;BA.debugLine="If m.Get(\"code\") = \"OK\" Then"; if (true) break; @@ -839,7 +839,7 @@ case 16: //C this.state = 17; //BA.debugLineNum = 621;BA.debugLine="Log(\"===== OK\")"; -parent.__c.LogImpl("210223646","===== OK",0); +parent.__c.LogImpl("810223646","===== OK",0); //BA.debugLineNum = 622;BA.debugLine="rutaGenerada = True"; parent._rutagenerada = parent.__c.True; //BA.debugLineNum = 623;BA.debugLine="Dim puntos As Int = m.Get(\"puntos\")"; @@ -899,7 +899,7 @@ case 20: this.state = 21; ; //BA.debugLineNum = 635;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 order by 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 = 636;BA.debugLine="If c.RowCount > 0 Then 'Ya hay waypoints en la"; if (true) break; @@ -975,7 +975,7 @@ this.state = 29; //BA.debugLineNum = 649;BA.debugLine="c.Close"; parent._c.Close(); //BA.debugLineNum = 650;BA.debugLine="Log($\"Distancia total: $1.1{distance/1000} kms,"; -parent.__c.LogImpl("210223675",("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); +parent.__c.LogImpl("810223675",("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"; 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"; @@ -1000,7 +1000,7 @@ case 31: //C this.state = 32; //BA.debugLineNum = 659;BA.debugLine="LogColor(\"**************** Error! ************"; -parent.__c.LogImpl("210223684","**************** Error! ******************",parent.__c.Colors.Red); +parent.__c.LogImpl("810223684","**************** Error! ******************",parent.__c.Colors.Red); if (true) break; case 32: @@ -1156,7 +1156,7 @@ _jp.Initialize(_j._getstring /*String*/ ()); _m = new anywheresoftware.b4a.objects.collections.Map(); _m = _jp.NextObject(); //BA.debugLineNum = 274;BA.debugLine="Log($\"Respuesta: ${m.Get(\"code\")}\"$)"; -parent.__c.LogImpl("29764876",("Respuesta: "+parent.__c.SmartStringFormatter("",_m.Get((Object)("code")))+""),0); +parent.__c.LogImpl("89764876",("Respuesta: "+parent.__c.SmartStringFormatter("",_m.Get((Object)("code")))+""),0); //BA.debugLineNum = 275;BA.debugLine="If m.Get(\"code\") = \"Ok\" Then"; if (true) break; @@ -1181,7 +1181,7 @@ _distanciatotal = BA.ObjectToString(_rutas2.Get((Object)("distance"))); //BA.debugLineNum = 283;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("29764886",("Distancia total: "+parent.__c.SmartStringFormatter("",(Object)(_distanciatotal))+", Tiempo: "+parent.__c.SmartStringFormatter("",(Object)(_tiempo))+""),0); +parent.__c.LogImpl("89764886",("Distancia total: "+parent.__c.SmartStringFormatter("",(Object)(_distanciatotal))+", Tiempo: "+parent.__c.SmartStringFormatter("",(Object)(_tiempo))+""),0); if (true) break; case 7: @@ -1194,7 +1194,7 @@ case 9: //C this.state = 10; //BA.debugLineNum = 287;BA.debugLine="Log(\"Error!\")"; -parent.__c.LogImpl("29764889","Error!",0); +parent.__c.LogImpl("89764889","Error!",0); if (true) break; case 10: @@ -1280,7 +1280,7 @@ _label2.setTextColor(parent.__c.Colors.Black); //BA.debugLineNum = 207;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"; -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 group by CAT_CL_RUTA order by CAT_CL_RUTA asc"))); +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"; if (true) break; @@ -1397,7 +1397,7 @@ case 0: //C this.state = 1; //BA.debugLineNum = 129;BA.debugLine="Log(Value)"; -parent.__c.LogImpl("29502722",BA.ObjectToString(_value),0); +parent.__c.LogImpl("89502722",BA.ObjectToString(_value),0); //BA.debugLineNum = 130;BA.debugLine="ListView1.Clear"; parent._listview1.Clear(); //BA.debugLineNum = 131;BA.debugLine="Sleep(50)"; @@ -1466,11 +1466,11 @@ _lrt = BA.ObjectToString(_value); //BA.debugLineNum = 146;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("29502740",("Original: "+parent.__c.SmartStringFormatter("",_value)+" - Mod: |"+parent.__c.SmartStringFormatter("",(Object)(_lrt.substring((int) (6))))+"| - laRuta: "+parent.__c.SmartStringFormatter("",(Object)(parent._laruta))+""),0); +parent.__c.LogImpl("89502740",("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"; parent._rutaacambiar = parent._laruta; //BA.debugLineNum = 149;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 order by CAT_CL_NOMBRE ",new String[]{parent._laruta}))); +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"; _thisloc = new anywheresoftware.b4a.gps.LocationWrapper(); //BA.debugLineNum = 151;BA.debugLine="Private label1 As Label"; @@ -1666,9 +1666,9 @@ 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("210289153",_laruta,0); +__c.LogImpl("810289153",_laruta,0); //BA.debugLineNum = 668;BA.debugLine="Log(entro)"; -__c.LogImpl("210289154",_entro,0); +__c.LogImpl("810289154",_entro,0); //BA.debugLineNum = 669;BA.debugLine="Private sqlDeRuta As String = \"\""; _sqlderuta = ""; //BA.debugLineNum = 670;BA.debugLine="If entro = 3 Then sqlDeRuta = $\"and CAT_CL_RUTA ="; @@ -1681,7 +1681,7 @@ _tmplist = new anywheresoftware.b4a.objects.collections.List(); _avisitar.Initialize(); //BA.debugLineNum = 673;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 "+__c.SmartStringFormatter("",(Object)(_sqlderuta))+"")))); +_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 <> 500 "+__c.SmartStringFormatter("",(Object)(_sqlderuta))+"")))); //BA.debugLineNum = 674;BA.debugLine="Do While coords.NextRow"; while (_coords.NextRow()) { //BA.debugLineNum = 675;BA.debugLine="tmpList.Initialize"; @@ -1693,7 +1693,7 @@ _avisitar.Add((Object)(_tmplist.getObject())); } ; //BA.debugLineNum = 679;BA.debugLine="Log(aVisitar)"; -__c.LogImpl("210289165",BA.ObjectToString(_avisitar),0); +__c.LogImpl("810289165",BA.ObjectToString(_avisitar),0); //BA.debugLineNum = 680;BA.debugLine="Return aVisitar"; if (true) return _avisitar; //BA.debugLineNum = 681;BA.debugLine="End Sub"; @@ -1773,7 +1773,7 @@ this.state = 1; //BA.debugLineNum = 301;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("29830402",("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); +parent.__c.LogImpl("89830402",("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"; _rutacompleta = _coordsinicio; //BA.debugLineNum = 304;BA.debugLine="Private preRuta As String = coordsInicio"; @@ -1821,7 +1821,7 @@ case 4: this.state = 5; ; //BA.debugLineNum = 317;BA.debugLine="Log($\"a visitar: ${aVisitar.Keys.Size}\"$)"; -parent.__c.LogImpl("29830417",("a visitar: "+parent.__c.SmartStringFormatter("",(Object)(_avisitar._getkeys /*anywheresoftware.b4a.objects.collections.List*/ ().getSize()))+""),0); +parent.__c.LogImpl("89830417",("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"; if (true) break; @@ -2056,7 +2056,7 @@ _tiempo0 = (double)(BA.ObjectToNumber(_rutas20.Get((Object)("duration")))); //BA.debugLineNum = 370;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("29830471",("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); +parent.__c.LogImpl("89830471",("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: @@ -2069,7 +2069,7 @@ case 37: //C this.state = 38; //BA.debugLineNum = 375;BA.debugLine="Log(\"Error!\")"; -parent.__c.LogImpl("29830475","Error!",0); +parent.__c.LogImpl("89830475","Error!",0); if (true) break; case 38: @@ -2200,7 +2200,7 @@ _rutas2 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.Ab //BA.debugLineNum = 408;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("29830509","distancia ruta 2:"+BA.NumberToString((_distanciatotal))+"|"+BA.ObjectToString(_rutas2.Get((Object)("distance"))),0); +parent.__c.LogImpl("89830509","distancia ruta 2:"+BA.NumberToString((_distanciatotal))+"|"+BA.ObjectToString(_rutas2.Get((Object)("distance"))),0); //BA.debugLineNum = 410;BA.debugLine="distanciaTotal = distanciaTotal + distanciaTota"; _distanciatotal = _distanciatotal+_distanciatotal0; //BA.debugLineNum = 411;BA.debugLine="tiempo = rutas2.Get(\"duration\")"; @@ -2208,7 +2208,7 @@ _tiempo = (double)(BA.ObjectToNumber(_rutas2.Get((Object)("duration")))); //BA.debugLineNum = 412;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("29830513",("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); +parent.__c.LogImpl("89830513",("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"; 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"; @@ -2233,7 +2233,7 @@ case 52: //C this.state = 53; //BA.debugLineNum = 422;BA.debugLine="LogColor(\"**************** Error! ************"; -parent.__c.LogImpl("29830522","**************** Error! ******************",parent.__c.Colors.Red); +parent.__c.LogImpl("89830522","**************** Error! ******************",parent.__c.Colors.Red); if (true) break; case 53: @@ -2252,7 +2252,7 @@ _wps = new anywheresoftware.b4a.objects.collections.Map(); //BA.debugLineNum = 429;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("29830530","BORRAMOS WAYPOINTS",0); +parent.__c.LogImpl("89830530","BORRAMOS WAYPOINTS",0); //BA.debugLineNum = 431;BA.debugLine="For Each k As Object In clientesMapaO.Keys 'Guard"; if (true) break; @@ -2300,7 +2300,7 @@ _r1 = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObj //BA.debugLineNum = 434;BA.debugLine="r1.Get(\"codigo\")"; _r1.Get((Object)("codigo")); //BA.debugLineNum = 435;BA.debugLine="Log(listaWayPoints.Get(r) & \"|\" & r1.Get(\"coord"; -parent.__c.LogImpl("29830535",BA.ObjectToString(parent._listawaypoints.Get(_r))+"|"+BA.ObjectToString(_r1.Get((Object)("coords")))+"|"+BA.ObjectToString(_r1.Get((Object)("calle"))),0); +parent.__c.LogImpl("89830535",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)"; _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"; @@ -2348,9 +2348,9 @@ _cs2 = new anywheresoftware.b4a.objects.CSBuilder(); //BA.debugLineNum = 450;BA.debugLine="entro = 3"; parent._entro = BA.NumberToString(3); //BA.debugLineNum = 451;BA.debugLine="Log(\"Generamos ListView1 en traeRutaDia\")"; -parent.__c.LogImpl("29830551","Generamos ListView1 en traeRutaDia",0); +parent.__c.LogImpl("89830551","Generamos ListView1 en traeRutaDia",0); //BA.debugLineNum = 453;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 order by 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"; if (true) break; @@ -2430,14 +2430,14 @@ 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("29961473","Iniciamos traeTodosAVisitar",0); +__c.LogImpl("89961473","Iniciamos traeTodosAVisitar",0); //BA.debugLineNum = 519;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"; _ubicacioninicial = _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ ; //BA.debugLineNum = 521;BA.debugLine="LogColor(ubicacionInicial, Colors.Gray)"; -__c.LogImpl("29961478",BA.ObjectToString(_ubicacioninicial),__c.Colors.Gray); +__c.LogImpl("89961478",BA.ObjectToString(_ubicacioninicial),__c.Colors.Gray); //BA.debugLineNum = 522;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"; @@ -2451,13 +2451,13 @@ _ubicacioninicial = _tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapp //BA.debugLineNum = 528;BA.debugLine="c.Close"; _c.Close(); //BA.debugLineNum = 529;BA.debugLine="LogColor(ubicacionInicial, Colors.Red)"; -__c.LogImpl("29961486",BA.ObjectToString(_ubicacioninicial),__c.Colors.Red); +__c.LogImpl("89961486",BA.ObjectToString(_ubicacioninicial),__c.Colors.Red); //BA.debugLineNum = 530;BA.debugLine="thisLoc.Initialize"; _thisloc.Initialize(); //BA.debugLineNum = 531;BA.debugLine="clientesMapaO.Clear"; _clientesmapao._clear /*String*/ (); //BA.debugLineNum = 533;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 group by CAT_CL_RUTA order by CAT_CL_RUTA asc"))); +_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"; if (_c.getRowCount()>0) { //BA.debugLineNum = 536;BA.debugLine="For i=0 To c.RowCount -1"; @@ -2469,7 +2469,7 @@ for (;_i <= limit16 ;_i = _i + step16 ) { //BA.debugLineNum = 537;BA.debugLine="c.Position=i"; _c.setPosition(_i); //BA.debugLineNum = 539;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 order by CAT_CL_NOMBRE ",new String[]{_c.GetString("CAT_CL_RUTA")}))); +_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"; if (_c2.getRowCount()>0) { //BA.debugLineNum = 541;BA.debugLine="For j=0 To c2.RowCount -1 'Generamos lista de"; @@ -2513,7 +2513,7 @@ _c.Close(); //BA.debugLineNum = 562;BA.debugLine="c2.Close"; _c2.Close(); //BA.debugLineNum = 563;BA.debugLine="Log(c.RowCount & \" rutas, \" & clientesMapaO.Size"; -__c.LogImpl("29961520",BA.NumberToString(_c.getRowCount())+" rutas, "+BA.NumberToString(_clientesmapao._getsize /*int*/ ())+" clientes",0); +__c.LogImpl("89961520",BA.NumberToString(_c.getRowCount())+" rutas, "+BA.NumberToString(_clientesmapao._getsize /*int*/ ())+" clientes",0); //BA.debugLineNum = 566;BA.debugLine="Return clientesMapaO"; if (true) return _clientesmapao; //BA.debugLineNum = 567;BA.debugLine="End Sub"; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_detalleventa.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_detalleventa.java index 7abb023..87ea664 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_detalleventa.java +++ b/B4A/Objects/src/reparto_mazapa/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("211599875","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("847251459","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("211599884","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("847251468","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("211599889",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("847251473",("++++++++++++++++++++++++++ "+__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(\""; @@ -150,7 +150,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("211599909",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("847251493",("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"; @@ -166,7 +166,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("211599926",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("847251510",("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"; @@ -218,7 +218,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("211927555","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("847579139","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)"; @@ -234,30 +234,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("211927564","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("847579148","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("211927568",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); +__c.LogImpl("847579152",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); //BA.debugLineNum = 945;BA.debugLine="LogColor(esteTag.Get(4),Colors.Red)"; -__c.LogImpl("211927569",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); +__c.LogImpl("847579153",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); //BA.debugLineNum = 946;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("211927570",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("847579154",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 948;BA.debugLine="Log(maxProds)"; -__c.LogImpl("211927572",_maxprods,0); +__c.LogImpl("847579156",_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("211927579",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); +__c.LogImpl("847579163",("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("211927582",_lacantc.getText(),0); +__c.LogImpl("847579166",_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"; @@ -282,9 +282,9 @@ float _preciou = 0f; //BA.debugLineNum = 507;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 508;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("211534338","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("847185922","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 509;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("211534339","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("847185923","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)"; @@ -300,7 +300,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("211534346","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("847185930","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(\""; @@ -377,9 +377,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("211534396","ES PROMO",0); +__c.LogImpl("847185980","ES PROMO",0); //BA.debugLineNum = 567;BA.debugLine="Log(esteTag.Get(3))"; -__c.LogImpl("211534397",BA.ObjectToString(_estetag.Get((int) (3))),0); +__c.LogImpl("847185981",BA.ObjectToString(_estetag.Get((int) (3))),0); //BA.debugLineNum = 568;BA.debugLine="result = Msgbox2(\"Si se modifica una promoci"; _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 'Qui"; @@ -387,7 +387,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("211534404",BA.ObjectToString(_estetag.Get((int) (3))),__c.Colors.Blue); +__c.LogImpl("847185988",BA.ObjectToString(_estetag.Get((int) (3))),__c.Colors.Blue); //BA.debugLineNum = 577;BA.debugLine="Starter.skmt.ExecNonQuery($\"update HIST_VENT"; _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_VENT"; @@ -395,7 +395,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("211534412",BA.ObjectToString(_prodsmap),__c.Colors.Red); +__c.LogImpl("847185996",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)"; @@ -413,7 +413,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("211534421","NO ES promo",0); +__c.LogImpl("847186005","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_gunapr"; @@ -431,7 +431,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("211534430","NO ES promo",0); +__c.LogImpl("847186014","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_gunapro"; @@ -450,7 +450,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("211534441","NO ES promo",0); +__c.LogImpl("847186025","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)))}))); @@ -490,7 +490,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("211534467","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("847186051","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 648;BA.debugLine="End Sub"; return ""; } @@ -506,9 +506,9 @@ float _preciou = 0f; //BA.debugLineNum = 973;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 974;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("211993090","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("847644674","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 975;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("211993091","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("847644675","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)"; @@ -524,22 +524,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("211993098","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("847644682","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("211993099",BA.ObjectToString(_estetag),0); +__c.LogImpl("847644683",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("211993103",BA.NumberToString(_c3.getRowCount()),0); +__c.LogImpl("847644687",BA.NumberToString(_c3.getRowCount()),0); //BA.debugLineNum = 988;BA.debugLine="Log(esteTag.Get(8))"; -__c.LogImpl("211993104",BA.ObjectToString(_estetag.Get((int) (8))),0); +__c.LogImpl("847644688",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("211993106","AQUI VEMOS SI ACTUALIZAMOS",0); +__c.LogImpl("847644690","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"; @@ -552,7 +552,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("211993114","entre al if o algo asi ",0); +__c.LogImpl("847644698","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));}; @@ -569,7 +569,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("211993126","entre al if o algo asi ",0); +__c.LogImpl("847644710","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));}; @@ -595,7 +595,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("211993144","AQUI VEMOS SI ACTUALIZAMOS",0); +__c.LogImpl("847644728","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"; @@ -608,7 +608,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("211993152","entre al if o algo asi ",0); +__c.LogImpl("847644736","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));}; @@ -626,7 +626,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("211993165","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("847644749","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 1050;BA.debugLine="End Sub"; return ""; } @@ -857,7 +857,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("211010155","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); +__c.LogImpl("846661739","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); }else { //BA.debugLineNum = 177;BA.debugLine="Private bgColor, textColor As Int"; _bgcolor = 0; @@ -867,7 +867,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("211010160","#####################"+_c3.GetString("PE_PRONOMBRE")+","+_c3.GetString("PE_CANT"),0); +__c.LogImpl("846661744","#####################"+_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)); }; @@ -903,7 +903,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("211010179",_c4.GetString("PE_CANT"),0); +__c.LogImpl("846661763",_c4.GetString("PE_CANT"),0); }else { //BA.debugLineNum = 201;BA.debugLine="cantres = 0"; _cantres = (int) (0); @@ -1057,9 +1057,9 @@ if ((double)(Double.parseDouble(_arti3))<0) { _arti = BA.NumberToString(0); }; //BA.debugLineNum = 296;BA.debugLine="Log(Cuenta&\",\"&Cuenta1&\",\"&Cuenta2&\",\"&Cuenta3)"; -__c.LogImpl("211010276",_cuenta+","+_cuenta1+","+_cuenta2+","+_cuenta3,0); +__c.LogImpl("846661860",_cuenta+","+_cuenta1+","+_cuenta2+","+_cuenta3,0); //BA.debugLineNum = 297;BA.debugLine="Log(arti&\",\"&arti1&\",\"&arti2&\",\"&arti3)"; -__c.LogImpl("211010277",_arti+","+_arti1+","+_arti2+","+_arti3,0); +__c.LogImpl("846661861",_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"; @@ -1367,7 +1367,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("211862017",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("847513601",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_mazapa/keymon/lat/c_foto.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_foto.java index 23d9bca..595d059 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_foto.java +++ b/B4A/Objects/src/reparto_mazapa/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("213041666",BA.NumberToString(_f[(int) (0)])+", "+BA.NumberToString(_f[(int) (1)])+", "+BA.NumberToString(_f[(int) (2)]),0); +__c.LogImpl("848693250",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("212648453",BA.ObjectToString(_camex._getpreviewsize /*reparto_mazapa.keymon.lat.cameraexclass._camerasize*/ ()),0); +__c.LogImpl("848300037",BA.ObjectToString(_camex._getpreviewsize /*reparto_mazapa.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_mazapa/keymon/lat/c_historico.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_historico.java index eee4b4b..91e2623 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_historico.java +++ b/B4A/Objects/src/reparto_mazapa/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("213959171","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("851511299","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("213959180","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("851511308","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("213959185",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("851511313",("++++++++++++++++++++++++++ "+__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("213959188",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("851511316",("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("213893634","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("851445762","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 343;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("213893635","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("851445763","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("213893642","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("851445770","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("213893644","ES PROMO",0); +__c.LogImpl("851445772","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("213893650",BA.ObjectToString(_prodsmap),__c.Colors.Red); +__c.LogImpl("851445778",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("213893662","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("851445790","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("213434934",("VENTA: "+__c.SmartStringFormatter("",(Object)(_vc.getRowCount()))+""),0); +__c.LogImpl("850987062",("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("214024706","*******************************************************",0); +__c.LogImpl("851576834","*******************************************************",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("214024709","*********** CUENTAPRODS - NO RECONSTRUIR",0); +__c.LogImpl("851576837","*********** 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("214024718","-------------------------------------",0); +__c.LogImpl("851576846","-------------------------------------",0); //BA.debugLineNum = 443;BA.debugLine="Log($\"ET: ${esteTag}\"$)"; -__c.LogImpl("214024719",("ET: "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),0); +__c.LogImpl("851576847",("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("214024734",(""+__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("851576862",(""+__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("214024737",("cantRechazada = "+__c.SmartStringFormatter("",(Object)(_cantrechazada))+""),__c.Colors.Magenta); +__c.LogImpl("851576865",("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("214024749","INSERTAMOS EN REPARTO",0); +__c.LogImpl("851576877","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("214024756",("Actualizamos REP_CANT RECHAZO = "+__c.SmartStringFormatter("",(Object)(_cantrechazada))+""),0); +__c.LogImpl("851576884",("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("214024769","-------------------------------------",0); +__c.LogImpl("851576897","-------------------------------------",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("214024775","*********** CUENTAPRODS - SI RECONSTRUIR",0); +__c.LogImpl("851576903","*********** 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("214024778","Usamos PRODSMAP",0); +__c.LogImpl("851576906","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("214024781","PPP: "+_pr+"|PromoABorrar="+_promoaborrar+"|"+BA.ObjectToString(_pr1),0); +__c.LogImpl("851576909","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("214024786","AAA: "+_newpromo+"|"+_promoaborrar,0); +__c.LogImpl("851576914","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("214024792","CAMBIAMOS PROMO: "+_newpromo,__c.Colors.Magenta); +__c.LogImpl("851576920","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("214024798",("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("851576926",("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("214024804",("Total Prods: "+__c.SmartStringFormatter("",(Object)(_totalprods))+", Total Compra: $"+__c.SmartStringFormatter("1.2",(Object)(_totalcompra))+""),0); +__c.LogImpl("851576932",("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("214024805","prodsMap="+BA.ObjectToString(_prodsmap),__c.Colors.Green); +__c.LogImpl("851576933","prodsMap="+BA.ObjectToString(_prodsmap),__c.Colors.Green); //BA.debugLineNum = 532;BA.debugLine="LogColor(prodsMap, Colors.Blue)"; -__c.LogImpl("214024808",BA.ObjectToString(_prodsmap),__c.Colors.Blue); +__c.LogImpl("851576936",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("214221313",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("851773441",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_mazapa/keymon/lat/c_noventa.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_noventa.java index dc506e2..6472814 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_noventa.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_noventa.java @@ -231,7 +231,7 @@ for (;_i2 <= limit37 ;_i2 = _i2 + step37 ) { //BA.debugLineNum = 99;BA.debugLine="rv.Position = i2"; _rv.setPosition(_i2); //BA.debugLineNum = 100;BA.debugLine="Log($\"Actualizamos REPARTO - cliente=${rv.Ge"; -__c.LogImpl("214876716",("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("852428844",("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 = 101;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")))+"'")); } @@ -248,7 +248,7 @@ for (;_i <= limit44 ;_i = _i + step44 ) { //BA.debugLineNum = 107;BA.debugLine="c.Position=i"; _c.setPosition(_i); //BA.debugLineNum = 108;BA.debugLine="Log($\"REGISTRO= ${c.GetString(\"HVD_NUM_REGIST"; -__c.LogImpl("214876724",("REGISTRO= "+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_NUM_REGISTRO")))+""),0); +__c.LogImpl("852428852",("REGISTRO= "+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_NUM_REGISTRO")))+""),0); //BA.debugLineNum = 109;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 = 110;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into repar"; @@ -332,12 +332,12 @@ Object[] _records = null; String _k = ""; //BA.debugLineNum = 172;BA.debugLine="Sub JobDone(Job As HttpJob)"; //BA.debugLineNum = 173;BA.debugLine="Log(Job.Success)"; -__c.LogImpl("215007745",BA.ObjectToString(_job._success /*boolean*/ ),0); +__c.LogImpl("852559873",BA.ObjectToString(_job._success /*boolean*/ ),0); //BA.debugLineNum = 174;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { }else { //BA.debugLineNum = 177;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("215007749","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); +__c.LogImpl("852559877","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); //BA.debugLineNum = 178;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { //BA.debugLineNum = 179;BA.debugLine="Dim resultado As DBResult = reqManager.HandleJo"; @@ -349,7 +349,7 @@ _cliente = BA.ObjectToString(_resultado.Tag /*Object*/ ); //BA.debugLineNum = 182;BA.debugLine="cliente = cliente.SubString(cliente.IndexOf(\"_"; _cliente = _cliente.substring((int) (_cliente.indexOf("_")+24)); //BA.debugLineNum = 183;BA.debugLine="Log($\"Cliente1:${cliente}\"$)"; -__c.LogImpl("215007755",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); +__c.LogImpl("852559883",("Cliente1:"+__c.SmartStringFormatter("",(Object)(_cliente))+""),0); //BA.debugLineNum = 184;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 = 185;BA.debugLine="For Each records() As Object In resultado.Rows"; @@ -369,7 +369,7 @@ final int groupLen13 = group13.getSize() for (; index13 < groupLen13;index13++){ _k = BA.ObjectToString(group13.Get(index13)); //BA.debugLineNum = 187;BA.debugLine="Log(resultado.Tag & \": \" & k & \": \" & record"; -__c.LogImpl("215007759",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("852559887",BA.ObjectToString(_resultado.Tag /*Object*/ )+": "+_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_resultado.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } @@ -389,7 +389,7 @@ reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand _cmd = null; //BA.debugLineNum = 153;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 where ENVIO <> 1"))); //BA.debugLineNum = 154;BA.debugLine="Log($\"REPARTO_Cliente PENDIENTE: ${c.RowCount}\"$)"; -__c.LogImpl("214942210",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); +__c.LogImpl("852494338",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); //BA.debugLineNum = 155;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { //BA.debugLineNum = 156;BA.debugLine="For i=0 To c.RowCount -1"; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_principal.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_principal.java index fc76a27..96872b5 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_principal.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_principal.java @@ -108,6 +108,7 @@ public anywheresoftware.b4a.objects.ButtonWrapper _b_rechazos = null; public anywheresoftware.b4a.objects.PanelWrapper _p_prod = null; public anywheresoftware.b4a.objects.ButtonWrapper _b_regreso = null; public anywheresoftware.b4a.objects.ListViewWrapper _lv_prod_prin = null; +public anywheresoftware.b4a.objects.ButtonWrapper _b_venta_emp = null; public b4a.example.dateutils _dateutils = null; public reparto_mazapa.keymon.lat.main _main = null; public reparto_mazapa.keymon.lat.appupdater _appupdater = null; @@ -123,10 +124,10 @@ public reparto_mazapa.keymon.lat.b4xcollections _b4xcollections = null; public reparto_mazapa.keymon.lat.httputils2service _httputils2service = null; public reparto_mazapa.keymon.lat.xuiviewsutils _xuiviewsutils = null; public String _b_check_click() throws Exception{ - //BA.debugLineNum = 1901;BA.debugLine="Private Sub b_check_Click"; - //BA.debugLineNum = 1903;BA.debugLine="B4XPages.ShowPage(\"checklist\")"; + //BA.debugLineNum = 1919;BA.debugLine="Private Sub b_check_Click"; + //BA.debugLineNum = 1921;BA.debugLine="B4XPages.ShowPage(\"checklist\")"; _b4xpages._showpage /*String*/ (ba,"checklist"); - //BA.debugLineNum = 1905;BA.debugLine="End Sub"; + //BA.debugLineNum = 1923;BA.debugLine="End Sub"; return ""; } public String _b_clieprod_click() throws Exception{ @@ -154,169 +155,169 @@ String _arti3 = ""; int _x = 0; String _totalmonto = ""; String _totalcantidad = ""; - //BA.debugLineNum = 1645;BA.debugLine="Sub B_CLIEPROD_Click"; - //BA.debugLineNum = 1646;BA.debugLine="If b_check.Visible = True Then"; + //BA.debugLineNum = 1663;BA.debugLine="Sub B_CLIEPROD_Click"; + //BA.debugLineNum = 1664;BA.debugLine="If b_check.Visible = True Then"; if (_b_check.getVisible()==__c.True) { - //BA.debugLineNum = 1647;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; + //BA.debugLineNum = 1665;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; __c.MsgboxAsync(BA.ObjectToCharSequence("Favor de hacer el checklist."),BA.ObjectToCharSequence("Atención"),ba); }else { - //BA.debugLineNum = 1649;BA.debugLine="BUSCA.Visible = False"; + //BA.debugLineNum = 1667;BA.debugLine="BUSCA.Visible = False"; _busca.setVisible(__c.False); - //BA.debugLineNum = 1650;BA.debugLine="connecta.Visible = False"; + //BA.debugLineNum = 1668;BA.debugLine="connecta.Visible = False"; _connecta.setVisible(__c.False); - //BA.debugLineNum = 1651;BA.debugLine="trabajar.Visible = False"; + //BA.debugLineNum = 1669;BA.debugLine="trabajar.Visible = False"; _trabajar.setVisible(__c.False); - //BA.debugLineNum = 1652;BA.debugLine="B_CLIEPROD.Visible = False"; + //BA.debugLineNum = 1670;BA.debugLine="B_CLIEPROD.Visible = False"; _b_clieprod.setVisible(__c.False); - //BA.debugLineNum = 1653;BA.debugLine="Panel1.Visible = True"; + //BA.debugLineNum = 1671;BA.debugLine="Panel1.Visible = True"; _panel1.setVisible(__c.True); - //BA.debugLineNum = 1654;BA.debugLine="Panel1.BringToFront"; + //BA.debugLineNum = 1672;BA.debugLine="Panel1.BringToFront"; _panel1.BringToFront(); - //BA.debugLineNum = 1655;BA.debugLine="Btn_Ubicar_Ru.Visible=False"; + //BA.debugLineNum = 1673;BA.debugLine="Btn_Ubicar_Ru.Visible=False"; _btn_ubicar_ru.setVisible(__c.False); - //BA.debugLineNum = 1656;BA.debugLine="c=Starter.skmt.ExecQuery(\"select * from kmt_info"; + //BA.debugLineNum = 1674;BA.debugLine="c=Starter.skmt.ExecQuery(\"select * from kmt_info"; _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 * from kmt_info WHERE gestion <> 0 order by HORAENT"))); - //BA.debugLineNum = 1657;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; + //BA.debugLineNum = 1675;BA.debugLine="Subs.SetDivider(ListView1, Colors.LightGray, 2)"; _subs._setdivider /*String*/ (ba,_listview1,__c.Colors.LightGray,(int) (2)); - //BA.debugLineNum = 1658;BA.debugLine="ListView1.Clear"; + //BA.debugLineNum = 1676;BA.debugLine="ListView1.Clear"; _listview1.Clear(); - //BA.debugLineNum = 1659;BA.debugLine="Dim label1 As Label"; + //BA.debugLineNum = 1677;BA.debugLine="Dim label1 As Label"; _label1 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 1660;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; + //BA.debugLineNum = 1678;BA.debugLine="label1 = ListView1.TwoLinesLayout.Label"; _label1 = _listview1.getTwoLinesLayout().Label; - //BA.debugLineNum = 1661;BA.debugLine="label1.TextSize = 10"; + //BA.debugLineNum = 1679;BA.debugLine="label1.TextSize = 10"; _label1.setTextSize((float) (10)); - //BA.debugLineNum = 1662;BA.debugLine="label1.TextColor = Colors.Black"; + //BA.debugLineNum = 1680;BA.debugLine="label1.TextColor = Colors.Black"; _label1.setTextColor(__c.Colors.Black); - //BA.debugLineNum = 1663;BA.debugLine="Dim label2 As Label"; + //BA.debugLineNum = 1681;BA.debugLine="Dim label2 As Label"; _label2 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 1664;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; + //BA.debugLineNum = 1682;BA.debugLine="label2 = ListView1.TwoLinesLayout.SecondLabel"; _label2 = _listview1.getTwoLinesLayout().SecondLabel; - //BA.debugLineNum = 1665;BA.debugLine="label2.TextSize = 10"; + //BA.debugLineNum = 1683;BA.debugLine="label2.TextSize = 10"; _label2.setTextSize((float) (10)); - //BA.debugLineNum = 1666;BA.debugLine="label2.TextColor = Colors.Black"; + //BA.debugLineNum = 1684;BA.debugLine="label2.TextColor = Colors.Black"; _label2.setTextColor(__c.Colors.Black); - //BA.debugLineNum = 1668;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 1686;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 1669;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 1687;BA.debugLine="For i=0 To c.RowCount -1"; { final int step23 = 1; final int limit23 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit23 ;_i = _i + step23 ) { - //BA.debugLineNum = 1670;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 1688;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 1671;BA.debugLine="If c.GetString(\"gestion\") = \"2\" Then"; + //BA.debugLineNum = 1689;BA.debugLine="If c.GetString(\"gestion\") = \"2\" Then"; if ((_c.GetString("gestion")).equals("2")) { - //BA.debugLineNum = 1672;BA.debugLine="ESTATUS = \"ENTREGADO\""; + //BA.debugLineNum = 1690;BA.debugLine="ESTATUS = \"ENTREGADO\""; _estatus = "ENTREGADO"; - //BA.debugLineNum = 1673;BA.debugLine="Log(\"entrega\")"; -__c.LogImpl("216711708","entrega",0); + //BA.debugLineNum = 1691;BA.debugLine="Log(\"entrega\")"; +__c.LogImpl("850135068","entrega",0); }else if((_c.GetString("gestion")).equals("3")) { - //BA.debugLineNum = 1675;BA.debugLine="Log(\"no entrega\")"; -__c.LogImpl("216711710","no entrega",0); - //BA.debugLineNum = 1676;BA.debugLine="ESTATUS = \"RECHAZADO\""; + //BA.debugLineNum = 1693;BA.debugLine="Log(\"no entrega\")"; +__c.LogImpl("850135070","no entrega",0); + //BA.debugLineNum = 1694;BA.debugLine="ESTATUS = \"RECHAZADO\""; _estatus = "RECHAZADO"; }else { - //BA.debugLineNum = 1678;BA.debugLine="ESTATUS = \"SIN ESTATUS\""; + //BA.debugLineNum = 1696;BA.debugLine="ESTATUS = \"SIN ESTATUS\""; _estatus = "SIN ESTATUS"; }; - //BA.debugLineNum = 1683;BA.debugLine="If ESTATUS = \"ENTREGADO\" Then"; + //BA.debugLineNum = 1701;BA.debugLine="If ESTATUS = \"ENTREGADO\" Then"; if ((_estatus).equals("ENTREGADO")) { - //BA.debugLineNum = 1684;BA.debugLine="Private vc As Cursor = Starter.skmt.ExecQuery"; + //BA.debugLineNum = 1702;BA.debugLine="Private vc As Cursor = Starter.skmt.ExecQuery"; _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 HVD_PROID,HVD_COSTO_TOT, HVD_CANT, IFNULL(HVD_RECHAZOCANT, 0) AS HVD_RECHAZOCANT, CAT_GP_PRECIO from HIST_VENTAS LEFT JOIN CAT_GUNAPROD ON CAT_GP_ID = HVD_PROID where BCAJAS = 0 and HVD_CODPROMO ='"+__c.SmartStringFormatter("",(Object)(_subs._traealmacen /*String*/ (ba)))+"' and HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"'")))); - //BA.debugLineNum = 1686;BA.debugLine="Private cuenta0 As String = 0"; + //BA.debugLineNum = 1704;BA.debugLine="Private cuenta0 As String = 0"; _cuenta0 = BA.NumberToString(0); - //BA.debugLineNum = 1687;BA.debugLine="Private arti As String = 0"; + //BA.debugLineNum = 1705;BA.debugLine="Private arti As String = 0"; _arti = BA.NumberToString(0); - //BA.debugLineNum = 1688;BA.debugLine="If vc.RowCount > 0 Then"; + //BA.debugLineNum = 1706;BA.debugLine="If vc.RowCount > 0 Then"; if (_vc.getRowCount()>0) { - //BA.debugLineNum = 1689;BA.debugLine="For a = 0 To vc.RowCount - 1"; + //BA.debugLineNum = 1707;BA.debugLine="For a = 0 To vc.RowCount - 1"; { final int step39 = 1; final int limit39 = (int) (_vc.getRowCount()-1); _a = (int) (0) ; for (;_a <= limit39 ;_a = _a + step39 ) { - //BA.debugLineNum = 1690;BA.debugLine="vc.Position = a"; + //BA.debugLineNum = 1708;BA.debugLine="vc.Position = a"; _vc.setPosition(_a); - //BA.debugLineNum = 1692;BA.debugLine="arti = arti + (vc.GetString(\"HVD_CANT\") - v"; + //BA.debugLineNum = 1710;BA.debugLine="arti = arti + (vc.GetString(\"HVD_CANT\") - v"; _arti = BA.NumberToString((double)(Double.parseDouble(_arti))+((double)(Double.parseDouble(_vc.GetString("HVD_CANT")))-(double)(Double.parseDouble(_vc.GetString("HVD_RECHAZOCANT"))))); - //BA.debugLineNum = 1693;BA.debugLine="cuenta0 = cuenta0 + ((vc.GetString(\"HVD_CAN"; + //BA.debugLineNum = 1711;BA.debugLine="cuenta0 = cuenta0 + ((vc.GetString(\"HVD_CAN"; _cuenta0 = BA.NumberToString((double)(Double.parseDouble(_cuenta0))+(((double)(Double.parseDouble(_vc.GetString("HVD_CANT")))-(double)(Double.parseDouble(_vc.GetString("HVD_RECHAZOCANT"))))*((double)(Double.parseDouble(_vc.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_vc.GetString("HVD_CANT")))))); } }; }; - //BA.debugLineNum = 1698;BA.debugLine="Private vc2 As Cursor = Starter.skmt.ExecQuer"; + //BA.debugLineNum = 1716;BA.debugLine="Private vc2 As Cursor = Starter.skmt.ExecQuer"; _vc2 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc2 = (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_PROID, HVD_CANT, IFNULL(HVD_RECHAZOCANT, 0) AS HVD_RECHAZOCANT, CANTC,HVD_COSTO_TOT from HIST_VENTAS where HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"' AND BCAJAS = 1")))); - //BA.debugLineNum = 1699;BA.debugLine="Private Cuenta1 As String = 0"; + //BA.debugLineNum = 1717;BA.debugLine="Private Cuenta1 As String = 0"; _cuenta1 = BA.NumberToString(0); - //BA.debugLineNum = 1700;BA.debugLine="Private arti1 As String = 0"; + //BA.debugLineNum = 1718;BA.debugLine="Private arti1 As String = 0"; _arti1 = BA.NumberToString(0); - //BA.debugLineNum = 1701;BA.debugLine="If vc2.RowCount > 0 Then"; + //BA.debugLineNum = 1719;BA.debugLine="If vc2.RowCount > 0 Then"; if (_vc2.getRowCount()>0) { - //BA.debugLineNum = 1702;BA.debugLine="For h = 0 To vc2.RowCount - 1"; + //BA.debugLineNum = 1720;BA.debugLine="For h = 0 To vc2.RowCount - 1"; { final int step49 = 1; final int limit49 = (int) (_vc2.getRowCount()-1); _h = (int) (0) ; for (;_h <= limit49 ;_h = _h + step49 ) { - //BA.debugLineNum = 1703;BA.debugLine="vc2.Position = h"; + //BA.debugLineNum = 1721;BA.debugLine="vc2.Position = h"; _vc2.setPosition(_h); - //BA.debugLineNum = 1704;BA.debugLine="Dim preu As Float = NumberFormat2(vc2.GetSt"; + //BA.debugLineNum = 1722;BA.debugLine="Dim preu As Float = NumberFormat2(vc2.GetSt"; _preu = (float)(Double.parseDouble(__c.NumberFormat2((double)(Double.parseDouble(_vc2.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_vc2.GetString("CANTC"))),(int) (0),(int) (2),(int) (2),__c.False))); - //BA.debugLineNum = 1705;BA.debugLine="Private vc3 As Cursor = Starter.skmt.ExecQu"; + //BA.debugLineNum = 1723;BA.debugLine="Private vc3 As Cursor = Starter.skmt.ExecQu"; _vc3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc3 = (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 PRECIOCONVER, CONVERSION from CAT_GUNAPROD where CAT_GP_ID = '"+__c.SmartStringFormatter("",(Object)(_vc2.GetString("HVD_PROID")))+"'")))); - //BA.debugLineNum = 1706;BA.debugLine="If vc3.RowCount > 0 Then"; + //BA.debugLineNum = 1724;BA.debugLine="If vc3.RowCount > 0 Then"; if (_vc3.getRowCount()>0) { - //BA.debugLineNum = 1707;BA.debugLine="vc3.Position = 0"; + //BA.debugLineNum = 1725;BA.debugLine="vc3.Position = 0"; _vc3.setPosition((int) (0)); - //BA.debugLineNum = 1708;BA.debugLine="Cuenta1 = Cuenta1 + ((vc2.GetString(\"CANTC"; + //BA.debugLineNum = 1726;BA.debugLine="Cuenta1 = Cuenta1 + ((vc2.GetString(\"CANTC"; _cuenta1 = BA.NumberToString((double)(Double.parseDouble(_cuenta1))+(((double)(Double.parseDouble(_vc2.GetString("CANTC")))-((double)(Double.parseDouble(_vc2.GetString("HVD_RECHAZOCANT")))/(double)(double)(Double.parseDouble(_vc3.GetString("CONVERSION")))))*_preu)); - //BA.debugLineNum = 1709;BA.debugLine="arti1 = arti1 + (vc2.GetString(\"HVD_CANT\")"; + //BA.debugLineNum = 1727;BA.debugLine="arti1 = arti1 + (vc2.GetString(\"HVD_CANT\")"; _arti1 = BA.NumberToString((double)(Double.parseDouble(_arti1))+((double)(Double.parseDouble(_vc2.GetString("HVD_CANT")))-(double)(Double.parseDouble(_vc2.GetString("HVD_RECHAZOCANT"))))); }; } }; }; - //BA.debugLineNum = 1715;BA.debugLine="Private vc4 As Cursor = Starter.skmt.ExecQuer"; + //BA.debugLineNum = 1733;BA.debugLine="Private vc4 As Cursor = Starter.skmt.ExecQuer"; _vc4 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc4 = (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_PROID, HVD_CANT, IFNULL(HVD_RECHAZOCANT, 0) AS HVD_RECHAZOCANT, CANTC,HVD_COSTO_TOT, HVD_RECHAZO, HVD_CODPROMO from HIST_VENTAS where HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"' AND BCAJAS = 0 and HVD_CODPROMO <> '"+__c.SmartStringFormatter("",(Object)(_subs._traealmacen /*String*/ (ba)))+"'")))); - //BA.debugLineNum = 1716;BA.debugLine="Private Cuenta2 As String = 0"; + //BA.debugLineNum = 1734;BA.debugLine="Private Cuenta2 As String = 0"; _cuenta2 = BA.NumberToString(0); - //BA.debugLineNum = 1717;BA.debugLine="Private arti2 As String = 0"; + //BA.debugLineNum = 1735;BA.debugLine="Private arti2 As String = 0"; _arti2 = BA.NumberToString(0); - //BA.debugLineNum = 1718;BA.debugLine="If vc4.RowCount > 0 Then"; + //BA.debugLineNum = 1736;BA.debugLine="If vc4.RowCount > 0 Then"; if (_vc4.getRowCount()>0) { - //BA.debugLineNum = 1720;BA.debugLine="For k = 0 To vc4.RowCount - 1"; + //BA.debugLineNum = 1738;BA.debugLine="For k = 0 To vc4.RowCount - 1"; { final int step64 = 1; final int limit64 = (int) (_vc4.getRowCount()-1); _k = (int) (0) ; for (;_k <= limit64 ;_k = _k + step64 ) { - //BA.debugLineNum = 1721;BA.debugLine="vc4.Position = k"; + //BA.debugLineNum = 1739;BA.debugLine="vc4.Position = k"; _vc4.setPosition(_k); - //BA.debugLineNum = 1722;BA.debugLine="If vc4.GetString(\"HVD_PROID\") <> vc4.GetStr"; + //BA.debugLineNum = 1740;BA.debugLine="If vc4.GetString(\"HVD_PROID\") <> vc4.GetStr"; if ((_vc4.GetString("HVD_PROID")).equals(_vc4.GetString("HVD_CODPROMO")) == false) { - //BA.debugLineNum = 1723;BA.debugLine="If vc4.GetString(\"HVD_RECHAZO\") = 0 Then"; + //BA.debugLineNum = 1741;BA.debugLine="If vc4.GetString(\"HVD_RECHAZO\") = 0 Then"; if ((_vc4.GetString("HVD_RECHAZO")).equals(BA.NumberToString(0))) { - //BA.debugLineNum = 1724;BA.debugLine="Cuenta2 = Cuenta2 + vc4.GetString(\"HVD_CO"; + //BA.debugLineNum = 1742;BA.debugLine="Cuenta2 = Cuenta2 + vc4.GetString(\"HVD_CO"; _cuenta2 = BA.NumberToString((double)(Double.parseDouble(_cuenta2))+(double)(Double.parseDouble(_vc4.GetString("HVD_COSTO_TOT")))); - //BA.debugLineNum = 1725;BA.debugLine="arti2 = arti2 + vc4.GetString(\"HVD_CANT\")"; + //BA.debugLineNum = 1743;BA.debugLine="arti2 = arti2 + vc4.GetString(\"HVD_CANT\")"; _arti2 = BA.NumberToString((double)(Double.parseDouble(_arti2))+(double)(Double.parseDouble(_vc4.GetString("HVD_CANT")))); }else { - //BA.debugLineNum = 1727;BA.debugLine="Private vc5 As Cursor = Starter.skmt.Exec"; + //BA.debugLineNum = 1745;BA.debugLine="Private vc5 As Cursor = Starter.skmt.Exec"; _vc5 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc5 = (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_GP_PRECIO from CAT_GUNAPROD where CAT_GP_ID = '"+__c.SmartStringFormatter("",(Object)(_vc4.GetString("HVD_PROID")))+"'")))); - //BA.debugLineNum = 1728;BA.debugLine="If vc5.RowCount > 0 Then"; + //BA.debugLineNum = 1746;BA.debugLine="If vc5.RowCount > 0 Then"; if (_vc5.getRowCount()>0) { - //BA.debugLineNum = 1729;BA.debugLine="vc5.Position= 0"; + //BA.debugLineNum = 1747;BA.debugLine="vc5.Position= 0"; _vc5.setPosition((int) (0)); - //BA.debugLineNum = 1731;BA.debugLine="Cuenta2 = Cuenta2 +((vc4.GetString(\"HVD_"; + //BA.debugLineNum = 1749;BA.debugLine="Cuenta2 = Cuenta2 +((vc4.GetString(\"HVD_"; _cuenta2 = BA.NumberToString((double)(Double.parseDouble(_cuenta2))+(((double)(Double.parseDouble(_vc4.GetString("HVD_CANT")))-(double)(Double.parseDouble(_vc4.GetString("HVD_RECHAZOCANT"))))*(double)(Double.parseDouble(_vc5.GetString("CAT_GP_PRECIO"))))); - //BA.debugLineNum = 1732;BA.debugLine="arti2 = arti2 +(vc4.GetString(\"HVD_CANT\""; + //BA.debugLineNum = 1750;BA.debugLine="arti2 = arti2 +(vc4.GetString(\"HVD_CANT\""; _arti2 = BA.NumberToString((double)(Double.parseDouble(_arti2))+((double)(Double.parseDouble(_vc4.GetString("HVD_CANT")))-(double)(Double.parseDouble(_vc4.GetString("HVD_RECHAZOCANT"))))); }; }; @@ -324,135 +325,135 @@ _arti2 = BA.NumberToString((double)(Double.parseDouble(_arti2))+((double)(Double } }; }; - //BA.debugLineNum = 1741;BA.debugLine="Private c4 As Cursor = Starter.skmt.ExecQuery"; + //BA.debugLineNum = 1759;BA.debugLine="Private c4 As Cursor = Starter.skmt.ExecQuery"; _c4 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c4 = (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(PE_CANT,0) AS PE_CANT, iFNULL(PE_COSTO_TOT,0) AS PE_COSTO_TOT FROM PEDIDO WHERE PE_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"'")))); - //BA.debugLineNum = 1742;BA.debugLine="Private Cuenta3 As String = 0"; + //BA.debugLineNum = 1760;BA.debugLine="Private Cuenta3 As String = 0"; _cuenta3 = BA.NumberToString(0); - //BA.debugLineNum = 1743;BA.debugLine="Private arti3 As String = 0"; + //BA.debugLineNum = 1761;BA.debugLine="Private arti3 As String = 0"; _arti3 = BA.NumberToString(0); - //BA.debugLineNum = 1744;BA.debugLine="If c4.RowCount > 0 Then"; + //BA.debugLineNum = 1762;BA.debugLine="If c4.RowCount > 0 Then"; if (_c4.getRowCount()>0) { - //BA.debugLineNum = 1745;BA.debugLine="For x = 0 To c4.RowCount -1"; + //BA.debugLineNum = 1763;BA.debugLine="For x = 0 To c4.RowCount -1"; { final int step85 = 1; final int limit85 = (int) (_c4.getRowCount()-1); _x = (int) (0) ; for (;_x <= limit85 ;_x = _x + step85 ) { - //BA.debugLineNum = 1746;BA.debugLine="c4.Position = x"; + //BA.debugLineNum = 1764;BA.debugLine="c4.Position = x"; _c4.setPosition(_x); - //BA.debugLineNum = 1747;BA.debugLine="arti3 = arti3 + c4.GetString(\"PE_CANT\")"; + //BA.debugLineNum = 1765;BA.debugLine="arti3 = arti3 + c4.GetString(\"PE_CANT\")"; _arti3 = BA.NumberToString((double)(Double.parseDouble(_arti3))+(double)(Double.parseDouble(_c4.GetString("PE_CANT")))); - //BA.debugLineNum = 1748;BA.debugLine="Cuenta3 = Cuenta3 + c4.GetString(\"PE_COSTO_"; + //BA.debugLineNum = 1766;BA.debugLine="Cuenta3 = Cuenta3 + c4.GetString(\"PE_COSTO_"; _cuenta3 = BA.NumberToString((double)(Double.parseDouble(_cuenta3))+(double)(Double.parseDouble(_c4.GetString("PE_COSTO_TOT")))); } }; }; - //BA.debugLineNum = 1753;BA.debugLine="Private TOTALMONTO As String = cuenta0 + Cuen"; + //BA.debugLineNum = 1771;BA.debugLine="Private TOTALMONTO As String = cuenta0 + Cuen"; _totalmonto = BA.NumberToString((double)(Double.parseDouble(_cuenta0))+(double)(Double.parseDouble(_cuenta1))+(double)(Double.parseDouble(_cuenta2))+(double)(Double.parseDouble(_cuenta3))); - //BA.debugLineNum = 1754;BA.debugLine="Private TOTALcantidad As String = arti + arti"; + //BA.debugLineNum = 1772;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 = 1756;BA.debugLine="ListView1.AddTwoLines(c.GetString(\"CAT_CL_COD"; + //BA.debugLineNum = 1774;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 = 1757;BA.debugLine="Log(\"si entre2\")"; -__c.LogImpl("216711792","si entre2",0); + //BA.debugLineNum = 1775;BA.debugLine="Log(\"si entre2\")"; +__c.LogImpl("850135152","si entre2",0); }else if((_estatus).equals("RECHAZADO")) { - //BA.debugLineNum = 1761;BA.debugLine="Private vc As Cursor = Starter.skmt.ExecQuery"; + //BA.debugLineNum = 1779;BA.debugLine="Private vc As Cursor = Starter.skmt.ExecQuery"; _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 HVD_PROID, HVD_CANT, IFNULL(HVD_RECHAZOCANT, 0) AS HVD_RECHAZOCANT, CAT_GP_PRECIO, HVD_COSTO_TOT from HIST_VENTAS LEFT JOIN CAT_GUNAPROD ON CAT_GP_ID = HVD_PROID where BCAJAS = 0 and HVD_CODPROMO ='"+__c.SmartStringFormatter("",(Object)(_subs._traealmacen /*String*/ (ba)))+"' and HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"'")))); - //BA.debugLineNum = 1763;BA.debugLine="Private cuenta0 As String = 0"; + //BA.debugLineNum = 1781;BA.debugLine="Private cuenta0 As String = 0"; _cuenta0 = BA.NumberToString(0); - //BA.debugLineNum = 1764;BA.debugLine="Private arti As String = 0"; + //BA.debugLineNum = 1782;BA.debugLine="Private arti As String = 0"; _arti = BA.NumberToString(0); - //BA.debugLineNum = 1765;BA.debugLine="If vc.RowCount > 0 Then"; + //BA.debugLineNum = 1783;BA.debugLine="If vc.RowCount > 0 Then"; if (_vc.getRowCount()>0) { - //BA.debugLineNum = 1766;BA.debugLine="For a = 0 To vc.RowCount - 1"; + //BA.debugLineNum = 1784;BA.debugLine="For a = 0 To vc.RowCount - 1"; { final int step100 = 1; final int limit100 = (int) (_vc.getRowCount()-1); _a = (int) (0) ; for (;_a <= limit100 ;_a = _a + step100 ) { - //BA.debugLineNum = 1767;BA.debugLine="vc.Position = a"; + //BA.debugLineNum = 1785;BA.debugLine="vc.Position = a"; _vc.setPosition(_a); - //BA.debugLineNum = 1768;BA.debugLine="Dim preu As Float = NumberFormat2(vc.GetStr"; + //BA.debugLineNum = 1786;BA.debugLine="Dim preu As Float = NumberFormat2(vc.GetStr"; _preu = (float)(Double.parseDouble(__c.NumberFormat2((double)(Double.parseDouble(_vc.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_vc.GetString("HVD_CANT"))),(int) (0),(int) (2),(int) (2),__c.False))); - //BA.debugLineNum = 1770;BA.debugLine="arti = arti + (vc.GetString(\"HVD_RECHAZOCAN"; + //BA.debugLineNum = 1788;BA.debugLine="arti = arti + (vc.GetString(\"HVD_RECHAZOCAN"; _arti = BA.NumberToString((double)(Double.parseDouble(_arti))+(double)(Double.parseDouble((_vc.GetString("HVD_RECHAZOCANT"))))); - //BA.debugLineNum = 1771;BA.debugLine="cuenta0 = cuenta0 + ((vc.GetString(\"HVD_REC"; + //BA.debugLineNum = 1789;BA.debugLine="cuenta0 = cuenta0 + ((vc.GetString(\"HVD_REC"; _cuenta0 = BA.NumberToString((double)(Double.parseDouble(_cuenta0))+((double)(Double.parseDouble((_vc.GetString("HVD_RECHAZOCANT"))))*_preu)); } }; }; - //BA.debugLineNum = 1776;BA.debugLine="Private vc2 As Cursor = Starter.skmt.ExecQuer"; + //BA.debugLineNum = 1794;BA.debugLine="Private vc2 As Cursor = Starter.skmt.ExecQuer"; _vc2 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc2 = (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_PROID, HVD_CANT, IFNULL(HVD_RECHAZOCANT, 0) AS HVD_RECHAZOCANT, CANTC,HVD_COSTO_TOT from HIST_VENTAS where HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"' AND BCAJAS = 1")))); - //BA.debugLineNum = 1777;BA.debugLine="Private Cuenta1 As String = 0"; + //BA.debugLineNum = 1795;BA.debugLine="Private Cuenta1 As String = 0"; _cuenta1 = BA.NumberToString(0); - //BA.debugLineNum = 1778;BA.debugLine="Private arti1 As String = 0"; + //BA.debugLineNum = 1796;BA.debugLine="Private arti1 As String = 0"; _arti1 = BA.NumberToString(0); - //BA.debugLineNum = 1779;BA.debugLine="If vc2.RowCount > 0 Then"; + //BA.debugLineNum = 1797;BA.debugLine="If vc2.RowCount > 0 Then"; if (_vc2.getRowCount()>0) { - //BA.debugLineNum = 1780;BA.debugLine="For h = 0 To vc2.RowCount - 1"; + //BA.debugLineNum = 1798;BA.debugLine="For h = 0 To vc2.RowCount - 1"; { final int step111 = 1; final int limit111 = (int) (_vc2.getRowCount()-1); _h = (int) (0) ; for (;_h <= limit111 ;_h = _h + step111 ) { - //BA.debugLineNum = 1781;BA.debugLine="vc2.Position = h"; + //BA.debugLineNum = 1799;BA.debugLine="vc2.Position = h"; _vc2.setPosition(_h); - //BA.debugLineNum = 1782;BA.debugLine="Dim preu As Float = NumberFormat2(vc2.GetSt"; + //BA.debugLineNum = 1800;BA.debugLine="Dim preu As Float = NumberFormat2(vc2.GetSt"; _preu = (float)(Double.parseDouble(__c.NumberFormat2((double)(Double.parseDouble(_vc2.GetString("HVD_COSTO_TOT")))/(double)(double)(Double.parseDouble(_vc2.GetString("CANTC"))),(int) (0),(int) (2),(int) (2),__c.False))); - //BA.debugLineNum = 1783;BA.debugLine="Private vc3 As Cursor = Starter.skmt.ExecQu"; + //BA.debugLineNum = 1801;BA.debugLine="Private vc3 As Cursor = Starter.skmt.ExecQu"; _vc3 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc3 = (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 PRECIOCONVER, CONVERSION from CAT_GUNAPROD where CAT_GP_ID = '"+__c.SmartStringFormatter("",(Object)(_vc2.GetString("HVD_PROID")))+"'")))); - //BA.debugLineNum = 1784;BA.debugLine="If vc3.RowCount > 0 Then"; + //BA.debugLineNum = 1802;BA.debugLine="If vc3.RowCount > 0 Then"; if (_vc3.getRowCount()>0) { - //BA.debugLineNum = 1785;BA.debugLine="vc3.Position = 0"; + //BA.debugLineNum = 1803;BA.debugLine="vc3.Position = 0"; _vc3.setPosition((int) (0)); - //BA.debugLineNum = 1786;BA.debugLine="Cuenta1 = Cuenta1 + ((vc2.GetString(\"HVD_R"; + //BA.debugLineNum = 1804;BA.debugLine="Cuenta1 = Cuenta1 + ((vc2.GetString(\"HVD_R"; _cuenta1 = BA.NumberToString((double)(Double.parseDouble(_cuenta1))+(((double)(Double.parseDouble(_vc2.GetString("HVD_RECHAZOCANT")))/(double)(double)(Double.parseDouble(_vc3.GetString("CONVERSION"))))*_preu)); - //BA.debugLineNum = 1787;BA.debugLine="arti1 = arti1 + (vc2.GetString(\"HVD_RECHAZ"; + //BA.debugLineNum = 1805;BA.debugLine="arti1 = arti1 + (vc2.GetString(\"HVD_RECHAZ"; _arti1 = BA.NumberToString((double)(Double.parseDouble(_arti1))+(double)(Double.parseDouble((_vc2.GetString("HVD_RECHAZOCANT"))))); }; } }; }; - //BA.debugLineNum = 1793;BA.debugLine="Private vc4 As Cursor = Starter.skmt.ExecQuer"; + //BA.debugLineNum = 1811;BA.debugLine="Private vc4 As Cursor = Starter.skmt.ExecQuer"; _vc4 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc4 = (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_PROID, HVD_CANT, IFNULL(HVD_RECHAZOCANT, 0) AS HVD_RECHAZOCANT, CANTC,HVD_COSTO_TOT, HVD_RECHAZO, HVD_CODPROMO from HIST_VENTAS where HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"' AND BCAJAS = 0 and HVD_CODPROMO <> '"+__c.SmartStringFormatter("",(Object)(_subs._traealmacen /*String*/ (ba)))+"'")))); - //BA.debugLineNum = 1794;BA.debugLine="Private Cuenta2 As String = 0"; + //BA.debugLineNum = 1812;BA.debugLine="Private Cuenta2 As String = 0"; _cuenta2 = BA.NumberToString(0); - //BA.debugLineNum = 1795;BA.debugLine="Private arti2 As String = 0"; + //BA.debugLineNum = 1813;BA.debugLine="Private arti2 As String = 0"; _arti2 = BA.NumberToString(0); - //BA.debugLineNum = 1796;BA.debugLine="If vc4.RowCount > 0 Then"; + //BA.debugLineNum = 1814;BA.debugLine="If vc4.RowCount > 0 Then"; if (_vc4.getRowCount()>0) { - //BA.debugLineNum = 1798;BA.debugLine="For k = 0 To vc4.RowCount - 1"; + //BA.debugLineNum = 1816;BA.debugLine="For k = 0 To vc4.RowCount - 1"; { final int step126 = 1; final int limit126 = (int) (_vc4.getRowCount()-1); _k = (int) (0) ; for (;_k <= limit126 ;_k = _k + step126 ) { - //BA.debugLineNum = 1799;BA.debugLine="vc4.Position = k"; + //BA.debugLineNum = 1817;BA.debugLine="vc4.Position = k"; _vc4.setPosition(_k); - //BA.debugLineNum = 1800;BA.debugLine="If vc4.GetString(\"HVD_PROID\") <> vc4.GetStr"; + //BA.debugLineNum = 1818;BA.debugLine="If vc4.GetString(\"HVD_PROID\") <> vc4.GetStr"; if ((_vc4.GetString("HVD_PROID")).equals(_vc4.GetString("HVD_CODPROMO")) == false) { - //BA.debugLineNum = 1801;BA.debugLine="If vc4.GetString(\"HVD_RECHAZO\") = 0 Then"; + //BA.debugLineNum = 1819;BA.debugLine="If vc4.GetString(\"HVD_RECHAZO\") = 0 Then"; if ((_vc4.GetString("HVD_RECHAZO")).equals(BA.NumberToString(0))) { - //BA.debugLineNum = 1802;BA.debugLine="Cuenta2 = Cuenta2 + vc4.GetString(\"HVD_CO"; + //BA.debugLineNum = 1820;BA.debugLine="Cuenta2 = Cuenta2 + vc4.GetString(\"HVD_CO"; _cuenta2 = BA.NumberToString((double)(Double.parseDouble(_cuenta2))+(double)(Double.parseDouble(_vc4.GetString("HVD_COSTO_TOT")))); - //BA.debugLineNum = 1803;BA.debugLine="arti2 = arti2 + vc4.GetString(\"HVD_RECHAZ"; + //BA.debugLineNum = 1821;BA.debugLine="arti2 = arti2 + vc4.GetString(\"HVD_RECHAZ"; _arti2 = BA.NumberToString((double)(Double.parseDouble(_arti2))+(double)(Double.parseDouble(_vc4.GetString("HVD_RECHAZOCANT")))); }else { - //BA.debugLineNum = 1805;BA.debugLine="Private vc5 As Cursor = Starter.skmt.Exec"; + //BA.debugLineNum = 1823;BA.debugLine="Private vc5 As Cursor = Starter.skmt.Exec"; _vc5 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _vc5 = (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_GP_PRECIO from CAT_GUNAPROD where CAT_GP_ID = '"+__c.SmartStringFormatter("",(Object)(_vc4.GetString("HVD_PROID")))+"'")))); - //BA.debugLineNum = 1806;BA.debugLine="If vc5.RowCount > 0 Then"; + //BA.debugLineNum = 1824;BA.debugLine="If vc5.RowCount > 0 Then"; if (_vc5.getRowCount()>0) { - //BA.debugLineNum = 1807;BA.debugLine="vc5.Position= 0"; + //BA.debugLineNum = 1825;BA.debugLine="vc5.Position= 0"; _vc5.setPosition((int) (0)); - //BA.debugLineNum = 1809;BA.debugLine="Cuenta2 = Cuenta2 +(( vc4.GetString(\"HVD"; + //BA.debugLineNum = 1827;BA.debugLine="Cuenta2 = Cuenta2 +(( vc4.GetString(\"HVD"; _cuenta2 = BA.NumberToString((double)(Double.parseDouble(_cuenta2))+((double)(Double.parseDouble((_vc4.GetString("HVD_RECHAZOCANT"))))*(double)(Double.parseDouble(_vc5.GetString("CAT_GP_PRECIO"))))); - //BA.debugLineNum = 1810;BA.debugLine="arti2 = arti2 +(vc4.GetString(\"HVD_RECHA"; + //BA.debugLineNum = 1828;BA.debugLine="arti2 = arti2 +(vc4.GetString(\"HVD_RECHA"; _arti2 = BA.NumberToString((double)(Double.parseDouble(_arti2))+(double)(Double.parseDouble((_vc4.GetString("HVD_RECHAZOCANT"))))); }; }; @@ -460,51 +461,51 @@ _arti2 = BA.NumberToString((double)(Double.parseDouble(_arti2))+(double)(Double. } }; }; - //BA.debugLineNum = 1819;BA.debugLine="Private c4 As Cursor = Starter.skmt.ExecQuery"; + //BA.debugLineNum = 1837;BA.debugLine="Private c4 As Cursor = Starter.skmt.ExecQuery"; _c4 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _c4 = (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(PE_CANT,0) AS PE_CANT, iFNULL(PE_COSTO_TOT,0) AS PE_COSTO_TOT FROM PEDIDO WHERE PE_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("CAT_CL_CODIGO")))+"'")))); - //BA.debugLineNum = 1820;BA.debugLine="Private Cuenta3 As String = 0"; + //BA.debugLineNum = 1838;BA.debugLine="Private Cuenta3 As String = 0"; _cuenta3 = BA.NumberToString(0); - //BA.debugLineNum = 1821;BA.debugLine="Private arti3 As String = 0"; + //BA.debugLineNum = 1839;BA.debugLine="Private arti3 As String = 0"; _arti3 = BA.NumberToString(0); - //BA.debugLineNum = 1822;BA.debugLine="If c4.RowCount > 0 Then"; + //BA.debugLineNum = 1840;BA.debugLine="If c4.RowCount > 0 Then"; if (_c4.getRowCount()>0) { - //BA.debugLineNum = 1823;BA.debugLine="For x = 0 To c4.RowCount -1"; + //BA.debugLineNum = 1841;BA.debugLine="For x = 0 To c4.RowCount -1"; { final int step147 = 1; final int limit147 = (int) (_c4.getRowCount()-1); _x = (int) (0) ; for (;_x <= limit147 ;_x = _x + step147 ) { - //BA.debugLineNum = 1824;BA.debugLine="c4.Position = x"; + //BA.debugLineNum = 1842;BA.debugLine="c4.Position = x"; _c4.setPosition(_x); - //BA.debugLineNum = 1825;BA.debugLine="arti3 = arti3 + c4.GetString(\"PE_CANT\")"; + //BA.debugLineNum = 1843;BA.debugLine="arti3 = arti3 + c4.GetString(\"PE_CANT\")"; _arti3 = BA.NumberToString((double)(Double.parseDouble(_arti3))+(double)(Double.parseDouble(_c4.GetString("PE_CANT")))); - //BA.debugLineNum = 1826;BA.debugLine="Cuenta3 = Cuenta3 + c4.GetString(\"PE_COSTO_"; + //BA.debugLineNum = 1844;BA.debugLine="Cuenta3 = Cuenta3 + c4.GetString(\"PE_COSTO_"; _cuenta3 = BA.NumberToString((double)(Double.parseDouble(_cuenta3))+(double)(Double.parseDouble(_c4.GetString("PE_COSTO_TOT")))); } }; }; - //BA.debugLineNum = 1831;BA.debugLine="Private TOTALMONTO As String = cuenta0 + Cuen"; + //BA.debugLineNum = 1849;BA.debugLine="Private TOTALMONTO As String = cuenta0 + Cuen"; _totalmonto = BA.NumberToString((double)(Double.parseDouble(_cuenta0))+(double)(Double.parseDouble(_cuenta1))+(double)(Double.parseDouble(_cuenta2))+(double)(Double.parseDouble(_cuenta3))); - //BA.debugLineNum = 1832;BA.debugLine="Private TOTALcantidad As String = arti + arti"; + //BA.debugLineNum = 1850;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 = 1834;BA.debugLine="Log(\"si entre\")"; -__c.LogImpl("216711869","si entre",0); - //BA.debugLineNum = 1835;BA.debugLine="ListView1.AddTwoLines(c.GetString(\"CAT_CL_COD"; + //BA.debugLineNum = 1852;BA.debugLine="Log(\"si entre\")"; +__c.LogImpl("850135229","si entre",0); + //BA.debugLineNum = 1853;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 = 1870;BA.debugLine="End Sub"; + //BA.debugLineNum = 1888;BA.debugLine="End Sub"; return ""; } public String _b_mapa_click() throws Exception{ - //BA.debugLineNum = 1589;BA.debugLine="Sub b_mapa_Click"; - //BA.debugLineNum = 1591;BA.debugLine="B4XPages.ShowPage(\"mapas\")"; + //BA.debugLineNum = 1607;BA.debugLine="Sub b_mapa_Click"; + //BA.debugLineNum = 1609;BA.debugLine="B4XPages.ShowPage(\"mapas\")"; _b4xpages._showpage /*String*/ (ba,"mapas"); - //BA.debugLineNum = 1592;BA.debugLine="End Sub"; + //BA.debugLineNum = 1610;BA.debugLine="End Sub"; return ""; } public String _b_rechazos_click() throws Exception{ @@ -513,115 +514,126 @@ int _i = 0; String _itemtext = ""; anywheresoftware.b4a.sql.SQL.CursorWrapper _c3 = null; String _resta = ""; - //BA.debugLineNum = 1918;BA.debugLine="Private Sub b_rechazos_Click"; - //BA.debugLineNum = 1919;BA.debugLine="Dim label1 As Label"; + //BA.debugLineNum = 1936;BA.debugLine="Private Sub b_rechazos_Click"; + //BA.debugLineNum = 1937;BA.debugLine="Dim label1 As Label"; _label1 = new anywheresoftware.b4a.objects.LabelWrapper(); - //BA.debugLineNum = 1920;BA.debugLine="label1 = lv_prod_Prin.SingleLineLayout.Label"; + //BA.debugLineNum = 1938;BA.debugLine="label1 = lv_prod_Prin.SingleLineLayout.Label"; _label1 = _lv_prod_prin.getSingleLineLayout().Label; - //BA.debugLineNum = 1921;BA.debugLine="label1.TextSize = 14"; + //BA.debugLineNum = 1939;BA.debugLine="label1.TextSize = 14"; _label1.setTextSize((float) (14)); - //BA.debugLineNum = 1922;BA.debugLine="p_prod.Width = Root.Width"; + //BA.debugLineNum = 1940;BA.debugLine="p_prod.Width = Root.Width"; _p_prod.setWidth(_root.getWidth()); - //BA.debugLineNum = 1923;BA.debugLine="p_prod.Height = Root.Height"; + //BA.debugLineNum = 1941;BA.debugLine="p_prod.Height = Root.Height"; _p_prod.setHeight(_root.getHeight()); - //BA.debugLineNum = 1924;BA.debugLine="b_regreso.Left = (p_prod.Width - b_regreso.Width)"; + //BA.debugLineNum = 1942;BA.debugLine="b_regreso.Left = (p_prod.Width - b_regreso.Width)"; _b_regreso.setLeft((int) ((_p_prod.getWidth()-_b_regreso.getWidth())/(double)2)); - //BA.debugLineNum = 1925;BA.debugLine="b_regreso.Top = p_prod.Height - b_regreso.Height"; + //BA.debugLineNum = 1943;BA.debugLine="b_regreso.Top = p_prod.Height - b_regreso.Height"; _b_regreso.setTop((int) (_p_prod.getHeight()-_b_regreso.getHeight())); - //BA.debugLineNum = 1927;BA.debugLine="p_prod.Visible = True"; + //BA.debugLineNum = 1945;BA.debugLine="p_prod.Visible = True"; _p_prod.setVisible(__c.True); - //BA.debugLineNum = 1928;BA.debugLine="p_prod.BringToFront"; + //BA.debugLineNum = 1946;BA.debugLine="p_prod.BringToFront"; _p_prod.BringToFront(); - //BA.debugLineNum = 1933;BA.debugLine="Private c As Cursor = Starter.skmt.ExecQuery(\"sel"; + //BA.debugLineNum = 1951;BA.debugLine="Private c As Cursor = Starter.skmt.ExecQuery(\"sel"; _c = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _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_PRONOMBRE, IFNULL(SUM(HVD_RECHAZOCANT), 0) AS HVD_RECHAZOCANT, HVD_PROID from HIST_VENTAS WHERE hvd_rechazo <> 2 and HVD_RECHAZOCANT > 0 GROUP BY HVD_PROID order by HVD_PRONOMBRE asc"))); - //BA.debugLineNum = 1935;BA.debugLine="lv_prod_Prin.SingleLineLayout.Label.TextColor = C"; + //BA.debugLineNum = 1953;BA.debugLine="lv_prod_Prin.SingleLineLayout.Label.TextColor = C"; _lv_prod_prin.getSingleLineLayout().Label.setTextColor(__c.Colors.Black); - //BA.debugLineNum = 1936;BA.debugLine="lv_prod_Prin.Clear"; + //BA.debugLineNum = 1954;BA.debugLine="lv_prod_Prin.Clear"; _lv_prod_prin.Clear(); - //BA.debugLineNum = 1937;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 1955;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 1938;BA.debugLine="For i = 0 To c.RowCount - 1"; + //BA.debugLineNum = 1956;BA.debugLine="For i = 0 To c.RowCount - 1"; { final int step14 = 1; final int limit14 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit14 ;_i = _i + step14 ) { - //BA.debugLineNum = 1939;BA.debugLine="c.Position = i"; + //BA.debugLineNum = 1957;BA.debugLine="c.Position = i"; _c.setPosition(_i); - //BA.debugLineNum = 1940;BA.debugLine="Dim itemText As String"; + //BA.debugLineNum = 1958;BA.debugLine="Dim itemText As String"; _itemtext = ""; - //BA.debugLineNum = 1942;BA.debugLine="Private c3 As Cursor=Starter.skmt.ExecQuery($\"s"; + //BA.debugLineNum = 1960;BA.debugLine="Private c3 As Cursor=Starter.skmt.ExecQuery($\"s"; _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_PROID ='"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_PROID")))+"'")))); - //BA.debugLineNum = 1943;BA.debugLine="Private resta As String = 0"; + //BA.debugLineNum = 1961;BA.debugLine="Private resta As String = 0"; _resta = BA.NumberToString(0); - //BA.debugLineNum = 1945;BA.debugLine="If c3.RowCount > 0 Then"; + //BA.debugLineNum = 1963;BA.debugLine="If c3.RowCount > 0 Then"; if (_c3.getRowCount()>0) { - //BA.debugLineNum = 1946;BA.debugLine="c3.Position = 0"; + //BA.debugLineNum = 1964;BA.debugLine="c3.Position = 0"; _c3.setPosition((int) (0)); - //BA.debugLineNum = 1947;BA.debugLine="resta = c3.GetString(\"PE_CANT\")"; + //BA.debugLineNum = 1965;BA.debugLine="resta = c3.GetString(\"PE_CANT\")"; _resta = _c3.GetString("PE_CANT"); }else { - //BA.debugLineNum = 1949;BA.debugLine="resta = 0"; + //BA.debugLineNum = 1967;BA.debugLine="resta = 0"; _resta = BA.NumberToString(0); }; - //BA.debugLineNum = 1951;BA.debugLine="If ( c.GetInt(\"HVD_RECHAZOCANT\") - resta) <= 0"; + //BA.debugLineNum = 1969;BA.debugLine="If ( c.GetInt(\"HVD_RECHAZOCANT\") - resta) <= 0"; if ((_c.GetInt("HVD_RECHAZOCANT")-(double)(Double.parseDouble(_resta)))<=0) { }else { - //BA.debugLineNum = 1954;BA.debugLine="itemText = $\"${c.GetString(\"HVD_PRONOMBRE\")} $"; + //BA.debugLineNum = 1972;BA.debugLine="itemText = $\"${c.GetString(\"HVD_PRONOMBRE\")} $"; _itemtext = (""+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_PRONOMBRE")))+" "+__c.SmartStringFormatter("",(Object)(__c.CRLF))+"Inventario: "+__c.SmartStringFormatter("",(Object)((_c.GetInt("HVD_RECHAZOCANT")-(double)(Double.parseDouble(_resta)))))+""); - //BA.debugLineNum = 1955;BA.debugLine="lv_prod_Prin.AddSingleLine(itemText)"; + //BA.debugLineNum = 1973;BA.debugLine="lv_prod_Prin.AddSingleLine(itemText)"; _lv_prod_prin.AddSingleLine(BA.ObjectToCharSequence(_itemtext)); }; } }; }else { - //BA.debugLineNum = 1961;BA.debugLine="lv_prod_Prin.AddSingleLine(\"No hay datos disponi"; + //BA.debugLineNum = 1979;BA.debugLine="lv_prod_Prin.AddSingleLine(\"No hay datos disponi"; _lv_prod_prin.AddSingleLine(BA.ObjectToCharSequence("No hay datos disponibles.")); }; - //BA.debugLineNum = 1963;BA.debugLine="c.Close"; + //BA.debugLineNum = 1981;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 1964;BA.debugLine="End Sub"; + //BA.debugLineNum = 1982;BA.debugLine="End Sub"; return ""; } public String _b_regresa_click() throws Exception{ - //BA.debugLineNum = 1872;BA.debugLine="Sub B_REGRESA_Click"; - //BA.debugLineNum = 1873;BA.debugLine="Log(\"B_REGRESA_Click\")"; -__c.LogImpl("216777217","B_REGRESA_Click",0); - //BA.debugLineNum = 1874;BA.debugLine="BUSCA.Visible = False"; + //BA.debugLineNum = 1890;BA.debugLine="Sub B_REGRESA_Click"; + //BA.debugLineNum = 1891;BA.debugLine="Log(\"B_REGRESA_Click\")"; +__c.LogImpl("850200577","B_REGRESA_Click",0); + //BA.debugLineNum = 1892;BA.debugLine="BUSCA.Visible = False"; _busca.setVisible(__c.False); - //BA.debugLineNum = 1875;BA.debugLine="connecta.Visible = True"; + //BA.debugLineNum = 1893;BA.debugLine="connecta.Visible = True"; _connecta.setVisible(__c.True); - //BA.debugLineNum = 1876;BA.debugLine="trabajar.Visible = True"; + //BA.debugLineNum = 1894;BA.debugLine="trabajar.Visible = True"; _trabajar.setVisible(__c.True); - //BA.debugLineNum = 1877;BA.debugLine="B_CLIEPROD.Visible = True"; + //BA.debugLineNum = 1895;BA.debugLine="B_CLIEPROD.Visible = True"; _b_clieprod.setVisible(__c.True); - //BA.debugLineNum = 1878;BA.debugLine="Panel1.Visible = False"; + //BA.debugLineNum = 1896;BA.debugLine="Panel1.Visible = False"; _panel1.setVisible(__c.False); - //BA.debugLineNum = 1879;BA.debugLine="Btn_Ubicar_Ru.Visible=True"; + //BA.debugLineNum = 1897;BA.debugLine="Btn_Ubicar_Ru.Visible=True"; _btn_ubicar_ru.setVisible(__c.True); - //BA.debugLineNum = 1880;BA.debugLine="End Sub"; + //BA.debugLineNum = 1898;BA.debugLine="End Sub"; return ""; } public String _b_regreso_click() throws Exception{ - //BA.debugLineNum = 1966;BA.debugLine="Private Sub b_regreso_Click"; - //BA.debugLineNum = 1967;BA.debugLine="p_prod.Visible = False"; + //BA.debugLineNum = 1984;BA.debugLine="Private Sub b_regreso_Click"; + //BA.debugLineNum = 1985;BA.debugLine="p_prod.Visible = False"; _p_prod.setVisible(__c.False); - //BA.debugLineNum = 1968;BA.debugLine="End Sub"; + //BA.debugLineNum = 1986;BA.debugLine="End Sub"; return ""; } public String _b_tabulador_click() throws Exception{ - //BA.debugLineNum = 1893;BA.debugLine="Private Sub b_tabulador_Click"; - //BA.debugLineNum = 1894;BA.debugLine="If b_check.Visible = True Then"; + //BA.debugLineNum = 1911;BA.debugLine="Private Sub b_tabulador_Click"; + //BA.debugLineNum = 1912;BA.debugLine="If b_check.Visible = True Then"; if (_b_check.getVisible()==__c.True) { - //BA.debugLineNum = 1895;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; + //BA.debugLineNum = 1913;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; __c.MsgboxAsync(BA.ObjectToCharSequence("Favor de hacer el checklist."),BA.ObjectToCharSequence("Atención"),ba); }else { - //BA.debugLineNum = 1897;BA.debugLine="B4XPages.ShowPage(\"tabulador\")"; + //BA.debugLineNum = 1915;BA.debugLine="B4XPages.ShowPage(\"tabulador\")"; _b4xpages._showpage /*String*/ (ba,"tabulador"); }; - //BA.debugLineNum = 1899;BA.debugLine="End Sub"; + //BA.debugLineNum = 1917;BA.debugLine="End Sub"; +return ""; +} +public String _b_venta_emp_click() throws Exception{ + //BA.debugLineNum = 1992;BA.debugLine="Private Sub b_venta_emp_Click"; + //BA.debugLineNum = 1993;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; +_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CUENTAA"); + //BA.debugLineNum = 1994;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA V"; +_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CUENTAA VALUES (?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)("63403")})); + //BA.debugLineNum = 1995;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; +_b4xpages._showpage /*String*/ (ba,"Cliente"); + //BA.debugLineNum = 1996;BA.debugLine="End Sub"; return ""; } public String _b4xpage_appear() throws Exception{ @@ -715,7 +727,7 @@ _l_ruta.setText(BA.ObjectToCharSequence(0)); _l_rutasp.setText(BA.ObjectToCharSequence(0)); }else { //BA.debugLineNum = 207;BA.debugLine="f=Starter.skmt.ExecQuery(\"select distinct CAT_CL"; -_f = (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 distinct CAT_CL_RUTA from kmt_info order by CAT_CL_RUTA"))); +_f = (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 distinct CAT_CL_RUTA from kmt_info WHERE CAT_CL_RUTA <> 1000 order by CAT_CL_RUTA"))); //BA.debugLineNum = 209;BA.debugLine="l_rutasP.Text = \"\""; _l_rutasp.setText(BA.ObjectToCharSequence("")); //BA.debugLineNum = 210;BA.debugLine="For i = 0 To f.RowCount - 1"; @@ -751,13 +763,13 @@ _b.setPosition((int) (0)); if (_b.getRowCount()>0) { _cuantos = _b.GetString("CUANTOS");}; //BA.debugLineNum = 225;BA.debugLine="d=Starter.skmt.ExecQuery(\"select count(*) as TOTA"; -_d = (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 TOTAL_VISITAR from kmt_info where gestion = 0"))); +_d = (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 TOTAL_VISITAR from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000"))); //BA.debugLineNum = 226;BA.debugLine="D.Position=0"; _d.setPosition((int) (0)); //BA.debugLineNum = 227;BA.debugLine="b.Close"; _b.Close(); //BA.debugLineNum = 228;BA.debugLine="e=Starter.skmt.ExecQuery(\"select count(*) as POR_"; -_e = (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 POR_VISITAR from kmt_info"))); +_e = (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 POR_VISITAR from kmt_info WHERE CAT_CL_RUTA <> 1000"))); //BA.debugLineNum = 229;BA.debugLine="e.Position=0"; _e.setPosition((int) (0)); //BA.debugLineNum = 240;BA.debugLine="cargar.Visible = False"; @@ -804,9 +816,9 @@ _f1 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjec //BA.debugLineNum = 263;BA.debugLine="f2=Starter.skmt.ExecQuery(\"select sum(REP_COSTO_"; _f2 = (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(REP_COSTO_TOT) as MONTO_REC_DIA FROM REPARTO where REP_cliente in (Select cat_cl_codigo from kmt_info)"))); //BA.debugLineNum = 265;BA.debugLine="b=Starter.skmt.ExecQuery(\"select count(DISTINCT"; -_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(DISTINCT NV_CLIENTE) as CUANTOS from noventa where nv_motivo <> 'ENTREGA'"))); +_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(DISTINCT NV_CLIENTE) as CUANTOS from noventa where nv_motivo <> 'ENTREGA' and NV_CLIENTE <> 63403"))); //BA.debugLineNum = 267;BA.debugLine="L=Starter.skmt.ExecQuery(\"select count(DISTINCT"; -_l = (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(DISTINCT NV_CLIENTE) as CLIENTES_DIA from noventa where nv_motivo = 'ENTREGA'"))); +_l = (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(DISTINCT NV_CLIENTE) as CLIENTES_DIA from noventa where nv_motivo = 'ENTREGA' and NV_CLIENTE <> 63403"))); //BA.debugLineNum = 268;BA.debugLine="f2.Position=0"; _f2.setPosition((int) (0)); //BA.debugLineNum = 271;BA.debugLine="Private MONTO_REC_DIA = 0"; @@ -1028,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("215663351",_r5.GetString("HVD_RECHAZOCANT")+" - "+_totalcantped,0); +__c.LogImpl("849086711",_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"; @@ -1040,7 +1052,7 @@ _r6.Close(); if ((_rescant).equals("NaN")) { _rescant = BA.NumberToString(0);}; //BA.debugLineNum = 416;BA.debugLine="LogColor(rescant,Colors.Red)"; -__c.LogImpl("215663358",_rescant,__c.Colors.Red); +__c.LogImpl("849086718",_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"; @@ -1076,7 +1088,7 @@ _r6.Close(); if (_rescant2==(double)(Double.parseDouble("NaN"))) { _rescant2 = 0;}; //BA.debugLineNum = 438;BA.debugLine="Log(rescant2)"; -__c.LogImpl("215663380",BA.NumberToString(_rescant2),0); +__c.LogImpl("849086740",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($\""; @@ -1112,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("215663404",_rescantr,0); +__c.LogImpl("849086764",_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' ")))); @@ -1146,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("215663424",_rescant2r,0); +__c.LogImpl("849086784",_rescant2r,0); //BA.debugLineNum = 483;BA.debugLine="Log(rescant2r+rescantr)"; -__c.LogImpl("215663425",BA.NumberToString((double)(Double.parseDouble(_rescant2r))+(double)(Double.parseDouble(_rescantr))),0); +__c.LogImpl("849086785",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' ")))); @@ -1172,7 +1184,7 @@ _rescant3 = (double)(Double.parseDouble(__c.NumberFormat2(_rescant3,(int) (0),(i }; }; //BA.debugLineNum = 509;BA.debugLine="Log(rescant3)"; -__c.LogImpl("215663451",BA.NumberToString(_rescant3),0); +__c.LogImpl("849086811",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"; @@ -1188,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("215663463",BA.NumberToString(_rescant4),0); +__c.LogImpl("849086823",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"; @@ -1204,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("215663472",BA.NumberToString(_rescant5),0); +__c.LogImpl("849086832",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"; @@ -1238,7 +1250,7 @@ _r6.Close(); if (_rescant6==(double)(Double.parseDouble("NaN"))) { _rescant6 = 0;}; //BA.debugLineNum = 551;BA.debugLine="LogColor(rescant6,Colors.Red)"; -__c.LogImpl("215663493",BA.NumberToString(_rescant6),__c.Colors.Red); +__c.LogImpl("849086853",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"; @@ -1272,7 +1284,7 @@ _r6.Close(); if (_rescant7==(double)(Double.parseDouble("NaN"))) { _rescant7 = 0;}; //BA.debugLineNum = 567;BA.debugLine="Log(rescant7)"; -__c.LogImpl("215663509",BA.NumberToString(_rescant7),0); +__c.LogImpl("849086869",BA.NumberToString(_rescant7),0); //BA.debugLineNum = 568;BA.debugLine="r5.Close"; _r5.Close(); //BA.debugLineNum = 571;BA.debugLine="l_rechazo.text = NumberFormat2((rescant + rescant"; @@ -1307,13 +1319,25 @@ if ((_l_ctast.getText()).equals(BA.NumberToString(0)) && (_l_porvisitar.getText( _label9.setVisible(__c.True); //BA.debugLineNum = 591;BA.debugLine="L_MONTOE.Visible = True"; _l_montoe.setVisible(__c.True); + //BA.debugLineNum = 594;BA.debugLine="c=Starter.skmt.ExecQuery(\"select * from HIST_VEN"; +_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 * from HIST_VENTAS WHERE hvd_rechazo <> 2 and HVD_RECHAZOCANT > 0 order by HVD_CODPROMO desc, HVD_PRONOMBRE asc"))); + //BA.debugLineNum = 595;BA.debugLine="If c.RowCount > 0 Then"; +if (_c.getRowCount()>0) { + //BA.debugLineNum = 596;BA.debugLine="b_venta_emp.Visible = True"; +_b_venta_emp.setVisible(__c.True); }else { - //BA.debugLineNum = 593;BA.debugLine="Label9.Visible = False"; -_label9.setVisible(__c.False); - //BA.debugLineNum = 594;BA.debugLine="L_MONTOE.Visible = False"; -_l_montoe.setVisible(__c.False); + //BA.debugLineNum = 598;BA.debugLine="b_venta_emp.Visible = False"; +_b_venta_emp.setVisible(__c.False); }; - //BA.debugLineNum = 606;BA.debugLine="End Sub"; + }else { + //BA.debugLineNum = 601;BA.debugLine="Label9.Visible = False"; +_label9.setVisible(__c.False); + //BA.debugLineNum = 602;BA.debugLine="L_MONTOE.Visible = False"; +_l_montoe.setVisible(__c.False); + //BA.debugLineNum = 603;BA.debugLine="b_venta_emp.Visible = False"; +_b_venta_emp.setVisible(__c.False); + }; + //BA.debugLineNum = 615;BA.debugLine="End Sub"; return ""; } public anywheresoftware.b4a.keywords.Common.ResumableSubWrapper _b4xpage_closerequest() throws Exception{ @@ -1338,7 +1362,7 @@ parent.__c.ReturnFromResumableSub(this,null);return;} case 0: //C this.state = 1; - //BA.debugLineNum = 1544;BA.debugLine="If Panel1.visible Then"; + //BA.debugLineNum = 1562;BA.debugLine="If Panel1.visible Then"; if (true) break; case 1: @@ -1355,23 +1379,23 @@ this.state = 7; case 3: //C this.state = 8; - //BA.debugLineNum = 1545;BA.debugLine="Log(\"PANEL1 VISIBLE\")"; -parent.__c.LogImpl("216252931","PANEL1 VISIBLE",0); - //BA.debugLineNum = 1546;BA.debugLine="B_REGRESA_Click"; + //BA.debugLineNum = 1563;BA.debugLine="Log(\"PANEL1 VISIBLE\")"; +parent.__c.LogImpl("849676291","PANEL1 VISIBLE",0); + //BA.debugLineNum = 1564;BA.debugLine="B_REGRESA_Click"; parent._b_regresa_click(); if (true) break; case 5: //C this.state = 8; - //BA.debugLineNum = 1548;BA.debugLine="p_prod.Visible = False"; + //BA.debugLineNum = 1566;BA.debugLine="p_prod.Visible = False"; parent._p_prod.setVisible(parent.__c.False); if (true) break; case 7: //C this.state = 8; - //BA.debugLineNum = 1550;BA.debugLine="B4XPages.ShowPage(\"Login\")"; + //BA.debugLineNum = 1568;BA.debugLine="B4XPages.ShowPage(\"Login\")"; parent._b4xpages._showpage /*String*/ (ba,"Login"); if (true) break; @@ -1379,10 +1403,10 @@ case 8: //C this.state = -1; ; - //BA.debugLineNum = 1553;BA.debugLine="Return False"; + //BA.debugLineNum = 1571;BA.debugLine="Return False"; if (true) { parent.__c.ReturnFromResumableSub(this,(Object)(parent.__c.False));return;}; - //BA.debugLineNum = 1554;BA.debugLine="End Sub"; + //BA.debugLineNum = 1572;BA.debugLine="End Sub"; if (true) break; } @@ -1390,16 +1414,16 @@ if (true) break; } } public String _b4xpage_created(anywheresoftware.b4a.objects.B4XViewWrapper _root1) throws Exception{ - //BA.debugLineNum = 99;BA.debugLine="Private Sub B4XPage_Created (Root1 As B4XView)"; - //BA.debugLineNum = 100;BA.debugLine="Root = Root1"; + //BA.debugLineNum = 100;BA.debugLine="Private Sub B4XPage_Created (Root1 As B4XView)"; + //BA.debugLineNum = 101;BA.debugLine="Root = Root1"; _root = _root1; - //BA.debugLineNum = 102;BA.debugLine="Root.LoadLayout(\"principal\")"; + //BA.debugLineNum = 103;BA.debugLine="Root.LoadLayout(\"principal\")"; _root.LoadLayout("principal",ba); - //BA.debugLineNum = 103;BA.debugLine="EJECUTANDO=1"; + //BA.debugLineNum = 104;BA.debugLine="EJECUTANDO=1"; _ejecutando = BA.NumberToString(1); - //BA.debugLineNum = 104;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serve"; + //BA.debugLineNum = 105;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serve"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); - //BA.debugLineNum = 107;BA.debugLine="img2.Visible =False"; + //BA.debugLineNum = 108;BA.debugLine="img2.Visible =False"; _img2.setVisible(__c.False); //BA.debugLineNum = 109;BA.debugLine="DateTime.DateFormat = \"MM/dd/yyyy\""; __c.DateTime.setDateFormat("MM/dd/yyyy"); @@ -1412,13 +1436,13 @@ _b.setPosition((int) (0)); //BA.debugLineNum = 114;BA.debugLine="Cuantos = b.GetString(\"CUANTOS\")"; _cuantos = _b.GetString("CUANTOS"); //BA.debugLineNum = 115;BA.debugLine="d=Starter.skmt.ExecQuery(\"select count(*) as TOTA"; -_d = (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 TOTAL_VISITAR from kmt_info where gestion = 0"))); +_d = (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 TOTAL_VISITAR from kmt_info where gestion = 0 AND CAT_CL_RUTA <> 1000"))); //BA.debugLineNum = 116;BA.debugLine="D.Position=0"; _d.setPosition((int) (0)); //BA.debugLineNum = 117;BA.debugLine="b.Close"; _b.Close(); //BA.debugLineNum = 118;BA.debugLine="e=Starter.skmt.ExecQuery(\"select count(*) as POR_"; -_e = (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 POR_VISITAR from kmt_info"))); +_e = (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 POR_VISITAR from kmt_info WHERE CAT_CL_RUTA <> 1000"))); //BA.debugLineNum = 119;BA.debugLine="e.Position=0"; _e.setPosition((int) (0)); //BA.debugLineNum = 120;BA.debugLine="If Cuantos = 0 Then"; @@ -1464,29 +1488,29 @@ _b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._usuario /*St return ""; } public String _btn_ubicar_ru_click() throws Exception{ - //BA.debugLineNum = 1883;BA.debugLine="Sub Btn_Ubicar_Ru_Click"; - //BA.debugLineNum = 1884;BA.debugLine="If b_check.Visible = True Then"; + //BA.debugLineNum = 1901;BA.debugLine="Sub Btn_Ubicar_Ru_Click"; + //BA.debugLineNum = 1902;BA.debugLine="If b_check.Visible = True Then"; if (_b_check.getVisible()==__c.True) { - //BA.debugLineNum = 1885;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; + //BA.debugLineNum = 1903;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; __c.MsgboxAsync(BA.ObjectToCharSequence("Favor de hacer el checklist."),BA.ObjectToCharSequence("Atención"),ba); }else { - //BA.debugLineNum = 1888;BA.debugLine="StartActivity(MAPA_RUTAS)"; + //BA.debugLineNum = 1906;BA.debugLine="StartActivity(MAPA_RUTAS)"; __c.StartActivity(ba,(Object)(_mapa_rutas.getObject())); }; - //BA.debugLineNum = 1890;BA.debugLine="End Sub"; + //BA.debugLineNum = 1908;BA.debugLine="End Sub"; return ""; } public String _busca_click() throws Exception{ - //BA.debugLineNum = 1580;BA.debugLine="Sub BUSCA_Click"; - //BA.debugLineNum = 1581;BA.debugLine="If b_check.Visible = True Then"; + //BA.debugLineNum = 1598;BA.debugLine="Sub BUSCA_Click"; + //BA.debugLineNum = 1599;BA.debugLine="If b_check.Visible = True Then"; if (_b_check.getVisible()==__c.True) { - //BA.debugLineNum = 1582;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; + //BA.debugLineNum = 1600;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Aten"; __c.MsgboxAsync(BA.ObjectToCharSequence("Favor de hacer el checklist."),BA.ObjectToCharSequence("Atención"),ba); }else { - //BA.debugLineNum = 1585;BA.debugLine="B4XPages.ShowPage(\"Buscar\")"; + //BA.debugLineNum = 1603;BA.debugLine="B4XPages.ShowPage(\"Buscar\")"; _b4xpages._showpage /*String*/ (ba,"Buscar"); }; - //BA.debugLineNum = 1587;BA.debugLine="End Sub"; + //BA.debugLineNum = 1605;BA.debugLine="End Sub"; return ""; } public String _cargar_click() throws Exception{ @@ -1495,233 +1519,233 @@ String[] _fecha2 = null; String[] _fecha3 = null; String _dia = ""; String _dia2 = ""; - //BA.debugLineNum = 875;BA.debugLine="Sub cargar_Click"; - //BA.debugLineNum = 876;BA.debugLine="Dim pedidodiaanterior As Boolean = False"; + //BA.debugLineNum = 889;BA.debugLine="Sub cargar_Click"; + //BA.debugLineNum = 890;BA.debugLine="Dim pedidodiaanterior As Boolean = False"; _pedidodiaanterior = __c.False; - //BA.debugLineNum = 877;BA.debugLine="Dim cp As Cursor = Starter.skmt.ExecQuery(\"select"; + //BA.debugLineNum = 891;BA.debugLine="Dim cp As Cursor = Starter.skmt.ExecQuery(\"select"; _cp = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _cp = (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 NOVENTA"))); - //BA.debugLineNum = 878;BA.debugLine="If cp.RowCount > 0 Then"; + //BA.debugLineNum = 892;BA.debugLine="If cp.RowCount > 0 Then"; if (_cp.getRowCount()>0) { - //BA.debugLineNum = 879;BA.debugLine="cp.Position = 0"; + //BA.debugLineNum = 893;BA.debugLine="cp.Position = 0"; _cp.setPosition((int) (0)); - //BA.debugLineNum = 880;BA.debugLine="Private fecha As String = cp.GetString(\"NV_FECHA"; + //BA.debugLineNum = 894;BA.debugLine="Private fecha As String = cp.GetString(\"NV_FECHA"; _fecha = _cp.GetString("NV_FECHA"); - //BA.debugLineNum = 881;BA.debugLine="Log(cp.GetString(\"NV_FECHA\"))"; -__c.LogImpl("216121862",_cp.GetString("NV_FECHA"),0); - //BA.debugLineNum = 882;BA.debugLine="Dim fecha2() As String = Regex.Split(\" \",fecha)"; + //BA.debugLineNum = 895;BA.debugLine="Log(cp.GetString(\"NV_FECHA\"))"; +__c.LogImpl("849545222",_cp.GetString("NV_FECHA"),0); + //BA.debugLineNum = 896;BA.debugLine="Dim fecha2() As String = Regex.Split(\" \",fecha)"; _fecha2 = __c.Regex.Split(" ",_fecha); - //BA.debugLineNum = 883;BA.debugLine="Log(fecha2(0))"; -__c.LogImpl("216121864",_fecha2[(int) (0)],0); - //BA.debugLineNum = 884;BA.debugLine="Dim fecha3() As String = Regex.Split(\"/\",fecha2("; + //BA.debugLineNum = 897;BA.debugLine="Log(fecha2(0))"; +__c.LogImpl("849545224",_fecha2[(int) (0)],0); + //BA.debugLineNum = 898;BA.debugLine="Dim fecha3() As String = Regex.Split(\"/\",fecha2("; _fecha3 = __c.Regex.Split("/",_fecha2[(int) (0)]); - //BA.debugLineNum = 885;BA.debugLine="DateTime.DateFormat = \"yyyyMMdd\""; + //BA.debugLineNum = 899;BA.debugLine="DateTime.DateFormat = \"yyyyMMdd\""; __c.DateTime.setDateFormat("yyyyMMdd"); - //BA.debugLineNum = 886;BA.debugLine="DateTime.TimeFormat = \"\""; + //BA.debugLineNum = 900;BA.debugLine="DateTime.TimeFormat = \"\""; __c.DateTime.setTimeFormat(""); - //BA.debugLineNum = 887;BA.debugLine="Dim dia As String = fecha3(2)&fecha3(0)&fecha3(1"; + //BA.debugLineNum = 901;BA.debugLine="Dim dia As String = fecha3(2)&fecha3(0)&fecha3(1"; _dia = _fecha3[(int) (2)]+_fecha3[(int) (0)]+_fecha3[(int) (1)]; - //BA.debugLineNum = 888;BA.debugLine="Log(dia)"; -__c.LogImpl("216121869",_dia,0); - //BA.debugLineNum = 889;BA.debugLine="Dim dia2 As String = DateTime.Date(DateTime.Now)"; + //BA.debugLineNum = 902;BA.debugLine="Log(dia)"; +__c.LogImpl("849545229",_dia,0); + //BA.debugLineNum = 903;BA.debugLine="Dim dia2 As String = DateTime.Date(DateTime.Now)"; _dia2 = __c.DateTime.Date(__c.DateTime.getNow()); - //BA.debugLineNum = 890;BA.debugLine="Log(dia & \" , \" & dia2)"; -__c.LogImpl("216121871",_dia+" , "+_dia2,0); - //BA.debugLineNum = 891;BA.debugLine="If dia < dia2 Then"; + //BA.debugLineNum = 904;BA.debugLine="Log(dia & \" , \" & dia2)"; +__c.LogImpl("849545231",_dia+" , "+_dia2,0); + //BA.debugLineNum = 905;BA.debugLine="If dia < dia2 Then"; if ((double)(Double.parseDouble(_dia))<(double)(Double.parseDouble(_dia2))) { - //BA.debugLineNum = 892;BA.debugLine="pedidodiaanterior = True"; + //BA.debugLineNum = 906;BA.debugLine="pedidodiaanterior = True"; _pedidodiaanterior = __c.True; }; }; - //BA.debugLineNum = 895;BA.debugLine="If Not (pedidodiaanterior) Then"; + //BA.debugLineNum = 909;BA.debugLine="If Not (pedidodiaanterior) Then"; if (__c.Not(_pedidodiaanterior)) { - //BA.debugLineNum = 896;BA.debugLine="Log(\"CUMPLE\")"; -__c.LogImpl("216121877","CUMPLE",0); - //BA.debugLineNum = 897;BA.debugLine="EJECUTANDO = 1"; + //BA.debugLineNum = 910;BA.debugLine="Log(\"CUMPLE\")"; +__c.LogImpl("849545237","CUMPLE",0); + //BA.debugLineNum = 911;BA.debugLine="EJECUTANDO = 1"; _ejecutando = BA.NumberToString(1); - //BA.debugLineNum = 898;BA.debugLine="reqs.Initialize"; + //BA.debugLineNum = 912;BA.debugLine="reqs.Initialize"; _reqs.Initialize(); - //BA.debugLineNum = 899;BA.debugLine="TOPE = 0"; + //BA.debugLineNum = 913;BA.debugLine="TOPE = 0"; _tope = (int) (0); - //BA.debugLineNum = 900;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.serve"; -__c.LogImpl("216121881",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); - //BA.debugLineNum = 901;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serv"; + //BA.debugLineNum = 914;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.serve"; +__c.LogImpl("849545241",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); + //BA.debugLineNum = 915;BA.debugLine="reqManager.Initialize(Me, B4XPages.MainPage.serv"; _reqmanager._initialize /*String*/ (ba,this,_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ); - //BA.debugLineNum = 903;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 917;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 904;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 918;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 905;BA.debugLine="cmd.Name = \"insert_drop_rep_MAZAPA\""; + //BA.debugLineNum = 919;BA.debugLine="cmd.Name = \"insert_drop_rep_MAZAPA\""; _cmd.Name /*String*/ = "insert_drop_rep_MAZAPA"; - //BA.debugLineNum = 906;BA.debugLine="cmd.Parameters = Array As Object(Subs.dameUsuari"; + //BA.debugLineNum = 920;BA.debugLine="cmd.Parameters = Array As Object(Subs.dameUsuari"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_subs._dameusuariodedb /*String*/ (ba)),(Object)(_l_ruta.getText()),(Object)(_almacen),(Object)(_l_ctast.getText()),(Object)(_subs._traeentregados /*anywheresoftware.b4a.objects.collections.Map*/ (ba).getObject()),(Object)(_subs._traerechazados /*anywheresoftware.b4a.objects.collections.Map*/ (ba).getObject()),(Object)("CARGA")}; - //BA.debugLineNum = 907;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_drop\")"; + //BA.debugLineNum = 921;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_drop\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("inst_drop")); - //BA.debugLineNum = 910;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from kmt_info\""; + //BA.debugLineNum = 924;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from kmt_info\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from kmt_info"); - //BA.debugLineNum = 911;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cod_resul"; + //BA.debugLineNum = 925;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cod_resul"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cod_result"); - //BA.debugLineNum = 912;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from hist_gest"; + //BA.debugLineNum = 926;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from hist_gest"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from hist_gest"); - //BA.debugLineNum = 913;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CAT_DETAL"; + //BA.debugLineNum = 927;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CAT_DETAL"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CAT_DETALLES_PAQ"); - //BA.debugLineNum = 914;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from telefonos"; + //BA.debugLineNum = 928;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from telefonos"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from telefonos"); - //BA.debugLineNum = 916;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from PUNTEO_GP"; + //BA.debugLineNum = 930;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from PUNTEO_GP"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from PUNTEO_GPS"); - //BA.debugLineNum = 917;BA.debugLine="If l_ruta.Text = \"0\" Then '"; + //BA.debugLineNum = 931;BA.debugLine="If l_ruta.Text = \"0\" Then '"; if ((_l_ruta.getText()).equals("0")) { - //BA.debugLineNum = 918;BA.debugLine="Log(\"********************* No hay ruta, BORRAM"; -__c.LogImpl("216121899","********************* No hay ruta, BORRAMOS TODO",0); - //BA.debugLineNum = 919;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; + //BA.debugLineNum = 932;BA.debugLine="Log(\"********************* No hay ruta, BORRAM"; +__c.LogImpl("849545259","********************* No hay ruta, BORRAMOS TODO",0); + //BA.debugLineNum = 933;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cat_gunaprod"); - //BA.debugLineNum = 920;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; + //BA.debugLineNum = 934;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cat_gunaprod3"); - //BA.debugLineNum = 921;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from REPARTO\""; + //BA.debugLineNum = 935;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from REPARTO\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from REPARTO"); - //BA.debugLineNum = 922;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from HIST_VEN"; + //BA.debugLineNum = 936;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from HIST_VEN"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from HIST_VENTAS"); - //BA.debugLineNum = 923;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from HIST_VEN"; + //BA.debugLineNum = 937;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from HIST_VEN"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from HIST_VENTAS2"); - //BA.debugLineNum = 924;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from NOVENTA\""; + //BA.debugLineNum = 938;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from NOVENTA\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from NOVENTA"); }else { - //BA.debugLineNum = 926;BA.debugLine="Log(\"********************* Hay ruta, NO BORRAM"; -__c.LogImpl("216121907","********************* Hay ruta, NO BORRAMOS TODO",0); + //BA.debugLineNum = 940;BA.debugLine="Log(\"********************* Hay ruta, NO BORRAM"; +__c.LogImpl("849545267","********************* Hay ruta, NO BORRAMOS TODO",0); }; - //BA.debugLineNum = 930;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from us"; + //BA.debugLineNum = 944;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"))); - //BA.debugLineNum = 931;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 945;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 932;BA.debugLine="usuario = c.GetString(\"USUARIO\")"; + //BA.debugLineNum = 946;BA.debugLine="usuario = c.GetString(\"USUARIO\")"; _usuario = _c.GetString("USUARIO"); - //BA.debugLineNum = 934;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 948;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 935;BA.debugLine="cmd.Name = \"select_punteo_MAZAPA_re_REPG\""; + //BA.debugLineNum = 949;BA.debugLine="cmd.Name = \"select_punteo_MAZAPA_re_REPG\""; _cmd.Name /*String*/ = "select_punteo_MAZAPA_re_REPG"; - //BA.debugLineNum = 936;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text, AL"; + //BA.debugLineNum = 950;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text, AL"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object)(_almacen),(Object)(_almacen)}; - //BA.debugLineNum = 937;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"punteo\")"; + //BA.debugLineNum = 951;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"punteo\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("punteo")); - //BA.debugLineNum = 938;BA.debugLine="Log($\"Pedimos Punteo\"$)"; -__c.LogImpl("216121919",("Pedimos Punteo"),0); - //BA.debugLineNum = 939;BA.debugLine="reqs.Add(\"punteo\")"; + //BA.debugLineNum = 952;BA.debugLine="Log($\"Pedimos Punteo\"$)"; +__c.LogImpl("849545279",("Pedimos Punteo"),0); + //BA.debugLineNum = 953;BA.debugLine="reqs.Add(\"punteo\")"; _reqs.Add((Object)("punteo")); - //BA.debugLineNum = 941;BA.debugLine="If l_ruta.Text = \"0\" Then"; + //BA.debugLineNum = 955;BA.debugLine="If l_ruta.Text = \"0\" Then"; if ((_l_ruta.getText()).equals("0")) { - //BA.debugLineNum = 942;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 956;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 943;BA.debugLine="cmd.Name = \"select_almacen_MAZAPA_re_REPG2\""; + //BA.debugLineNum = 957;BA.debugLine="cmd.Name = \"select_almacen_MAZAPA_re_REPG2\""; _cmd.Name /*String*/ = "select_almacen_MAZAPA_re_REPG2"; - //BA.debugLineNum = 944;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN)"; + //BA.debugLineNum = 958;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN)"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; - //BA.debugLineNum = 945;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"gunaprod\")"; + //BA.debugLineNum = 959;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"gunaprod\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("gunaprod")); - //BA.debugLineNum = 946;BA.debugLine="Log($\"Pedimos gunaprod - ${ALMACEN}, ${e_ruta.t"; -__c.LogImpl("216121927",("Pedimos gunaprod - "+__c.SmartStringFormatter("",(Object)(_almacen))+", "+__c.SmartStringFormatter("",(Object)(_e_ruta.getText()))+""),0); - //BA.debugLineNum = 947;BA.debugLine="reqs.Add(\"gunaprod\")"; + //BA.debugLineNum = 960;BA.debugLine="Log($\"Pedimos gunaprod - ${ALMACEN}, ${e_ruta.t"; +__c.LogImpl("849545287",("Pedimos gunaprod - "+__c.SmartStringFormatter("",(Object)(_almacen))+", "+__c.SmartStringFormatter("",(Object)(_e_ruta.getText()))+""),0); + //BA.debugLineNum = 961;BA.debugLine="reqs.Add(\"gunaprod\")"; _reqs.Add((Object)("gunaprod")); }; - //BA.debugLineNum = 951;BA.debugLine="cmd.Initialize"; -_cmd.Initialize(); - //BA.debugLineNum = 952;BA.debugLine="cmd.Name = \"select_cliente_MAZAPA_re_REPG\""; -_cmd.Name /*String*/ = "select_cliente_MAZAPA_re_REPG"; - //BA.debugLineNum = 953;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)}; - //BA.debugLineNum = 954;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"kmt_datos\")"; -_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("kmt_datos")); - //BA.debugLineNum = 955;BA.debugLine="Log($\"Pedimos kmt_datos\"$)"; -__c.LogImpl("216121936",("Pedimos kmt_datos"),0); - //BA.debugLineNum = 956;BA.debugLine="reqs.Add(\"kmt_datos\")"; -_reqs.Add((Object)("kmt_datos")); - //BA.debugLineNum = 958;BA.debugLine="cmd.Initialize"; -_cmd.Initialize(); - //BA.debugLineNum = 959;BA.debugLine="cmd.Name = \"select_ventad_MAZAPA_re_REPG\""; -_cmd.Name /*String*/ = "select_ventad_MAZAPA_re_REPG"; - //BA.debugLineNum = 960;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text, AL"; -_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object)(_almacen)}; - //BA.debugLineNum = 961;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"hist_datos\")"; -_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("hist_datos")); - //BA.debugLineNum = 962;BA.debugLine="Log($\"Pedimos hist_datos\"$)"; -__c.LogImpl("216121943",("Pedimos hist_datos"),0); - //BA.debugLineNum = 963;BA.debugLine="reqs.Add(\"hist_datos\")"; -_reqs.Add((Object)("hist_datos")); //BA.debugLineNum = 965;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 966;BA.debugLine="cmd.Name = \"select_coords_almacen_MAZAPA\""; -_cmd.Name /*String*/ = "select_coords_almacen_MAZAPA"; - //BA.debugLineNum = 967;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN)"; -_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; - //BA.debugLineNum = 968;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"coords_almacen"; -_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("coords_almacen")); - //BA.debugLineNum = 970;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 966;BA.debugLine="cmd.Name = \"select_cliente_MAZAPA_re_REPG\""; +_cmd.Name /*String*/ = "select_cliente_MAZAPA_re_REPG"; + //BA.debugLineNum = 967;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)}; + //BA.debugLineNum = 968;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"kmt_datos\")"; +_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("kmt_datos")); + //BA.debugLineNum = 969;BA.debugLine="Log($\"Pedimos kmt_datos\"$)"; +__c.LogImpl("849545296",("Pedimos kmt_datos"),0); + //BA.debugLineNum = 970;BA.debugLine="reqs.Add(\"kmt_datos\")"; +_reqs.Add((Object)("kmt_datos")); + //BA.debugLineNum = 972;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 971;BA.debugLine="cmd.Name = \"select_cat_gunaprod3_MAZAPA\""; -_cmd.Name /*String*/ = "select_cat_gunaprod3_MAZAPA"; - //BA.debugLineNum = 972;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN)"; -_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; - //BA.debugLineNum = 973;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"gunaprod3\")"; -_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("gunaprod3")); - //BA.debugLineNum = 975;BA.debugLine="cmd.Initialize"; -_cmd.Initialize(); - //BA.debugLineNum = 976;BA.debugLine="cmd.Name = \"select_pagares_MAZAPA\""; -_cmd.Name /*String*/ = "select_pagares_MAZAPA"; - //BA.debugLineNum = 977;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text,ALM"; + //BA.debugLineNum = 973;BA.debugLine="cmd.Name = \"select_ventad_MAZAPA_re_REPG\""; +_cmd.Name /*String*/ = "select_ventad_MAZAPA_re_REPG"; + //BA.debugLineNum = 974;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text, AL"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object)(_almacen)}; - //BA.debugLineNum = 978;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"PAGARES\")"; + //BA.debugLineNum = 975;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"hist_datos\")"; +_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("hist_datos")); + //BA.debugLineNum = 976;BA.debugLine="Log($\"Pedimos hist_datos\"$)"; +__c.LogImpl("849545303",("Pedimos hist_datos"),0); + //BA.debugLineNum = 977;BA.debugLine="reqs.Add(\"hist_datos\")"; +_reqs.Add((Object)("hist_datos")); + //BA.debugLineNum = 979;BA.debugLine="cmd.Initialize"; +_cmd.Initialize(); + //BA.debugLineNum = 980;BA.debugLine="cmd.Name = \"select_coords_almacen_MAZAPA\""; +_cmd.Name /*String*/ = "select_coords_almacen_MAZAPA"; + //BA.debugLineNum = 981;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN)"; +_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; + //BA.debugLineNum = 982;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"coords_almacen"; +_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("coords_almacen")); + //BA.debugLineNum = 984;BA.debugLine="cmd.Initialize"; +_cmd.Initialize(); + //BA.debugLineNum = 985;BA.debugLine="cmd.Name = \"select_cat_gunaprod3_MAZAPA\""; +_cmd.Name /*String*/ = "select_cat_gunaprod3_MAZAPA"; + //BA.debugLineNum = 986;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN)"; +_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen)}; + //BA.debugLineNum = 987;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"gunaprod3\")"; +_reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("gunaprod3")); + //BA.debugLineNum = 989;BA.debugLine="cmd.Initialize"; +_cmd.Initialize(); + //BA.debugLineNum = 990;BA.debugLine="cmd.Name = \"select_pagares_MAZAPA\""; +_cmd.Name /*String*/ = "select_pagares_MAZAPA"; + //BA.debugLineNum = 991;BA.debugLine="cmd.Parameters = Array As Object(e_ruta.text,ALM"; +_cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_e_ruta.getText()),(Object)(_almacen)}; + //BA.debugLineNum = 992;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"PAGARES\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("PAGARES")); - //BA.debugLineNum = 1010;BA.debugLine="D=Starter.skmt.ExecQuery(\"SELECT COUNT(*) AS CUA"; + //BA.debugLineNum = 1024;BA.debugLine="D=Starter.skmt.ExecQuery(\"SELECT COUNT(*) AS CUA"; _d = (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 CUANTOS_NOVENTA FROM NOVENTA"))); - //BA.debugLineNum = 1011;BA.debugLine="d.Position=0"; + //BA.debugLineNum = 1025;BA.debugLine="d.Position=0"; _d.setPosition((int) (0)); - //BA.debugLineNum = 1012;BA.debugLine="cuantos_noventa = D.GetString(\"CUANTOS_NOVENTA\")"; + //BA.debugLineNum = 1026;BA.debugLine="cuantos_noventa = D.GetString(\"CUANTOS_NOVENTA\")"; _cuantos_noventa = _d.GetString("CUANTOS_NOVENTA"); - //BA.debugLineNum = 1013;BA.debugLine="d.Close"; + //BA.debugLineNum = 1027;BA.debugLine="d.Close"; _d.Close(); - //BA.debugLineNum = 1014;BA.debugLine="cargar.Visible = False"; + //BA.debugLineNum = 1028;BA.debugLine="cargar.Visible = False"; _cargar.setVisible(__c.False); - //BA.debugLineNum = 1015;BA.debugLine="Subir.Visible = False"; + //BA.debugLineNum = 1029;BA.debugLine="Subir.Visible = False"; _subir.setVisible(__c.False); - //BA.debugLineNum = 1016;BA.debugLine="connecta.Visible = True"; + //BA.debugLineNum = 1030;BA.debugLine="connecta.Visible = True"; _connecta.setVisible(__c.True); - //BA.debugLineNum = 1017;BA.debugLine="inv.Visible = False"; + //BA.debugLineNum = 1031;BA.debugLine="inv.Visible = False"; _inv.setVisible(__c.False); - //BA.debugLineNum = 1018;BA.debugLine="ToastMessageShow(\"Se actualizarán los datos, est"; + //BA.debugLineNum = 1032;BA.debugLine="ToastMessageShow(\"Se actualizarán los datos, est"; __c.ToastMessageShow(BA.ObjectToCharSequence("Se actualizarán los datos, este proceso podria tardar hasta un minuto, gracias"),__c.True); - //BA.debugLineNum = 1019;BA.debugLine="ProgressDialogShow2(\"Descargando rutas, espere u"; + //BA.debugLineNum = 1033;BA.debugLine="ProgressDialogShow2(\"Descargando rutas, espere u"; __c.ProgressDialogShow2(ba,BA.ObjectToCharSequence("Descargando rutas, espere un momento."),__c.False); - //BA.debugLineNum = 1020;BA.debugLine="If Not(IsConnectedToInternet) Then MsgboxAsync(\""; + //BA.debugLineNum = 1034;BA.debugLine="If Not(IsConnectedToInternet) Then MsgboxAsync(\""; if (__c.Not(_isconnectedtointernet())) { __c.MsgboxAsync(BA.ObjectToCharSequence("No hay conexión a Internet"),BA.ObjectToCharSequence("Revisa tu conexión"),ba);}; }else { - //BA.debugLineNum = 1024;BA.debugLine="Log(\"XXXX\")"; -__c.LogImpl("216122005","XXXX",0); - //BA.debugLineNum = 1025;BA.debugLine="MsgboxAsync(\"Para poder cargar día no puedes ten"; + //BA.debugLineNum = 1038;BA.debugLine="Log(\"XXXX\")"; +__c.LogImpl("849545365","XXXX",0); + //BA.debugLineNum = 1039;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); }; - //BA.debugLineNum = 1028;BA.debugLine="End Sub"; + //BA.debugLineNum = 1042;BA.debugLine="End Sub"; return ""; } public String _checachek() throws Exception{ - //BA.debugLineNum = 608;BA.debugLine="Sub checachek"; - //BA.debugLineNum = 609;BA.debugLine="b = Starter.skmt.ExecQuery(\"SELECT CHECADO FROM"; + //BA.debugLineNum = 617;BA.debugLine="Sub checachek"; + //BA.debugLineNum = 618;BA.debugLine="b = Starter.skmt.ExecQuery(\"SELECT CHECADO FROM"; _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 CHECADO FROM CHECADO_CHECK"))); - //BA.debugLineNum = 610;BA.debugLine="If b.RowCount > 0 Then"; + //BA.debugLineNum = 619;BA.debugLine="If b.RowCount > 0 Then"; if (_b.getRowCount()>0) { - //BA.debugLineNum = 611;BA.debugLine="b.Position = 0"; + //BA.debugLineNum = 620;BA.debugLine="b.Position = 0"; _b.setPosition((int) (0)); - //BA.debugLineNum = 612;BA.debugLine="If b.GetString(\"CHECADO\") = 0 Then"; + //BA.debugLineNum = 621;BA.debugLine="If b.GetString(\"CHECADO\") = 0 Then"; if ((_b.GetString("CHECADO")).equals(BA.NumberToString(0))) { - //BA.debugLineNum = 613;BA.debugLine="b_check.Visible = True"; + //BA.debugLineNum = 622;BA.debugLine="b_check.Visible = True"; _b_check.setVisible(__c.True); }else if((_b.GetString("CHECADO")).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 615;BA.debugLine="b_check.Visible =False"; + //BA.debugLineNum = 624;BA.debugLine="b_check.Visible =False"; _b_check.setVisible(__c.False); }; - //BA.debugLineNum = 617;BA.debugLine="b.Close"; + //BA.debugLineNum = 626;BA.debugLine="b.Close"; _b.Close(); }; - //BA.debugLineNum = 619;BA.debugLine="End Sub"; + //BA.debugLineNum = 628;BA.debugLine="End Sub"; return ""; } public String _class_globals() throws Exception{ @@ -1896,103 +1920,105 @@ _p_prod = new anywheresoftware.b4a.objects.PanelWrapper(); _b_regreso = new anywheresoftware.b4a.objects.ButtonWrapper(); //BA.debugLineNum = 90;BA.debugLine="Private lv_prod_Prin As ListView"; _lv_prod_prin = new anywheresoftware.b4a.objects.ListViewWrapper(); - //BA.debugLineNum = 91;BA.debugLine="End Sub"; + //BA.debugLineNum = 91;BA.debugLine="Private b_venta_emp As Button"; +_b_venta_emp = new anywheresoftware.b4a.objects.ButtonWrapper(); + //BA.debugLineNum = 92;BA.debugLine="End Sub"; return ""; } public String _connecta_click() throws Exception{ - //BA.debugLineNum = 1556;BA.debugLine="Sub connecta_Click"; - //BA.debugLineNum = 1557;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; -__c.LogImpl("216318465",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); - //BA.debugLineNum = 1558;BA.debugLine="If Not(IsConnectedToInternet) Then MsgboxAsync(\"N"; + //BA.debugLineNum = 1574;BA.debugLine="Sub connecta_Click"; + //BA.debugLineNum = 1575;BA.debugLine="LogColor($\"ReqServer = ${B4XPages.MainPage.server"; +__c.LogImpl("849741825",("ReqServer = "+__c.SmartStringFormatter("",(Object)(_b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._server /*String*/ ))+""),__c.Colors.Red); + //BA.debugLineNum = 1576;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);}; - //BA.debugLineNum = 1559;BA.debugLine="If e_ruta.Text <> \"\" Then"; + //BA.debugLineNum = 1577;BA.debugLine="If e_ruta.Text <> \"\" Then"; if ((_e_ruta.getText()).equals("") == false) { - //BA.debugLineNum = 1560;BA.debugLine="imei = \"\" 'p.GetDeviceId"; + //BA.debugLineNum = 1578;BA.debugLine="imei = \"\" 'p.GetDeviceId"; _imei = ""; - //BA.debugLineNum = 1561;BA.debugLine="conn = \"1\""; + //BA.debugLineNum = 1579;BA.debugLine="conn = \"1\""; _conn = "1"; - //BA.debugLineNum = 1562;BA.debugLine="ime.HideKeyboard"; + //BA.debugLineNum = 1580;BA.debugLine="ime.HideKeyboard"; _ime.HideKeyboard(ba); - //BA.debugLineNum = 1563;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 1581;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 1564;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 1582;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 1565;BA.debugLine="cmd.Name = \"select_version_MAZAPA\""; + //BA.debugLineNum = 1583;BA.debugLine="cmd.Name = \"select_version_MAZAPA\""; _cmd.Name /*String*/ = "select_version_MAZAPA"; - //BA.debugLineNum = 1566;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"version\")"; + //BA.debugLineNum = 1584;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"version\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("version")); - //BA.debugLineNum = 1567;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 1585;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 1568;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 1586;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 1569;BA.debugLine="cmd.Name = \"select_ruta_re_REPG_MAZAPA5\""; -_cmd.Name /*String*/ = "select_ruta_re_REPG_MAZAPA5"; - //BA.debugLineNum = 1570;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN, e_ruta"; + //BA.debugLineNum = 1587;BA.debugLine="cmd.Name = \"select_ruta_re_REPG_MAZAPA6\""; +_cmd.Name /*String*/ = "select_ruta_re_REPG_MAZAPA6"; + //BA.debugLineNum = 1588;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN, e_ruta"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen),(Object)(_e_ruta.getText()),(Object)(_imei)}; - //BA.debugLineNum = 1572;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"ruta\")"; + //BA.debugLineNum = 1590;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"ruta\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("ruta")); - //BA.debugLineNum = 1573;BA.debugLine="ToastMessageShow(\"Validando Conexión.\" , True)"; + //BA.debugLineNum = 1591;BA.debugLine="ToastMessageShow(\"Validando Conexión.\" , True)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Validando Conexión."),__c.True); - //BA.debugLineNum = 1574;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM RUTAA\")"; + //BA.debugLineNum = 1592;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM RUTAA\")"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM RUTAA"); - //BA.debugLineNum = 1575;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO RUTAA(RU"; + //BA.debugLineNum = 1593;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO RUTAA(RU"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO RUTAA(RUTAA) VALUES (?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_e_ruta.getText())})); - //BA.debugLineNum = 1576;BA.debugLine="B4XPages.MainPage.rutaPreventa = e_ruta.TEXT"; + //BA.debugLineNum = 1594;BA.debugLine="B4XPages.MainPage.rutaPreventa = e_ruta.TEXT"; _b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._rutapreventa /*String*/ = _e_ruta.getText(); }; - //BA.debugLineNum = 1578;BA.debugLine="End Sub"; + //BA.debugLineNum = 1596;BA.debugLine="End Sub"; return ""; } public String _e_ruta_enterpressed() throws Exception{ - //BA.debugLineNum = 1594;BA.debugLine="Sub e_ruta_EnterPressed"; - //BA.debugLineNum = 1595;BA.debugLine="If e_ruta.Text = \"FIN DIA\" Then"; + //BA.debugLineNum = 1612;BA.debugLine="Sub e_ruta_EnterPressed"; + //BA.debugLineNum = 1613;BA.debugLine="If e_ruta.Text = \"FIN DIA\" Then"; if ((_e_ruta.getText()).equals("FIN DIA")) { - //BA.debugLineNum = 1596;BA.debugLine="RES = Msgbox2(\"Seguro que desea hacer el cierre"; + //BA.debugLineNum = 1614;BA.debugLine="RES = Msgbox2(\"Seguro que desea hacer el cierre"; _res = BA.NumberToString(__c.Msgbox2(BA.ObjectToCharSequence("Seguro que desea hacer el cierre todos los datos se borraran?"),BA.ObjectToCharSequence("Cierre"),"Si","","No",(android.graphics.Bitmap)(__c.LoadBitmap(__c.File.getDirAssets(),"alert2.png").getObject()),ba)); - //BA.debugLineNum = 1597;BA.debugLine="If RES = DialogResponse.POSITIVE Then"; + //BA.debugLineNum = 1615;BA.debugLine="If RES = DialogResponse.POSITIVE Then"; if ((_res).equals(BA.NumberToString(__c.DialogResponse.POSITIVE))) { - //BA.debugLineNum = 1598;BA.debugLine="e_ruta.Text = \"\""; + //BA.debugLineNum = 1616;BA.debugLine="e_ruta.Text = \"\""; _e_ruta.setText(BA.ObjectToCharSequence("")); - //BA.debugLineNum = 1599;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from PICK_CIE"; + //BA.debugLineNum = 1617;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from PICK_CIE"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from PICK_CIEGO"); - //BA.debugLineNum = 1600;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from pedido_c"; + //BA.debugLineNum = 1618;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from pedido_c"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from pedido_cliente"); - //BA.debugLineNum = 1601;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CHECADO_"; + //BA.debugLineNum = 1619;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CHECADO_"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CHECADO_CHECK"); - //BA.debugLineNum = 1602;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CHECKLIS"; + //BA.debugLineNum = 1620;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CHECKLIS"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CHECKLIST2"); - //BA.debugLineNum = 1603;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from pedido\")"; + //BA.debugLineNum = 1621;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from pedido\")"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from pedido"); - //BA.debugLineNum = 1604;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from noventa\""; + //BA.debugLineNum = 1622;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from noventa\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from noventa"); - //BA.debugLineNum = 1605;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from clie_act"; + //BA.debugLineNum = 1623;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from clie_act"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from clie_act"); - //BA.debugLineNum = 1606;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from kmt_info"; + //BA.debugLineNum = 1624;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from kmt_info"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from kmt_info"); - //BA.debugLineNum = 1607;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; + //BA.debugLineNum = 1625;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cat_gunaprod"); - //BA.debugLineNum = 1608;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; + //BA.debugLineNum = 1626;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from cat_guna"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from cat_gunaprod3"); - //BA.debugLineNum = 1609;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CAT_DETA"; + //BA.debugLineNum = 1627;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CAT_DETA"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CAT_DETALLES_PAQ"); - //BA.debugLineNum = 1610;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from HIST_VEN"; + //BA.debugLineNum = 1628;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from HIST_VEN"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from HIST_VENTAS"); - //BA.debugLineNum = 1611;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from REPARTO\""; + //BA.debugLineNum = 1629;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from REPARTO\""; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from REPARTO"); - //BA.debugLineNum = 1612;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM TABULADO"; + //BA.debugLineNum = 1630;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM TABULADO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM TABULADOR_MONEDAS"); - //BA.debugLineNum = 1613;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM TABULADO"; + //BA.debugLineNum = 1631;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM TABULADO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM TABULADOR_BILLETES"); - //BA.debugLineNum = 1614;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM RUTAA\")"; + //BA.debugLineNum = 1632;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM RUTAA\")"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM RUTAA"); - //BA.debugLineNum = 1615;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1633;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); }; - //BA.debugLineNum = 1618;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints"; + //BA.debugLineNum = 1636;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from waypoints"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from waypoints"); }; - //BA.debugLineNum = 1620;BA.debugLine="End Sub"; + //BA.debugLineNum = 1638;BA.debugLine="End Sub"; return ""; } public String _envioinfo() throws Exception{ @@ -2010,443 +2036,449 @@ String _fecha3 = ""; String[] _hora = null; String _sdate = ""; String _stime = ""; - //BA.debugLineNum = 668;BA.debugLine="Sub envioinfo"; - //BA.debugLineNum = 670;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT NV_CLIENTE,NV_"; + //BA.debugLineNum = 677;BA.debugLine="Sub envioinfo"; + //BA.debugLineNum = 682;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT NV_CLIENTE,NV_"; _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 NV_CLIENTE,NV_FECHA,NV_USER,NV_MOTIVO,NV_COMM,NV_LAT,NV_LON, NV_FOTO FROM NOVENTA"))); - //BA.debugLineNum = 671;BA.debugLine="D=Starter.skmt.ExecQuery(\"SELECT COUNT(*) AS CUAN"; + //BA.debugLineNum = 683;BA.debugLine="D=Starter.skmt.ExecQuery(\"SELECT COUNT(*) AS CUAN"; _d = (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 CUANTOS_NOVENTA FROM NOVENTA"))); - //BA.debugLineNum = 672;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 684;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 673;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 685;BA.debugLine="For i=0 To c.RowCount -1"; { final int step4 = 1; final int limit4 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit4 ;_i = _i + step4 ) { - //BA.debugLineNum = 674;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 686;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 675;BA.debugLine="foto1 = c.GetBlob(\"NV_FOTO\")"; + //BA.debugLineNum = 687;BA.debugLine="foto1 = c.GetBlob(\"NV_FOTO\")"; _foto1 = _c.GetBlob("NV_FOTO"); - //BA.debugLineNum = 676;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 688;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 677;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 689;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 678;BA.debugLine="cmd.Name = \"insert_reparto_noventa_MAZAPA_REPG\""; + //BA.debugLineNum = 690;BA.debugLine="cmd.Name = \"insert_reparto_noventa_MAZAPA_REPG\""; _cmd.Name /*String*/ = "insert_reparto_noventa_MAZAPA_REPG"; - //BA.debugLineNum = 679;BA.debugLine="cmd.Parameters = Array As Object(C.GetString(\"N"; + //BA.debugLineNum = 691;BA.debugLine="cmd.Parameters = Array As Object(C.GetString(\"N"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("NV_CLIENTE")),(Object)(_c.GetString("NV_FECHA")),(Object)(_c.GetString("NV_USER")),(Object)(_c.GetString("NV_MOTIVO")),(Object)(_c.GetString("NV_COMM")),(Object)(_c.GetString("NV_LAT")),(Object)(_c.GetString("NV_LON")),(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 680;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_noventa\""; + //BA.debugLineNum = 692;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_noventa\""; _reqmanager._executecommand /*String*/ (_cmd,(Object)("inst_noventa")); } }; - //BA.debugLineNum = 682;BA.debugLine="c.Close"; + //BA.debugLineNum = 694;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 684;BA.debugLine="d.Position=0"; + //BA.debugLineNum = 696;BA.debugLine="d.Position=0"; _d.setPosition((int) (0)); - //BA.debugLineNum = 685;BA.debugLine="cuantos_noventa = D.GetString(\"CUANTOS_NOVENTA\")"; + //BA.debugLineNum = 697;BA.debugLine="cuantos_noventa = D.GetString(\"CUANTOS_NOVENTA\")"; _cuantos_noventa = _d.GetString("CUANTOS_NOVENTA"); - //BA.debugLineNum = 686;BA.debugLine="d.Close"; + //BA.debugLineNum = 698;BA.debugLine="d.Close"; _d.Close(); - //BA.debugLineNum = 687;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT HVD_CLIENTE,HVD_"; + //BA.debugLineNum = 699;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT HVD_CLIENTE,HVD_"; _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_CLIENTE,HVD_PRONOMBRE,HVD_CANT,HVD_COSTO_TOT, HVD_FECHA, HVD_CODPROMO, HVD_PROID, HVD_NUM_TICKET, HVD_NUM_REGISTRO, HVD_RECHAZO, HVD_PARCIAL FROM hist_ventas WHERE HVD_RECHAZO = 1 OR HVD_PARCIAL = 1"))); - //BA.debugLineNum = 689;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 701;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 690;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 702;BA.debugLine="For i=0 To c.RowCount -1"; { final int step20 = 1; final int limit20 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit20 ;_i = _i + step20 ) { - //BA.debugLineNum = 691;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 703;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 692;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 704;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 693;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 705;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 694;BA.debugLine="cmd.Name = \"insert_rep_hist_ventas_MAZAPA_REPG\""; + //BA.debugLineNum = 706;BA.debugLine="cmd.Name = \"insert_rep_hist_ventas_MAZAPA_REPG\""; _cmd.Name /*String*/ = "insert_rep_hist_ventas_MAZAPA_REPG"; - //BA.debugLineNum = 695;BA.debugLine="cmd.Parameters = Array As Object(C.GetString(\"H"; + //BA.debugLineNum = 707;BA.debugLine="cmd.Parameters = Array As Object(C.GetString(\"H"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("HVD_CLIENTE")),(Object)(_c.GetString("HVD_PRONOMBRE")),(Object)(_c.GetString("HVD_CANT")),(Object)(_c.GetString("HVD_COSTO_TOT")),(Object)(_c.GetString("HVD_CODPROMO")),(Object)(_c.GetString("HVD_PROID")),(Object)(_c.GetString("HVD_NUM_TICKET")),(Object)(_c.GetString("HVD_NUM_REGISTRO")),(Object)(_c.GetString("HVD_RECHAZO")),(Object)(_c.GetString("HVD_PARCIAL")),(Object)(_almacen)}; - //BA.debugLineNum = 696;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_noventa\")"; + //BA.debugLineNum = 708;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_noventa\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("inst_noventa")); } }; - //BA.debugLineNum = 698;BA.debugLine="c.Close"; + //BA.debugLineNum = 710;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 701;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT PE_TIPO, PE_RUTA"; + //BA.debugLineNum = 713;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT PE_TIPO, PE_RUTA"; _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 PE_TIPO, PE_RUTA, PE_CEDIS, PE_COSTO_TOT, PE_COSTOU, PE_CANT, PE_PRONOMBRE, PE_PROID, PE_CLIENTE, PE_FECHA, PE_USUARIO, PE_CLIENTEOR, PE_CAJAS, PE_BCAJAS, CONSECUTIVO, FECHA_PREV, RUTA_REP, PE_REGALO FROM PEDIDO"))); - //BA.debugLineNum = 702;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 714;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 703;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 715;BA.debugLine="For i=0 To c.RowCount -1"; { final int step32 = 1; final int limit32 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit32 ;_i = _i + step32 ) { - //BA.debugLineNum = 704;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 716;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 705;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 717;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 706;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 718;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 707;BA.debugLine="cmd.Name = \"insert_pedido_REP_MAZAPA\""; + //BA.debugLineNum = 719;BA.debugLine="cmd.Name = \"insert_pedido_REP_MAZAPA\""; _cmd.Name /*String*/ = "insert_pedido_REP_MAZAPA"; - //BA.debugLineNum = 708;BA.debugLine="cmd.Parameters = Array As Object(c.GetString(\"P"; + //BA.debugLineNum = 720;BA.debugLine="cmd.Parameters = Array As Object(c.GetString(\"P"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("PE_TIPO")),(Object)(_c.GetString("PE_RUTA")),(Object)(_c.GetString("PE_CEDIS")),(Object)(_c.GetString("PE_COSTO_TOT")),(Object)(_c.GetString("PE_COSTOU")),(Object)(_c.GetString("PE_CANT")),(Object)(_c.GetString("PE_PRONOMBRE")),(Object)(_c.GetString("PE_PROID")),(Object)(_c.GetString("PE_CLIENTE")),(Object)(_c.GetString("PE_FECHA")),(Object)(_c.GetString("PE_USUARIO")),(Object)(_c.GetString("PE_CLIENTEOR")),(Object)(_c.GetString("PE_CAJAS")),(Object)(_c.GetString("PE_BCAJAS")),(Object)(_c.GetString("CONSECUTIVO")),(Object)(_c.GetString("FECHA_PREV")),(Object)(_c.GetString("RUTA_REP")),(Object)(_c.GetString("PE_REGALO"))}; - //BA.debugLineNum = 709;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_pedido_MAZ"; + //BA.debugLineNum = 721;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_pedido_MAZ"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("ins_pedido_MAZAPA")); } }; - //BA.debugLineNum = 711;BA.debugLine="c.Close"; + //BA.debugLineNum = 723;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 716;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT * from reparto"; + //BA.debugLineNum = 728;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT * from reparto"; _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 * from reparto"))); - //BA.debugLineNum = 717;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 729;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 718;BA.debugLine="Private folio As String = Subs.hmsKMT"; + //BA.debugLineNum = 730;BA.debugLine="Private folio As String = Subs.hmsKMT"; _folio = _subs._hmskmt /*String*/ (ba); - //BA.debugLineNum = 719;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 731;BA.debugLine="For i=0 To c.RowCount -1"; { final int step45 = 1; final int limit45 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit45 ;_i = _i + step45 ) { - //BA.debugLineNum = 720;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 732;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 721;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 733;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 722;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 734;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 723;BA.debugLine="cmd.Name = \"insertReparto_MAZAPA\""; + //BA.debugLineNum = 735;BA.debugLine="cmd.Name = \"insertReparto_MAZAPA\""; _cmd.Name /*String*/ = "insertReparto_MAZAPA"; - //BA.debugLineNum = 724;BA.debugLine="cmd.Parameters = Array As Object(folio, C.GetSt"; + //BA.debugLineNum = 736;BA.debugLine="cmd.Parameters = Array As Object(folio, C.GetSt"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_folio),(Object)(_c.GetString("REP_FECHA")),(Object)(_c.GetString("REP_CLIENTE")),(Object)(_c.GetString("REP_CLI_ORIG")),(Object)(_c.GetString("REP_PRODID")),(Object)(_c.GetString("REP_PRONOMBRE")),(Object)(_c.GetString("REP_PRODREGISTRO")),(Object)(_c.GetString("REP_CANT")),(Object)(_c.GetString("REP_PRECIO")),(Object)(_c.GetString("REP_COSTO_TOT")),(Object)(_c.GetString("REP_RECHAZO")),(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 725;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_reparto\")"; + //BA.debugLineNum = 737;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_reparto\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("ins_reparto")); } }; - //BA.debugLineNum = 727;BA.debugLine="c.Close"; + //BA.debugLineNum = 739;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 729;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT * from rechazo"; + //BA.debugLineNum = 741;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT * from rechazo"; _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 * from rechazos"))); - //BA.debugLineNum = 730;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 742;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 731;BA.debugLine="Private folio As String = Subs.hmsKMT"; + //BA.debugLineNum = 743;BA.debugLine="Private folio As String = Subs.hmsKMT"; _folio = _subs._hmskmt /*String*/ (ba); - //BA.debugLineNum = 732;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 744;BA.debugLine="For i=0 To c.RowCount -1"; { final int step58 = 1; final int limit58 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit58 ;_i = _i + step58 ) { - //BA.debugLineNum = 733;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 745;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 734;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 746;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 735;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 747;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 736;BA.debugLine="cmd.Name = \"insertRechazos_MAZAPA\""; + //BA.debugLineNum = 748;BA.debugLine="cmd.Name = \"insertRechazos_MAZAPA\""; _cmd.Name /*String*/ = "insertRechazos_MAZAPA"; - //BA.debugLineNum = 737;BA.debugLine="cmd.Parameters = Array As Object(folio, C.GetSt"; + //BA.debugLineNum = 749;BA.debugLine="cmd.Parameters = Array As Object(folio, C.GetSt"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_folio),(Object)(_c.GetString("R_FECHA")),(Object)(_c.GetString("R_CLIENTE")),(Object)(_c.GetString("R_CLI_ORIG")),(Object)(_c.GetString("R_PRODID")),(Object)(_c.GetString("R_CANT")),(Object)(_c.GetString("R_RECHAZO")),(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 738;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_rechazos\")"; + //BA.debugLineNum = 750;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_rechazos\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("ins_rechazos")); } }; - //BA.debugLineNum = 740;BA.debugLine="c.Close"; + //BA.debugLineNum = 752;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 742;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT * from ventas\""; + //BA.debugLineNum = 754;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT * from ventas\""; _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 * from ventas"))); - //BA.debugLineNum = 743;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 755;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 744;BA.debugLine="Private folio As String = Subs.hmsKMT"; + //BA.debugLineNum = 756;BA.debugLine="Private folio As String = Subs.hmsKMT"; _folio = _subs._hmskmt /*String*/ (ba); - //BA.debugLineNum = 745;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 757;BA.debugLine="For i=0 To c.RowCount -1"; { final int step71 = 1; final int limit71 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit71 ;_i = _i + step71 ) { - //BA.debugLineNum = 746;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 758;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 747;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 759;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 748;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 760;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 749;BA.debugLine="cmd.Name = \"insertVentas_MAZAPA\""; + //BA.debugLineNum = 761;BA.debugLine="cmd.Name = \"insertVentas_MAZAPA\""; _cmd.Name /*String*/ = "insertVentas_MAZAPA"; - //BA.debugLineNum = 750;BA.debugLine="cmd.Parameters = Array As Object(folio, C.GetSt"; + //BA.debugLineNum = 762;BA.debugLine="cmd.Parameters = Array As Object(folio, C.GetSt"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_folio),(Object)(_c.GetString("V_FECHA")),(Object)(_c.GetString("V_CLIENTE")),(Object)(_c.GetString("V_CLI_ORIG")),(Object)(_c.GetString("V_PRODID")),(Object)(_c.GetString("V_CANT")),(Object)(_c.GetString("V_RECHAZO")),(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 751;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_ventas\")"; + //BA.debugLineNum = 763;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_ventas\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("ins_ventas")); } }; - //BA.debugLineNum = 753;BA.debugLine="c.Close"; + //BA.debugLineNum = 765;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 757;BA.debugLine="c=Starter.skmt.ExecQuery(\"SELECT CLIENTE, USUARI"; + //BA.debugLineNum = 769;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 = 758;BA.debugLine="Log($\"REPARTO_Cliente PENDIENTE: ${c.RowCount}\"$)"; -__c.LogImpl("216056410",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); - //BA.debugLineNum = 759;BA.debugLine="If c.RowCount>0 Then"; + //BA.debugLineNum = 770;BA.debugLine="Log($\"REPARTO_Cliente PENDIENTE: ${c.RowCount}\"$)"; +__c.LogImpl("849479773",("REPARTO_Cliente PENDIENTE: "+__c.SmartStringFormatter("",(Object)(_c.getRowCount()))+""),0); + //BA.debugLineNum = 771;BA.debugLine="If c.RowCount>0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 760;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 772;BA.debugLine="For i=0 To c.RowCount -1"; { final int step84 = 1; final int limit84 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit84 ;_i = _i + step84 ) { - //BA.debugLineNum = 761;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 773;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 763;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 775;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 764;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 776;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 765;BA.debugLine="cmd.Name = \"insert_REPARTO_MAZAPA\""; + //BA.debugLineNum = 777;BA.debugLine="cmd.Name = \"insert_REPARTO_MAZAPA\""; _cmd.Name /*String*/ = "insert_REPARTO_MAZAPA"; - //BA.debugLineNum = 766;BA.debugLine="cmd.Parameters = Array As Object(c.GetString(\"C"; + //BA.debugLineNum = 778;BA.debugLine="cmd.Parameters = Array As Object(c.GetString(\"C"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_c.GetString("CLIENTE")),(Object)(_c.GetString("USUARIO")),(Object)(_c.GetString("FECHA_PUNTEO")),(Object)(_c.GetString("LATITUD")),(Object)(_c.GetString("LONGITUD")),(Object)(_c.GetString("ALMACEN")),(Object)(_c.GetString("RUTA_REPARTO")),(Object)(_c.GetString("RUTA_PREV")),(Object)(_c.GetString("FECHA_PREVENTA")),(Object)(_c.GetString("MOTIVO")),(Object)(_c.GetString("COMENTARIO")),(Object)(_c.GetString("TIPO"))}; - //BA.debugLineNum = 767;BA.debugLine="reqManager.ExecuteCommand(cmd , $\"ins_REPARTOPe"; + //BA.debugLineNum = 779;BA.debugLine="reqManager.ExecuteCommand(cmd , $\"ins_REPARTOPe"; _reqmanager._executecommand /*String*/ (_cmd,(Object)(("ins_REPARTOPendientes_head_"+__c.SmartStringFormatter("",(Object)(_c.GetString("CLIENTE")))+""))); } }; }; - //BA.debugLineNum = 771;BA.debugLine="c.Close"; + //BA.debugLineNum = 783;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 774;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT VEINTE, DIEZ,"; + //BA.debugLineNum = 786;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT VEINTE, DIEZ,"; _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 VEINTE, DIEZ, CINCO, DOS, PESO, CENTAVO, TOTAL FROM TABULADOR_MONEDAS"))); - //BA.debugLineNum = 775;BA.debugLine="d = Starter.skmt.ExecQuery(\"SELECT RUTAA FROM RUT"; + //BA.debugLineNum = 787;BA.debugLine="d = Starter.skmt.ExecQuery(\"SELECT RUTAA FROM RUT"; _d = (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 RUTAA FROM RUTAA"))); - //BA.debugLineNum = 776;BA.debugLine="b = Starter.skmt.ExecQuery(\"SELECT ID_ALMACEN FRO"; + //BA.debugLineNum = 788;BA.debugLine="b = Starter.skmt.ExecQuery(\"SELECT ID_ALMACEN FRO"; _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 ID_ALMACEN FROM CAT_ALMACEN"))); - //BA.debugLineNum = 777;BA.debugLine="f = Starter.skmt.ExecQuery(\"SELECT HVD_FECHA FROM"; + //BA.debugLineNum = 789;BA.debugLine="f = Starter.skmt.ExecQuery(\"SELECT HVD_FECHA FROM"; _f = (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_FECHA FROM HIST_VENTAS"))); - //BA.debugLineNum = 778;BA.debugLine="d.Position = 0"; + //BA.debugLineNum = 790;BA.debugLine="d.Position = 0"; _d.setPosition((int) (0)); - //BA.debugLineNum = 779;BA.debugLine="b.Position = 0"; + //BA.debugLineNum = 791;BA.debugLine="b.Position = 0"; _b.setPosition((int) (0)); - //BA.debugLineNum = 780;BA.debugLine="f.Position = 0"; + //BA.debugLineNum = 792;BA.debugLine="f.Position = 0"; _f.setPosition((int) (0)); - //BA.debugLineNum = 781;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 793;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 782;BA.debugLine="For i = 0 To c.RowCount - 1"; + //BA.debugLineNum = 794;BA.debugLine="For i = 0 To c.RowCount - 1"; { final int step102 = 1; final int limit102 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit102 ;_i = _i + step102 ) { - //BA.debugLineNum = 783;BA.debugLine="c.Position=i"; + //BA.debugLineNum = 795;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 784;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 796;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 785;BA.debugLine="Dim fechatabulador() As String = Regex.Split(\""; + //BA.debugLineNum = 797;BA.debugLine="Dim fechatabulador() As String = Regex.Split(\""; _fechatabulador = __c.Regex.Split(" ",_f.GetString("HVD_FECHA")); - //BA.debugLineNum = 786;BA.debugLine="Dim fechatabulador2() As String = Regex.Split(\""; + //BA.debugLineNum = 798;BA.debugLine="Dim fechatabulador2() As String = Regex.Split(\""; _fechatabulador2 = __c.Regex.Split("-",_fechatabulador[(int) (0)]); - //BA.debugLineNum = 787;BA.debugLine="Dim fechatabulador3 As String = fechatabulador2"; + //BA.debugLineNum = 799;BA.debugLine="Dim fechatabulador3 As String = fechatabulador2"; _fechatabulador3 = _fechatabulador2[(int) (1)]+"/"+_fechatabulador2[(int) (2)]+"/"+_fechatabulador2[(int) (0)]; - //BA.debugLineNum = 788;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 800;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 789;BA.debugLine="cmd.Name = \"insert_tabulador_monedas_MAZAPA\""; + //BA.debugLineNum = 801;BA.debugLine="cmd.Name = \"insert_tabulador_monedas_MAZAPA\""; _cmd.Name /*String*/ = "insert_tabulador_monedas_MAZAPA"; - //BA.debugLineNum = 790;BA.debugLine="cmd.Parameters = Array As Object(d.GetString(\"R"; + //BA.debugLineNum = 802;BA.debugLine="cmd.Parameters = Array As Object(d.GetString(\"R"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_d.GetString("RUTAA")),(Object)(_b.GetString("ID_ALMACEN")),(Object)(_c.GetString("VEINTE")),(Object)(_c.GetString("DIEZ")),(Object)(_c.GetString("CINCO")),(Object)(_c.GetString("DOS")),(Object)(_c.GetString("PESO")),(Object)(_c.GetString("CENTAVO")),(Object)(_fechatabulador3)}; - //BA.debugLineNum = 791;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_tabulador_"; + //BA.debugLineNum = 803;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_tabulador_"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("ins_tabulador_mon")); } }; - //BA.debugLineNum = 793;BA.debugLine="c.Close"; + //BA.debugLineNum = 805;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 794;BA.debugLine="d.Close"; + //BA.debugLineNum = 806;BA.debugLine="d.Close"; _d.Close(); - //BA.debugLineNum = 795;BA.debugLine="b.Close"; + //BA.debugLineNum = 807;BA.debugLine="b.Close"; _b.Close(); - //BA.debugLineNum = 796;BA.debugLine="f.Close"; + //BA.debugLineNum = 808;BA.debugLine="f.Close"; _f.Close(); }; - //BA.debugLineNum = 799;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT IFNULL(HVD_REC"; + //BA.debugLineNum = 811;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT IFNULL(HVD_REC"; _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 IFNULL(HVD_RECHAZOCANT,0) AS HVD_RECHAZOCANT, HVD_CLIENTE, HVD_PROID, HVD_FECHA, HVD_CODPROMO, HVD_NUM_TICKET, HVD_CANT, CONSECUTIVO, BCAJAS, CANTC FROM HIST_VENTAS"))); - //BA.debugLineNum = 800;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 812;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 801;BA.debugLine="For i=0 To c.RowCount -1"; + //BA.debugLineNum = 813;BA.debugLine="For i=0 To c.RowCount -1"; { final int step120 = 1; final int limit120 = (int) (_c.getRowCount()-1); _i = (int) (0) ; for (;_i <= limit120 ;_i = _i + step120 ) { - //BA.debugLineNum = 802;BA.debugLine="c.Position = i"; + //BA.debugLineNum = 814;BA.debugLine="c.Position = i"; _c.setPosition(_i); - //BA.debugLineNum = 803;BA.debugLine="Private d4 As Cursor = Starter.skmt.ExecQuery($"; + //BA.debugLineNum = 815;BA.debugLine="Log(c.GetString(\"HVD_CLIENTE\"))"; +__c.LogImpl("849479818",_c.GetString("HVD_CLIENTE"),0); + //BA.debugLineNum = 816;BA.debugLine="Private d4 As Cursor = Starter.skmt.ExecQuery($"; _d4 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _d4 = (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 FROM kmt_info WHERE CAT_CL_CODIGO = '"+__c.SmartStringFormatter("",(Object)(_c.GetString("HVD_CLIENTE")))+"'")))); - //BA.debugLineNum = 804;BA.debugLine="d4.Position = 0"; + //BA.debugLineNum = 817;BA.debugLine="d4.Position = 0"; _d4.setPosition((int) (0)); - //BA.debugLineNum = 806;BA.debugLine="Private d5 As Cursor = Starter.skmt.ExecQuery("; + //BA.debugLineNum = 818;BA.debugLine="Log(d4.GetString(\"CAT_CL_RUTA\"))"; +__c.LogImpl("849479821",_d4.GetString("CAT_CL_RUTA"),0); + //BA.debugLineNum = 819;BA.debugLine="Private d5 As Cursor = Starter.skmt.ExecQuery("; _d5 = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _d5 = (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_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")))+"'")))); - //BA.debugLineNum = 807;BA.debugLine="d5.Position = 0"; + //BA.debugLineNum = 820;BA.debugLine="d5.Position = 0"; _d5.setPosition((int) (0)); - //BA.debugLineNum = 808;BA.debugLine="Private restacant As String = d5.GetString(\"PE_"; + //BA.debugLineNum = 821;BA.debugLine="Private restacant As String = d5.GetString(\"PE_"; _restacant = _d5.GetString("PE_CANT"); - //BA.debugLineNum = 809;BA.debugLine="d5.Close"; + //BA.debugLineNum = 822;BA.debugLine="d5.Close"; _d5.Close(); - //BA.debugLineNum = 811;BA.debugLine="Dim fecha1() As String = Regex.Split(\" \", c.Get"; + //BA.debugLineNum = 824;BA.debugLine="Dim fecha1() As String = Regex.Split(\" \", c.Get"; _fecha1 = __c.Regex.Split(" ",_c.GetString("HVD_FECHA")); - //BA.debugLineNum = 812;BA.debugLine="Dim fecha2() As String = Regex.Split(\"-\", fecha"; + //BA.debugLineNum = 825;BA.debugLine="Dim fecha2() As String = Regex.Split(\"-\", fecha"; _fecha2 = __c.Regex.Split("-",_fecha1[(int) (0)]); - //BA.debugLineNum = 813;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&"; + //BA.debugLineNum = 826;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&"; _fecha3 = _fecha2[(int) (2)]+"/"+_fecha2[(int) (1)]+"/"+_fecha2[(int) (0)]; - //BA.debugLineNum = 814;BA.debugLine="Log(fecha3)"; -__c.LogImpl("216056466",_fecha3,0); - //BA.debugLineNum = 815;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha1"; + //BA.debugLineNum = 827;BA.debugLine="Log(fecha3)"; +__c.LogImpl("849479830",_fecha3,0); + //BA.debugLineNum = 828;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha1"; _hora = __c.Regex.Split("\\.",_fecha1[(int) (1)]); - //BA.debugLineNum = 816;BA.debugLine="Log(hora(0))"; -__c.LogImpl("216056468",_hora[(int) (0)],0); - //BA.debugLineNum = 818;BA.debugLine="Dim sDate, sTime As String"; + //BA.debugLineNum = 829;BA.debugLine="Log(hora(0))"; +__c.LogImpl("849479832",_hora[(int) (0)],0); + //BA.debugLineNum = 831;BA.debugLine="Dim sDate, sTime As String"; _sdate = ""; _stime = ""; - //BA.debugLineNum = 819;BA.debugLine="DateTime.DateFormat = \"dd/MM/yyyy\""; + //BA.debugLineNum = 832;BA.debugLine="DateTime.DateFormat = \"dd/MM/yyyy\""; __c.DateTime.setDateFormat("dd/MM/yyyy"); - //BA.debugLineNum = 820;BA.debugLine="DateTime.TimeFormat = \"HH:mm:ss\""; + //BA.debugLineNum = 833;BA.debugLine="DateTime.TimeFormat = \"HH:mm:ss\""; __c.DateTime.setTimeFormat("HH:mm:ss"); - //BA.debugLineNum = 821;BA.debugLine="sDate = DateTime.Date(DateTime.Now)"; + //BA.debugLineNum = 834;BA.debugLine="sDate = DateTime.Date(DateTime.Now)"; _sdate = __c.DateTime.Date(__c.DateTime.getNow()); - //BA.debugLineNum = 822;BA.debugLine="sTime = DateTime.Time(DateTime.Now)"; + //BA.debugLineNum = 835;BA.debugLine="sTime = DateTime.Time(DateTime.Now)"; _stime = __c.DateTime.Time(__c.DateTime.getNow()); - //BA.debugLineNum = 823;BA.debugLine="If c.GetString(\"HVD_RECHAZOCANT\") <> \"0\" Then"; + //BA.debugLineNum = 836;BA.debugLine="If c.GetString(\"HVD_RECHAZOCANT\") <> \"0\" Then"; if ((_c.GetString("HVD_RECHAZOCANT")).equals("0") == false) { - //BA.debugLineNum = 824;BA.debugLine="Log((c.GetString(\"HVD_RECHAZOCANT\")-restacant)"; -__c.LogImpl("216056476",BA.NumberToString(((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_restacant)))),0); - //BA.debugLineNum = 825;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 837;BA.debugLine="Log((c.GetString(\"HVD_RECHAZOCANT\")-restacant)"; +__c.LogImpl("849479840",BA.NumberToString(((double)(Double.parseDouble(_c.GetString("HVD_RECHAZOCANT")))-(double)(Double.parseDouble(_restacant)))),0); + //BA.debugLineNum = 838;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 826;BA.debugLine="cmd.Name = \"update_HVD_MAZAPArep2\""; + //BA.debugLineNum = 839;BA.debugLine="cmd.Name = \"update_HVD_MAZAPArep2\""; _cmd.Name /*String*/ = "update_HVD_MAZAPArep2"; - //BA.debugLineNum = 827;BA.debugLine="cmd.Parameters = Array As String(c.GetString(\""; + //BA.debugLineNum = 840;BA.debugLine="cmd.Parameters = Array As String(c.GetString(\""; _cmd.Parameters /*Object[]*/ = (Object[])(new String[]{_c.GetString("HVD_RECHAZOCANT"),_c.GetString("BCAJAS"),_c.GetString("CANTC"),_sdate+" "+_stime,BA.NumberToString(1),_c.GetString("HVD_CLIENTE"),_c.GetString("HVD_PROID"),_fecha3+" "+_hora[(int) (0)],_d4.GetString("CAT_CL_RUTA"),_almacen,_l_ruta.getText(),_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_NUM_TICKET"),_c.GetString("HVD_CANT")}); - //BA.debugLineNum = 828;BA.debugLine="reqManager.ExecuteCommand(cmd, \"update_hvd\")"; + //BA.debugLineNum = 841;BA.debugLine="reqManager.ExecuteCommand(cmd, \"update_hvd\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("update_hvd")); }else { - //BA.debugLineNum = 830;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 843;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 831;BA.debugLine="cmd.Name = \"update_HVD_MAZAPArep2\""; + //BA.debugLineNum = 844;BA.debugLine="cmd.Name = \"update_HVD_MAZAPArep2\""; _cmd.Name /*String*/ = "update_HVD_MAZAPArep2"; - //BA.debugLineNum = 832;BA.debugLine="cmd.Parameters = Array As String(\"\",c.GetStrin"; + //BA.debugLineNum = 845;BA.debugLine="Log( c.GetString(\"CANTC\")& c.GetString(\"HVD_CL"; +__c.LogImpl("849479848",_c.GetString("CANTC")+_c.GetString("HVD_CLIENTE")+_c.GetString("HVD_PROID")+_fecha3+" "+_hora[(int) (0)]+_d4.GetString("CAT_CL_RUTA")+_almacen+_l_ruta.getText()+_c.GetString("HVD_CODPROMO")+_c.GetString("HVD_NUM_TICKET")+_c.GetString("HVD_CANT"),0); + //BA.debugLineNum = 846;BA.debugLine="cmd.Parameters = Array As String(\"\",c.GetStrin"; _cmd.Parameters /*Object[]*/ = (Object[])(new String[]{"",_c.GetString("BCAJAS"),_c.GetString("CANTC"),"","",_c.GetString("HVD_CLIENTE"),_c.GetString("HVD_PROID"),_fecha3+" "+_hora[(int) (0)],_d4.GetString("CAT_CL_RUTA"),_almacen,_l_ruta.getText(),_c.GetString("HVD_CODPROMO"),_c.GetString("HVD_NUM_TICKET"),_c.GetString("HVD_CANT")}); - //BA.debugLineNum = 833;BA.debugLine="reqManager.ExecuteCommand(cmd, \"update_hvd\")"; + //BA.debugLineNum = 847;BA.debugLine="reqManager.ExecuteCommand(cmd, \"update_hvd\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("update_hvd")); }; - //BA.debugLineNum = 835;BA.debugLine="d4.Close"; + //BA.debugLineNum = 849;BA.debugLine="d4.Close"; _d4.Close(); } }; }; - //BA.debugLineNum = 838;BA.debugLine="c.Close"; + //BA.debugLineNum = 852;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 841;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT MIL, QUINIENTO"; + //BA.debugLineNum = 855;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT MIL, QUINIENTO"; _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 MIL, QUINIENTOS, DOCIENTOS, CIEN, CINCUENTA, VEINTE FROM TABULADOR_BILLETES"))); - //BA.debugLineNum = 842;BA.debugLine="d = Starter.skmt.ExecQuery(\"SELECT RUTAA FROM RUT"; + //BA.debugLineNum = 856;BA.debugLine="d = Starter.skmt.ExecQuery(\"SELECT RUTAA FROM RUT"; _d = (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 RUTAA FROM RUTAA"))); - //BA.debugLineNum = 843;BA.debugLine="b = Starter.skmt.ExecQuery(\"SELECT ID_ALMACEN FRO"; + //BA.debugLineNum = 857;BA.debugLine="b = Starter.skmt.ExecQuery(\"SELECT ID_ALMACEN FRO"; _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 ID_ALMACEN FROM CAT_ALMACEN"))); - //BA.debugLineNum = 844;BA.debugLine="f = Starter.skmt.ExecQuery(\"SELECT HVD_FECHA FROM"; + //BA.debugLineNum = 858;BA.debugLine="f = Starter.skmt.ExecQuery(\"SELECT HVD_FECHA FROM"; _f = (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_FECHA FROM HIST_VENTAS"))); - //BA.debugLineNum = 845;BA.debugLine="d.Position = 0"; + //BA.debugLineNum = 859;BA.debugLine="d.Position = 0"; _d.setPosition((int) (0)); - //BA.debugLineNum = 846;BA.debugLine="b.Position = 0"; + //BA.debugLineNum = 860;BA.debugLine="b.Position = 0"; _b.setPosition((int) (0)); - //BA.debugLineNum = 847;BA.debugLine="f.Position = 0"; + //BA.debugLineNum = 861;BA.debugLine="f.Position = 0"; _f.setPosition((int) (0)); - //BA.debugLineNum = 848;BA.debugLine="If c.RowCount > 0 Then"; + //BA.debugLineNum = 862;BA.debugLine="If c.RowCount > 0 Then"; if (_c.getRowCount()>0) { - //BA.debugLineNum = 849;BA.debugLine="For i = 0 To c.RowCount - 1"; + //BA.debugLineNum = 863;BA.debugLine="For i = 0 To c.RowCount - 1"; { -final int step163 = 1; -final int limit163 = (int) (_c.getRowCount()-1); +final int step166 = 1; +final int limit166 = (int) (_c.getRowCount()-1); _i = (int) (0) ; -for (;_i <= limit163 ;_i = _i + step163 ) { - //BA.debugLineNum = 850;BA.debugLine="c.Position=i"; +for (;_i <= limit166 ;_i = _i + step166 ) { + //BA.debugLineNum = 864;BA.debugLine="c.Position=i"; _c.setPosition(_i); - //BA.debugLineNum = 851;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 865;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 852;BA.debugLine="Dim fechatabulador() As String = Regex.Split(\""; + //BA.debugLineNum = 866;BA.debugLine="Dim fechatabulador() As String = Regex.Split(\""; _fechatabulador = __c.Regex.Split(" ",_f.GetString("HVD_FECHA")); - //BA.debugLineNum = 853;BA.debugLine="Dim fechatabulador2() As String = Regex.Split(\""; + //BA.debugLineNum = 867;BA.debugLine="Dim fechatabulador2() As String = Regex.Split(\""; _fechatabulador2 = __c.Regex.Split("-",_fechatabulador[(int) (0)]); - //BA.debugLineNum = 854;BA.debugLine="Dim fechatabulador3 As String = fechatabulador2"; + //BA.debugLineNum = 868;BA.debugLine="Dim fechatabulador3 As String = fechatabulador2"; _fechatabulador3 = _fechatabulador2[(int) (1)]+"/"+_fechatabulador2[(int) (2)]+"/"+_fechatabulador2[(int) (0)]; - //BA.debugLineNum = 855;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 869;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 856;BA.debugLine="cmd.Name = \"insert_tabulador_billetes_MAZAPA\""; + //BA.debugLineNum = 870;BA.debugLine="cmd.Name = \"insert_tabulador_billetes_MAZAPA\""; _cmd.Name /*String*/ = "insert_tabulador_billetes_MAZAPA"; - //BA.debugLineNum = 857;BA.debugLine="cmd.Parameters = Array As Object(b.GetString(\"I"; + //BA.debugLineNum = 871;BA.debugLine="cmd.Parameters = Array As Object(b.GetString(\"I"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_b.GetString("ID_ALMACEN")),(Object)(_d.GetString("RUTAA")),(Object)(_c.GetString("MIL")),(Object)(_c.GetString("QUINIENTOS")),(Object)(_c.GetString("DOCIENTOS")),(Object)(_c.GetString("CIEN")),(Object)(_c.GetString("CINCUENTA")),(Object)(_c.GetString("VEINTE")),(Object)(_fechatabulador3)}; - //BA.debugLineNum = 858;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_tabulador_"; + //BA.debugLineNum = 872;BA.debugLine="reqManager.ExecuteCommand(cmd , \"ins_tabulador_"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("ins_tabulador_bill")); } }; - //BA.debugLineNum = 860;BA.debugLine="c.Close"; + //BA.debugLineNum = 874;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 861;BA.debugLine="d.Close"; + //BA.debugLineNum = 875;BA.debugLine="d.Close"; _d.Close(); - //BA.debugLineNum = 862;BA.debugLine="b.Close"; + //BA.debugLineNum = 876;BA.debugLine="b.Close"; _b.Close(); - //BA.debugLineNum = 863;BA.debugLine="f.Close"; + //BA.debugLineNum = 877;BA.debugLine="f.Close"; _f.Close(); }; - //BA.debugLineNum = 867;BA.debugLine="Dim cmd As DBCommand"; + //BA.debugLineNum = 881;BA.debugLine="Dim cmd As DBCommand"; _cmd = new reparto_mazapa.keymon.lat.dbrequestmanager._dbcommand(); - //BA.debugLineNum = 868;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 882;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 869;BA.debugLine="cmd.Name = \"insert_drop_rep_MAZAPA\""; + //BA.debugLineNum = 883;BA.debugLine="cmd.Name = \"insert_drop_rep_MAZAPA\""; _cmd.Name /*String*/ = "insert_drop_rep_MAZAPA"; - //BA.debugLineNum = 870;BA.debugLine="cmd.Parameters = Array As Object(Subs.dameUsuario"; + //BA.debugLineNum = 884;BA.debugLine="cmd.Parameters = Array As Object(Subs.dameUsuario"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_subs._dameusuariodedb /*String*/ (ba)),(Object)(_l_ruta.getText()),(Object)(_almacen),(Object)(_l_ctast.getText()),(Object)(_subs._traeentregados /*anywheresoftware.b4a.objects.collections.Map*/ (ba).getObject()),(Object)(_subs._traerechazados /*anywheresoftware.b4a.objects.collections.Map*/ (ba).getObject()),(Object)("ENVIO")}; - //BA.debugLineNum = 871;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_drop\")"; + //BA.debugLineNum = 885;BA.debugLine="reqManager.ExecuteCommand(cmd , \"inst_drop\")"; _reqmanager._executecommand /*String*/ (_cmd,(Object)("inst_drop")); - //BA.debugLineNum = 872;BA.debugLine="ToastMessageShow(\"Se Actualizaran los datos, Este"; + //BA.debugLineNum = 886;BA.debugLine="ToastMessageShow(\"Se Actualizaran los datos, Este"; __c.ToastMessageShow(BA.ObjectToCharSequence("Se Actualizaran los datos, Este proceso podria tardar hasta un minuto, gracias "+_l_ruta.getText()),__c.True); - //BA.debugLineNum = 873;BA.debugLine="End Sub"; + //BA.debugLineNum = 887;BA.debugLine="End Sub"; return ""; } public Object _initialize(anywheresoftware.b4a.BA _ba) throws Exception{ innerInitialize(_ba); - //BA.debugLineNum = 94;BA.debugLine="Public Sub Initialize As Object"; - //BA.debugLineNum = 95;BA.debugLine="Return Me"; + //BA.debugLineNum = 95;BA.debugLine="Public Sub Initialize As Object"; + //BA.debugLineNum = 96;BA.debugLine="Return Me"; if (true) return this; - //BA.debugLineNum = 96;BA.debugLine="End Sub"; + //BA.debugLineNum = 97;BA.debugLine="End Sub"; return null; } public String _inv_click() throws Exception{ - //BA.debugLineNum = 1622;BA.debugLine="Sub inv_Click"; - //BA.debugLineNum = 1623;BA.debugLine="ToastMessageShow(\"Se Actualizaran los datos, Este"; + //BA.debugLineNum = 1640;BA.debugLine="Sub inv_Click"; + //BA.debugLineNum = 1641;BA.debugLine="ToastMessageShow(\"Se Actualizaran los datos, Este"; __c.ToastMessageShow(BA.ObjectToCharSequence("Se Actualizaran los datos, Este proceso podria tardar hasta un minuto, gracias"),__c.True); - //BA.debugLineNum = 1624;BA.debugLine="End Sub"; + //BA.debugLineNum = 1642;BA.debugLine="End Sub"; return ""; } public boolean _isconnectedtointernet() throws Exception{ anywheresoftware.b4a.agraham.reflection.Reflection _r = null; - //BA.debugLineNum = 621;BA.debugLine="Sub IsConnectedToInternet As Boolean 'ignore"; - //BA.debugLineNum = 622;BA.debugLine="Dim r As Reflector"; + //BA.debugLineNum = 630;BA.debugLine="Sub IsConnectedToInternet As Boolean 'ignore"; + //BA.debugLineNum = 631;BA.debugLine="Dim r As Reflector"; _r = new anywheresoftware.b4a.agraham.reflection.Reflection(); - //BA.debugLineNum = 623;BA.debugLine="r.Target = r.GetContext"; + //BA.debugLineNum = 632;BA.debugLine="r.Target = r.GetContext"; _r.Target = (Object)(_r.GetContext(ba)); - //BA.debugLineNum = 624;BA.debugLine="r.Target = r.RunMethod2(\"getSystemService\", \"conn"; + //BA.debugLineNum = 633;BA.debugLine="r.Target = r.RunMethod2(\"getSystemService\", \"conn"; _r.Target = _r.RunMethod2("getSystemService","connectivity","java.lang.String"); - //BA.debugLineNum = 625;BA.debugLine="r.Target = r.RunMethod(\"getActiveNetworkInfo\")"; + //BA.debugLineNum = 634;BA.debugLine="r.Target = r.RunMethod(\"getActiveNetworkInfo\")"; _r.Target = _r.RunMethod("getActiveNetworkInfo"); - //BA.debugLineNum = 626;BA.debugLine="If r.Target <> Null Then"; + //BA.debugLineNum = 635;BA.debugLine="If r.Target <> Null Then"; if (_r.Target!= null) { - //BA.debugLineNum = 627;BA.debugLine="Return r.RunMethod(\"isConnectedOrConnecting\")"; + //BA.debugLineNum = 636;BA.debugLine="Return r.RunMethod(\"isConnectedOrConnecting\")"; if (true) return BA.ObjectToBoolean(_r.RunMethod("isConnectedOrConnecting")); }; - //BA.debugLineNum = 629;BA.debugLine="Return False"; + //BA.debugLineNum = 638;BA.debugLine="Return False"; if (true) return __c.False; - //BA.debugLineNum = 630;BA.debugLine="End Sub"; + //BA.debugLineNum = 639;BA.debugLine="End Sub"; return false; } public String _jobdone(reparto_mazapa.keymon.lat.httpjob _job) throws Exception{ @@ -2532,28 +2564,28 @@ String _valido = ""; double _lat = 0; double _lon = 0; String _k = ""; - //BA.debugLineNum = 1030;BA.debugLine="Sub JobDone(Job As HttpJob)"; - //BA.debugLineNum = 1032;BA.debugLine="If Job.Success = False Then"; + //BA.debugLineNum = 1044;BA.debugLine="Sub JobDone(Job As HttpJob)"; + //BA.debugLineNum = 1046;BA.debugLine="If Job.Success = False Then"; if (_job._success /*boolean*/ ==__c.False) { - //BA.debugLineNum = 1033;BA.debugLine="LogColor(\"** \" & Job.Tag & \" Error: \" & Job.Erro"; -__c.LogImpl("216187395","** "+BA.ObjectToString(_job._tag /*Object*/ )+" Error: "+_job._errormessage /*String*/ ,__c.Colors.Red); + //BA.debugLineNum = 1047;BA.debugLine="LogColor(\"** \" & Job.Tag & \" Error: \" & Job.Erro"; +__c.LogImpl("849610755","** "+BA.ObjectToString(_job._tag /*Object*/ )+" Error: "+_job._errormessage /*String*/ ,__c.Colors.Red); }else { - //BA.debugLineNum = 1036;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; -__c.LogImpl("216187398","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); - //BA.debugLineNum = 1037;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1050;BA.debugLine="LogColor(\"JobDone: '\" & reqManager.HandleJob(Job"; +__c.LogImpl("849610758","JobDone: '"+BA.ObjectToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Tag /*Object*/ )+"' - Registros: "+BA.NumberToString(_reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job).Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()),__c.Colors.Green); + //BA.debugLineNum = 1051;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1038;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1052;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1039;BA.debugLine="If result.Tag = \"kmt_datos\" Then 'query tag"; + //BA.debugLineNum = 1053;BA.debugLine="If result.Tag = \"kmt_datos\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("kmt_datos"))) { - //BA.debugLineNum = 1040;BA.debugLine="If reqs.IndexOf(\"kmt_datos\") > -1 Then"; + //BA.debugLineNum = 1054;BA.debugLine="If reqs.IndexOf(\"kmt_datos\") > -1 Then"; if (_reqs.IndexOf((Object)("kmt_datos"))>-1) { - //BA.debugLineNum = 1041;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"kmt_datos\"))"; + //BA.debugLineNum = 1055;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"kmt_datos\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("kmt_datos"))); }; - //BA.debugLineNum = 1044;BA.debugLine="Starter.skmt.BeginTransaction"; + //BA.debugLineNum = 1058;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); - //BA.debugLineNum = 1045;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1060;BA.debugLine="For Each records() As Object In result.Rows"; { final anywheresoftware.b4a.BA.IterableList group12 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; final int groupLen12 = group12.getSize() @@ -2561,602 +2593,576 @@ final int groupLen12 = group12.getSize() ; for (; index12 < groupLen12;index12++){ _records = (Object[])(group12.Get(index12)); - //BA.debugLineNum = 1046;BA.debugLine="Dim CAT_CL_CODIGO As String = records(result."; + //BA.debugLineNum = 1061;BA.debugLine="Dim CAT_CL_CODIGO As String = records(result."; _cat_cl_codigo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_CODIGO"))))]); - //BA.debugLineNum = 1047;BA.debugLine="Dim CAT_CL_RUTA As String = records(result.Co"; + //BA.debugLineNum = 1062;BA.debugLine="Dim CAT_CL_RUTA As String = records(result.Co"; _cat_cl_ruta = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_RUTA"))))]); - //BA.debugLineNum = 1048;BA.debugLine="Dim CAT_CL_NOMBRE As String = records(result."; + //BA.debugLineNum = 1063;BA.debugLine="Dim CAT_CL_NOMBRE As String = records(result."; _cat_cl_nombre = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_NOMBRE"))))]); - //BA.debugLineNum = 1049;BA.debugLine="Dim CAT_CL_ATIENDE1 As String = records(resul"; + //BA.debugLineNum = 1064;BA.debugLine="Dim CAT_CL_ATIENDE1 As String = records(resul"; _cat_cl_atiende1 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_ATIENDE1"))))]); - //BA.debugLineNum = 1050;BA.debugLine="Dim CAT_CL_ATIENTE2 As String = records(resul"; + //BA.debugLineNum = 1065;BA.debugLine="Dim CAT_CL_ATIENTE2 As String = records(resul"; _cat_cl_atiente2 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_ATIENTE2"))))]); - //BA.debugLineNum = 1051;BA.debugLine="Dim CAT_CL_TELEFONO As String = records(resul"; + //BA.debugLineNum = 1066;BA.debugLine="Dim CAT_CL_TELEFONO As String = records(resul"; _cat_cl_telefono = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_TELEFONO"))))]); - //BA.debugLineNum = 1052;BA.debugLine="Dim CAT_CL_EMAIL As String = records(result.C"; + //BA.debugLineNum = 1067;BA.debugLine="Dim CAT_CL_EMAIL As String = records(result.C"; _cat_cl_email = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_EMAIL"))))]); - //BA.debugLineNum = 1053;BA.debugLine="Dim CAT_CL_CALLE As String = records(result.C"; + //BA.debugLineNum = 1068;BA.debugLine="Dim CAT_CL_CALLE As String = records(result.C"; _cat_cl_calle = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_CALLE"))))]); - //BA.debugLineNum = 1054;BA.debugLine="Dim CAT_CL_NOEXT As String = records(result.C"; + //BA.debugLineNum = 1069;BA.debugLine="Dim CAT_CL_NOEXT As String = records(result.C"; _cat_cl_noext = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_NOEXT"))))]); - //BA.debugLineNum = 1055;BA.debugLine="Dim CAT_CL_NOINT As String = records(result.C"; + //BA.debugLineNum = 1070;BA.debugLine="Dim CAT_CL_NOINT As String = records(result.C"; _cat_cl_noint = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_NOINT"))))]); - //BA.debugLineNum = 1056;BA.debugLine="Dim CAT_CL_CALLE1 As String = records(result."; + //BA.debugLineNum = 1071;BA.debugLine="Dim CAT_CL_CALLE1 As String = records(result."; _cat_cl_calle1 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_CALLE1"))))]); - //BA.debugLineNum = 1057;BA.debugLine="Dim CAT_CL_CALLE2 As String = records(result."; + //BA.debugLineNum = 1072;BA.debugLine="Dim CAT_CL_CALLE2 As String = records(result."; _cat_cl_calle2 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_CALLE2"))))]); - //BA.debugLineNum = 1058;BA.debugLine="Dim CAT_CL_COLONIA As String = records(result"; + //BA.debugLineNum = 1073;BA.debugLine="Dim CAT_CL_COLONIA As String = records(result"; _cat_cl_colonia = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_COLONIA"))))]); - //BA.debugLineNum = 1059;BA.debugLine="Dim CAT_CL_MUNI As String = records(result.Co"; + //BA.debugLineNum = 1074;BA.debugLine="Dim CAT_CL_MUNI As String = records(result.Co"; _cat_cl_muni = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_MUNI"))))]); - //BA.debugLineNum = 1060;BA.debugLine="Dim CAT_CL_EDO As String = records(result.Col"; + //BA.debugLineNum = 1075;BA.debugLine="Dim CAT_CL_EDO As String = records(result.Col"; _cat_cl_edo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_EDO"))))]); - //BA.debugLineNum = 1061;BA.debugLine="Dim CAT_CL_CP As String = records(result.Colu"; + //BA.debugLineNum = 1076;BA.debugLine="Dim CAT_CL_CP As String = records(result.Colu"; _cat_cl_cp = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_CP"))))]); - //BA.debugLineNum = 1062;BA.debugLine="Dim CAT_CL_LONG As String = records(result.Co"; + //BA.debugLineNum = 1077;BA.debugLine="Dim CAT_CL_LONG As String = records(result.Co"; _cat_cl_long = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_LONG"))))]); - //BA.debugLineNum = 1063;BA.debugLine="Dim CAT_CL_LAT As String = records(result.Col"; + //BA.debugLineNum = 1078;BA.debugLine="Dim CAT_CL_LAT As String = records(result.Col"; _cat_cl_lat = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_LAT"))))]); - //BA.debugLineNum = 1064;BA.debugLine="Dim CAT_CL_BCREDITO As String = records(resul"; + //BA.debugLineNum = 1079;BA.debugLine="Dim CAT_CL_BCREDITO As String = records(resul"; _cat_cl_bcredito = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_BCREDITO"))))]); - //BA.debugLineNum = 1065;BA.debugLine="Dim CAT_CL_SECUENCIA As String = records(resu"; + //BA.debugLineNum = 1080;BA.debugLine="Dim CAT_CL_SECUENCIA As String = records(resu"; _cat_cl_secuencia = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_CL_SECUENCIA"))))]); - //BA.debugLineNum = 1067;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO kmt_i"; + //BA.debugLineNum = 1082;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO kmt_i"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO kmt_info(CAT_CL_CODIGO,CAT_CL_RUTA,CAT_CL_NOMBRE,CAT_CL_ATIENDE1,CAT_CL_ATIENTE2,CAT_CL_TELEFONO,CAT_CL_EMAIL,CAT_CL_CALLE,CAT_CL_NOEXT,CAT_CL_NOINT,CAT_CL_CALLE1,CAT_CL_CALLE2,CAT_CL_COLONIA,CAT_CL_MUNI,CAT_CL_EDO,CAT_CL_CP,CAT_CL_LONG,CAT_CL_LAT,CAT_CL_BCREDITO, gestion,SECUENCIA) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,0,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_cat_cl_codigo),(Object)(_cat_cl_ruta),(Object)(_cat_cl_nombre),(Object)(_cat_cl_atiende1),(Object)(_cat_cl_atiente2),(Object)(_cat_cl_telefono),(Object)(_cat_cl_email),(Object)(_cat_cl_calle),(Object)(_cat_cl_noext),(Object)(_cat_cl_noint),(Object)(_cat_cl_calle1),(Object)(_cat_cl_calle2),(Object)(_cat_cl_colonia),(Object)(_cat_cl_muni),(Object)(_cat_cl_edo),(Object)(_cat_cl_cp),(Object)(_cat_cl_long),(Object)(_cat_cl_lat),(Object)(_cat_cl_bcredito),(Object)(_cat_cl_secuencia)})); } }; - //BA.debugLineNum = 1069;BA.debugLine="Starter.skmt.TransactionSuccessful"; + //BA.debugLineNum = 1084;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO kmt_in"; +_starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO kmt_info(CAT_CL_CODIGO,CAT_CL_RUTA,CAT_CL_NOMBRE,CAT_CL_ATIENDE1,CAT_CL_ATIENTE2,CAT_CL_TELEFONO,CAT_CL_EMAIL,CAT_CL_CALLE,CAT_CL_NOEXT,CAT_CL_NOINT,CAT_CL_CALLE1,CAT_CL_CALLE2,CAT_CL_COLONIA,CAT_CL_MUNI,CAT_CL_EDO,CAT_CL_CP,CAT_CL_LONG,CAT_CL_LAT,CAT_CL_BCREDITO, gestion,SECUENCIA) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,0,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(63403),(Object)(1000),(Object)("VENTA RECHAZO"),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)(""),(Object)("-98.8357694"),(Object)("19.6906052"),(Object)("0"),(Object)("1")})); + //BA.debugLineNum = 1086;BA.debugLine="Starter.skmt.TransactionSuccessful"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .TransactionSuccessful(); - //BA.debugLineNum = 1070;BA.debugLine="Starter.skmt.EndTransaction"; + //BA.debugLineNum = 1087;BA.debugLine="Starter.skmt.EndTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .EndTransaction(); - //BA.debugLineNum = 1071;BA.debugLine="Listo1 = 1"; + //BA.debugLineNum = 1088;BA.debugLine="Listo1 = 1"; _listo1 = BA.NumberToString(1); - //BA.debugLineNum = 1072;BA.debugLine="If Listo1 = 1 And Listo3 = 1 Then"; + //BA.debugLineNum = 1089;BA.debugLine="If Listo1 = 1 And Listo3 = 1 Then"; if ((_listo1).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1073;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1090;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1074;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1091;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1075;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1092;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1076;BA.debugLine="EJECUTANDO=0"; + //BA.debugLineNum = 1093;BA.debugLine="EJECUTANDO=0"; _ejecutando = BA.NumberToString(0); }; }; }; - //BA.debugLineNum = 1081;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1098;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1082;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1099;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1083;BA.debugLine="If result.Tag = \"gunaprod3\" Then 'query tag"; + //BA.debugLineNum = 1100;BA.debugLine="If result.Tag = \"gunaprod3\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("gunaprod3"))) { - //BA.debugLineNum = 1084;BA.debugLine="If reqs.IndexOf(\"gunaprod3\") > -1 Then"; + //BA.debugLineNum = 1101;BA.debugLine="If reqs.IndexOf(\"gunaprod3\") > -1 Then"; if (_reqs.IndexOf((Object)("gunaprod3"))>-1) { - //BA.debugLineNum = 1085;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprod3\"))"; + //BA.debugLineNum = 1102;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprod3\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("gunaprod3"))); - //BA.debugLineNum = 1086;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("216187448",BA.NumberToString(_reqs.getSize()),0); + //BA.debugLineNum = 1103;BA.debugLine="Log(reqs.Size)"; +__c.LogImpl("849610811",BA.NumberToString(_reqs.getSize()),0); }; - //BA.debugLineNum = 1088;BA.debugLine="Starter.skmt.BeginTransaction"; + //BA.debugLineNum = 1105;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); - //BA.debugLineNum = 1089;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1106;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group54 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen54 = group54.getSize() -;int index54 = 0; +final anywheresoftware.b4a.BA.IterableList group55 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen55 = group55.getSize() +;int index55 = 0; ; -for (; index54 < groupLen54;index54++){ -_records = (Object[])(group54.Get(index54)); - //BA.debugLineNum = 1090;BA.debugLine="Dim CAT_GP_ID As String = records(result.Colu"; +for (; index55 < groupLen55;index55++){ +_records = (Object[])(group55.Get(index55)); + //BA.debugLineNum = 1107;BA.debugLine="Dim CAT_GP_ID As String = records(result.Colu"; _cat_gp_id = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_ID"))))]); - //BA.debugLineNum = 1091;BA.debugLine="Dim CAT_GP_NOMBRE As String = records(result."; + //BA.debugLineNum = 1108;BA.debugLine="Dim CAT_GP_NOMBRE As String = records(result."; _cat_gp_nombre = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_NOMBRE"))))]); - //BA.debugLineNum = 1092;BA.debugLine="Dim CAT_GP_IMP1 As String = records(result.Co"; + //BA.debugLineNum = 1109;BA.debugLine="Dim CAT_GP_IMP1 As String = records(result.Co"; _cat_gp_imp1 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_IMP1"))))]); - //BA.debugLineNum = 1093;BA.debugLine="Dim CAT_GP_IMP2 As String = records(result.Co"; + //BA.debugLineNum = 1110;BA.debugLine="Dim CAT_GP_IMP2 As String = records(result.Co"; _cat_gp_imp2 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_IMP2"))))]); - //BA.debugLineNum = 1094;BA.debugLine="Dim CAT_GP_PRECIO As String = records(result."; + //BA.debugLineNum = 1111;BA.debugLine="Dim CAT_GP_PRECIO As String = records(result."; _cat_gp_precio = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_PRECIO"))))]); - //BA.debugLineNum = 1095;BA.debugLine="Dim CAT_GP_CLASIF As String = records(result."; + //BA.debugLineNum = 1112;BA.debugLine="Dim CAT_GP_CLASIF As String = records(result."; _cat_gp_clasif = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_CLASIF"))))]); - //BA.debugLineNum = 1096;BA.debugLine="Dim CAT_GP_STS As String = records(result.Col"; + //BA.debugLineNum = 1113;BA.debugLine="Dim CAT_GP_STS As String = records(result.Col"; _cat_gp_sts = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_STS"))))]); - //BA.debugLineNum = 1097;BA.debugLine="Dim CAT_GP_TIPO As String = records(result.Co"; + //BA.debugLineNum = 1114;BA.debugLine="Dim CAT_GP_TIPO As String = records(result.Co"; _cat_gp_tipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_TIPO"))))]); - //BA.debugLineNum = 1098;BA.debugLine="Dim CAT_GP_SUBTIPO As String = records(result"; + //BA.debugLineNum = 1115;BA.debugLine="Dim CAT_GP_SUBTIPO As String = records(result"; _cat_gp_subtipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_SUBTIPO"))))]); - //BA.debugLineNum = 1099;BA.debugLine="Dim CAT_GP_IMG() As Byte = records(result.Col"; + //BA.debugLineNum = 1116;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_GP_IMG"))))]); - //BA.debugLineNum = 1100;BA.debugLine="Dim CAT_GP_ALMACEN As Int = records(result.Co"; + //BA.debugLineNum = 1117;BA.debugLine="Dim CAT_GP_ALMACEN As Int = records(result.Co"; _cat_gp_almacen = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_ALMACEN"))))])); - //BA.debugLineNum = 1102;BA.debugLine="Dim CAT_GP_TIPOPROD As Int = records(result.C"; + //BA.debugLineNum = 1119;BA.debugLine="Dim CAT_GP_TIPOPROD As Int = records(result.C"; _cat_gp_tipoprod = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_TIPOPROD"))))])); - //BA.debugLineNum = 1103;BA.debugLine="Dim CAT_GP_INICIATIVA As Int = records(result"; + //BA.debugLineNum = 1120;BA.debugLine="Dim CAT_GP_INICIATIVA As Int = records(result"; _cat_gp_iniciativa = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_INICIATIVA"))))])); - //BA.debugLineNum = 1104;BA.debugLine="Dim CAT_DP_PRECIO4 As Float = records(result."; + //BA.debugLineNum = 1121;BA.debugLine="Dim CAT_DP_PRECIO4 As Float = records(result."; _cat_dp_precio4 = (float)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_PRECIO4"))))])); - //BA.debugLineNum = 1105;BA.debugLine="Dim CAT_DP_CONVERSION1 As Int = records(resul"; + //BA.debugLineNum = 1122;BA.debugLine="Dim CAT_DP_CONVERSION1 As Int = records(resul"; _cat_dp_conversion1 = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_CONVERSION1"))))])); - //BA.debugLineNum = 1106;BA.debugLine="Dim CAT_DP_CANT_MIN_VENTA As Int = records(re"; + //BA.debugLineNum = 1123;BA.debugLine="Dim CAT_DP_CANT_MIN_VENTA As Int = records(re"; _cat_dp_cant_min_venta = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_CANT_MIN_VENTA"))))])); - //BA.debugLineNum = 1109;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_G"; + //BA.debugLineNum = 1126;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_G"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CAT_GUNAPROD3(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,CAT_GP_TIPOPROD,CAT_GP_INICIATIVA,CAT_DP_PRECIO4,CAT_DP_CONVERSION1,CAT_DP_CANT_MIN_VENTA) 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)(_cat_gp_almacen),(Object)(_cat_gp_tipoprod),(Object)(_cat_gp_iniciativa),(Object)(_cat_dp_precio4),(Object)(_cat_dp_conversion1),(Object)(_cat_dp_cant_min_venta)})); } }; - //BA.debugLineNum = 1111;BA.debugLine="Starter.skmt.TransactionSuccessful"; + //BA.debugLineNum = 1128;BA.debugLine="Starter.skmt.TransactionSuccessful"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .TransactionSuccessful(); - //BA.debugLineNum = 1112;BA.debugLine="Starter.skmt.EndTransaction"; + //BA.debugLineNum = 1129;BA.debugLine="Starter.skmt.EndTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .EndTransaction(); - //BA.debugLineNum = 1113;BA.debugLine="Listo2=1"; + //BA.debugLineNum = 1130;BA.debugLine="Listo2=1"; _listo2 = BA.NumberToString(1); - //BA.debugLineNum = 1114;BA.debugLine="If Listo1 = 1 And Listo2 =1 And Listo3 = 1 And"; + //BA.debugLineNum = 1131;BA.debugLine="If Listo1 = 1 And Listo2 =1 And Listo3 = 1 And"; if ((_listo1).equals(BA.NumberToString(1)) && (_listo2).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1)) && (_listo4).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1115;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1132;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1116;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1133;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1117;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1134;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1118;BA.debugLine="EJECUTANDO=0"; + //BA.debugLineNum = 1135;BA.debugLine="EJECUTANDO=0"; _ejecutando = BA.NumberToString(0); }; }; }; - //BA.debugLineNum = 1123;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1140;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1124;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1141;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1125;BA.debugLine="If result.Tag = \"gunaprod\" Then 'query tag"; + //BA.debugLineNum = 1142;BA.debugLine="If result.Tag = \"gunaprod\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("gunaprod"))) { - //BA.debugLineNum = 1126;BA.debugLine="If reqs.IndexOf(\"gunaprod\") > -1 Then"; + //BA.debugLineNum = 1143;BA.debugLine="If reqs.IndexOf(\"gunaprod\") > -1 Then"; if (_reqs.IndexOf((Object)("gunaprod"))>-1) { - //BA.debugLineNum = 1127;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprod\"))"; + //BA.debugLineNum = 1144;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprod\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("gunaprod"))); - //BA.debugLineNum = 1128;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("216187490",BA.NumberToString(_reqs.getSize()),0); + //BA.debugLineNum = 1145;BA.debugLine="Log(reqs.Size)"; +__c.LogImpl("849610853",BA.NumberToString(_reqs.getSize()),0); }; - //BA.debugLineNum = 1130;BA.debugLine="Starter.skmt.BeginTransaction"; + //BA.debugLineNum = 1147;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); - //BA.debugLineNum = 1131;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1148;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group92 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen92 = group92.getSize() -;int index92 = 0; +final anywheresoftware.b4a.BA.IterableList group93 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen93 = group93.getSize() +;int index93 = 0; ; -for (; index92 < groupLen92;index92++){ -_records = (Object[])(group92.Get(index92)); - //BA.debugLineNum = 1132;BA.debugLine="Dim CAT_GP_ID As String = records(result.Colu"; +for (; index93 < groupLen93;index93++){ +_records = (Object[])(group93.Get(index93)); + //BA.debugLineNum = 1149;BA.debugLine="Dim CAT_GP_ID As String = records(result.Colu"; _cat_gp_id = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_ID"))))]); - //BA.debugLineNum = 1133;BA.debugLine="Dim CAT_GP_NOMBRE As String = records(result."; + //BA.debugLineNum = 1150;BA.debugLine="Dim CAT_GP_NOMBRE As String = records(result."; _cat_gp_nombre = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_NOMBRE"))))]); - //BA.debugLineNum = 1134;BA.debugLine="Dim CAT_GP_IMP1 As String = records(result.Co"; + //BA.debugLineNum = 1151;BA.debugLine="Dim CAT_GP_IMP1 As String = records(result.Co"; _cat_gp_imp1 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_IMP1"))))]); - //BA.debugLineNum = 1135;BA.debugLine="Dim CAT_GP_IMP2 As String = records(result.Co"; + //BA.debugLineNum = 1152;BA.debugLine="Dim CAT_GP_IMP2 As String = records(result.Co"; _cat_gp_imp2 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_IMP2"))))]); - //BA.debugLineNum = 1136;BA.debugLine="Dim CAT_GP_PRECIO As String = records(result."; + //BA.debugLineNum = 1153;BA.debugLine="Dim CAT_GP_PRECIO As String = records(result."; _cat_gp_precio = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_PRECIO"))))]); - //BA.debugLineNum = 1137;BA.debugLine="Dim CAT_GP_CLASIF As String = records(result."; + //BA.debugLineNum = 1154;BA.debugLine="Dim CAT_GP_CLASIF As String = records(result."; _cat_gp_clasif = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_CLASIF"))))]); - //BA.debugLineNum = 1138;BA.debugLine="Dim CAT_GP_STS As String = records(result.Col"; + //BA.debugLineNum = 1155;BA.debugLine="Dim CAT_GP_STS As String = records(result.Col"; _cat_gp_sts = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_STS"))))]); - //BA.debugLineNum = 1139;BA.debugLine="Dim CAT_GP_TIPO As String = records(result.Co"; + //BA.debugLineNum = 1156;BA.debugLine="Dim CAT_GP_TIPO As String = records(result.Co"; _cat_gp_tipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_TIPO"))))]); - //BA.debugLineNum = 1140;BA.debugLine="Dim CAT_GP_SUBTIPO As String = records(result"; + //BA.debugLineNum = 1157;BA.debugLine="Dim CAT_GP_SUBTIPO As String = records(result"; _cat_gp_subtipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_SUBTIPO"))))]); - //BA.debugLineNum = 1141;BA.debugLine="Dim CONVERSION As String = records(result.Col"; + //BA.debugLineNum = 1158;BA.debugLine="Dim CONVERSION As String = records(result.Col"; _conversion = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_CONVERSION1"))))]); - //BA.debugLineNum = 1142;BA.debugLine="Dim PRECIOCONVER As String = records(result.C"; + //BA.debugLineNum = 1159;BA.debugLine="Dim PRECIOCONVER As String = records(result.C"; _precioconver = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_PRECIO4"))))]); - //BA.debugLineNum = 1143;BA.debugLine="Dim CAT_GP_IMG() As Byte = records(result.Col"; + //BA.debugLineNum = 1160;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 = 1148;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_G"; + //BA.debugLineNum = 1165;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)})); } }; - //BA.debugLineNum = 1150;BA.debugLine="Starter.skmt.TransactionSuccessful"; + //BA.debugLineNum = 1167;BA.debugLine="Starter.skmt.TransactionSuccessful"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .TransactionSuccessful(); - //BA.debugLineNum = 1151;BA.debugLine="Starter.skmt.EndTransaction"; + //BA.debugLineNum = 1168;BA.debugLine="Starter.skmt.EndTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .EndTransaction(); - //BA.debugLineNum = 1152;BA.debugLine="Listo2=1"; + //BA.debugLineNum = 1169;BA.debugLine="Listo2=1"; _listo2 = BA.NumberToString(1); - //BA.debugLineNum = 1153;BA.debugLine="If Listo1 = 1 And Listo2 =1 And Listo3 = 1 And"; + //BA.debugLineNum = 1170;BA.debugLine="If Listo1 = 1 And Listo2 =1 And Listo3 = 1 And"; if ((_listo1).equals(BA.NumberToString(1)) && (_listo2).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1)) && (_listo4).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1154;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1171;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1155;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1172;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1156;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1173;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1157;BA.debugLine="EJECUTANDO=0"; + //BA.debugLineNum = 1174;BA.debugLine="EJECUTANDO=0"; _ejecutando = BA.NumberToString(0); }; }; }; - //BA.debugLineNum = 1162;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1179;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1163;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1180;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1164;BA.debugLine="If result.Tag = \"gunaprodp\" Then 'query tag"; + //BA.debugLineNum = 1181;BA.debugLine="If result.Tag = \"gunaprodp\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("gunaprodp"))) { - //BA.debugLineNum = 1165;BA.debugLine="If reqs.IndexOf(\"gunaprodp\") > -1 Then"; + //BA.debugLineNum = 1182;BA.debugLine="If reqs.IndexOf(\"gunaprodp\") > -1 Then"; if (_reqs.IndexOf((Object)("gunaprodp"))>-1) { - //BA.debugLineNum = 1166;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprodp\"))"; + //BA.debugLineNum = 1183;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"gunaprodp\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("gunaprodp"))); - //BA.debugLineNum = 1167;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("216187529",BA.NumberToString(_reqs.getSize()),0); + //BA.debugLineNum = 1184;BA.debugLine="Log(reqs.Size)"; +__c.LogImpl("849610892",BA.NumberToString(_reqs.getSize()),0); }; - //BA.debugLineNum = 1169;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1186;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group125 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen125 = group125.getSize() -;int index125 = 0; +final anywheresoftware.b4a.BA.IterableList group126 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen126 = group126.getSize() +;int index126 = 0; ; -for (; index125 < groupLen125;index125++){ -_records = (Object[])(group125.Get(index125)); - //BA.debugLineNum = 1170;BA.debugLine="Dim CAT_GP_ID As String = records(result.Colu"; +for (; index126 < groupLen126;index126++){ +_records = (Object[])(group126.Get(index126)); + //BA.debugLineNum = 1187;BA.debugLine="Dim CAT_GP_ID As String = records(result.Colu"; _cat_gp_id = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_ID"))))]); - //BA.debugLineNum = 1171;BA.debugLine="Dim CAT_GP_NOMBRE As String = records(result."; + //BA.debugLineNum = 1188;BA.debugLine="Dim CAT_GP_NOMBRE As String = records(result."; _cat_gp_nombre = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_NOMBRE"))))]); - //BA.debugLineNum = 1172;BA.debugLine="Dim CAT_GP_IMP1 As String = records(result.Co"; + //BA.debugLineNum = 1189;BA.debugLine="Dim CAT_GP_IMP1 As String = records(result.Co"; _cat_gp_imp1 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_IMP1"))))]); - //BA.debugLineNum = 1173;BA.debugLine="Dim CAT_GP_IMP2 As String = records(result.Co"; + //BA.debugLineNum = 1190;BA.debugLine="Dim CAT_GP_IMP2 As String = records(result.Co"; _cat_gp_imp2 = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_IMP2"))))]); - //BA.debugLineNum = 1174;BA.debugLine="Dim CAT_GP_PRECIO As String = records(result."; + //BA.debugLineNum = 1191;BA.debugLine="Dim CAT_GP_PRECIO As String = records(result."; _cat_gp_precio = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_PRECIO"))))]); - //BA.debugLineNum = 1175;BA.debugLine="Dim CAT_GP_CLASIF As String = records(result."; + //BA.debugLineNum = 1192;BA.debugLine="Dim CAT_GP_CLASIF As String = records(result."; _cat_gp_clasif = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_CLASIF"))))]); - //BA.debugLineNum = 1176;BA.debugLine="Dim CAT_GP_STS As String = records(result.Col"; + //BA.debugLineNum = 1193;BA.debugLine="Dim CAT_GP_STS As String = records(result.Col"; _cat_gp_sts = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_STS"))))]); - //BA.debugLineNum = 1177;BA.debugLine="Dim CAT_GP_TIPO As String = records(result.Co"; + //BA.debugLineNum = 1194;BA.debugLine="Dim CAT_GP_TIPO As String = records(result.Co"; _cat_gp_tipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_TIPO"))))]); - //BA.debugLineNum = 1178;BA.debugLine="Dim CAT_GP_SUBTIPO As String = records(result"; + //BA.debugLineNum = 1195;BA.debugLine="Dim CAT_GP_SUBTIPO As String = records(result"; _cat_gp_subtipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_GP_SUBTIPO"))))]); - //BA.debugLineNum = 1179;BA.debugLine="Dim CAT_GP_IMG() As Byte = records(result.Col"; + //BA.debugLineNum = 1196;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_GP_IMG"))))]); - //BA.debugLineNum = 1182;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_G"; + //BA.debugLineNum = 1199;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) 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)})); } }; - //BA.debugLineNum = 1184;BA.debugLine="Listo4=1"; + //BA.debugLineNum = 1201;BA.debugLine="Listo4=1"; _listo4 = BA.NumberToString(1); - //BA.debugLineNum = 1185;BA.debugLine="If Listo1 = 1 And Listo2 =1 And Listo3 = 1 And"; + //BA.debugLineNum = 1202;BA.debugLine="If Listo1 = 1 And Listo2 =1 And Listo3 = 1 And"; if ((_listo1).equals(BA.NumberToString(1)) && (_listo2).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1)) && (_listo4).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1186;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1203;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1187;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1204;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1188;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1205;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1189;BA.debugLine="EJECUTANDO=0"; + //BA.debugLineNum = 1206;BA.debugLine="EJECUTANDO=0"; _ejecutando = BA.NumberToString(0); }else if((_listo4).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1)) && (_inve).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1191;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1208;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1192;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1209;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1193;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1210;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1194;BA.debugLine="EJECUTANDO=0"; + //BA.debugLineNum = 1211;BA.debugLine="EJECUTANDO=0"; _ejecutando = BA.NumberToString(0); }; }; }; - //BA.debugLineNum = 1199;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1216;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1200;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1217;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1201;BA.debugLine="If result.Tag = \"detallepaq\" Then 'query tag"; + //BA.debugLineNum = 1218;BA.debugLine="If result.Tag = \"detallepaq\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("detallepaq"))) { - //BA.debugLineNum = 1202;BA.debugLine="If reqs.IndexOf(\"detallepaq\") > -1 Then"; + //BA.debugLineNum = 1219;BA.debugLine="If reqs.IndexOf(\"detallepaq\") > -1 Then"; if (_reqs.IndexOf((Object)("detallepaq"))>-1) { - //BA.debugLineNum = 1203;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"detallepaq\"))"; + //BA.debugLineNum = 1220;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"detallepaq\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("detallepaq"))); - //BA.debugLineNum = 1204;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("216187566",BA.NumberToString(_reqs.getSize()),0); + //BA.debugLineNum = 1221;BA.debugLine="Log(reqs.Size)"; +__c.LogImpl("849610929",BA.NumberToString(_reqs.getSize()),0); }; - //BA.debugLineNum = 1206;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1223;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group159 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen159 = group159.getSize() -;int index159 = 0; +final anywheresoftware.b4a.BA.IterableList group160 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen160 = group160.getSize() +;int index160 = 0; ; -for (; index159 < groupLen159;index159++){ -_records = (Object[])(group159.Get(index159)); - //BA.debugLineNum = 1207;BA.debugLine="Dim CAT_DP_ALMACEN As String = records(resul"; +for (; index160 < groupLen160;index160++){ +_records = (Object[])(group160.Get(index160)); + //BA.debugLineNum = 1224;BA.debugLine="Dim CAT_DP_ALMACEN As String = records(resul"; _cat_dp_almacen = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_ALMACEN"))))]); - //BA.debugLineNum = 1208;BA.debugLine="Dim CAT_DP_ID As String = records(result.Colu"; + //BA.debugLineNum = 1225;BA.debugLine="Dim CAT_DP_ID As String = records(result.Colu"; _cat_dp_id = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_ID"))))]); - //BA.debugLineNum = 1209;BA.debugLine="Dim CAT_DP_IDPROD As String = records(result."; + //BA.debugLineNum = 1226;BA.debugLine="Dim CAT_DP_IDPROD As String = records(result."; _cat_dp_idprod = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_IDPROD"))))]); - //BA.debugLineNum = 1210;BA.debugLine="Dim CAT_DP_TIPO As String = records(result.Co"; + //BA.debugLineNum = 1227;BA.debugLine="Dim CAT_DP_TIPO As String = records(result.Co"; _cat_dp_tipo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_TIPO"))))]); - //BA.debugLineNum = 1211;BA.debugLine="Dim CAT_DP_PZAS As String = records(result.Co"; + //BA.debugLineNum = 1228;BA.debugLine="Dim CAT_DP_PZAS As String = records(result.Co"; _cat_dp_pzas = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_PZAS"))))]); - //BA.debugLineNum = 1212;BA.debugLine="Dim CAT_DP_USUARIO As String = records(resul"; + //BA.debugLineNum = 1229;BA.debugLine="Dim CAT_DP_USUARIO As String = records(resul"; _cat_dp_usuario = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_USUARIO"))))]); - //BA.debugLineNum = 1213;BA.debugLine="Dim CAT_DP_FECHA As String = records(result.C"; + //BA.debugLineNum = 1230;BA.debugLine="Dim CAT_DP_FECHA As String = records(result.C"; _cat_dp_fecha = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_FECHA"))))]); - //BA.debugLineNum = 1214;BA.debugLine="Dim CAT_DP_REGALO As String = records(result"; + //BA.debugLineNum = 1231;BA.debugLine="Dim CAT_DP_REGALO As String = records(result"; _cat_dp_regalo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_REGALO"))))]); - //BA.debugLineNum = 1215;BA.debugLine="Dim CAT_DP_CLASIF As String = records(result"; + //BA.debugLineNum = 1232;BA.debugLine="Dim CAT_DP_CLASIF As String = records(result"; _cat_dp_clasif = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_CLASIF"))))]); - //BA.debugLineNum = 1216;BA.debugLine="Dim CAT_DP_PRECIO As String = records(result."; + //BA.debugLineNum = 1233;BA.debugLine="Dim CAT_DP_PRECIO As String = records(result."; _cat_dp_precio = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_PRECIO"))))]); - //BA.debugLineNum = 1217;BA.debugLine="Dim CAT_DP_PRECIO_SIMPTOS As String = records"; + //BA.debugLineNum = 1234;BA.debugLine="Dim CAT_DP_PRECIO_SIMPTOS As String = records"; _cat_dp_precio_simptos = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_DP_PRECIO_SIMPTOS"))))]); - //BA.debugLineNum = 1219;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_D"; + //BA.debugLineNum = 1236;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_D"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CAT_DETALLES_PAQ(CAT_DP_ALMACEN,CAT_DP_ID,CAT_DP_IDPROD,CAT_DP_TIPO,CAT_DP_PZAS,CAT_DP_USUARIO,CAT_DP_FECHA,CAT_DP_REGALO,CAT_DP_CLASIF,CAT_DP_PRECIO,CAT_DP_PRECIO_SIMPTOS) VALUES (?,?,?,?,?,?,?,?,?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_cat_dp_almacen),(Object)(_cat_dp_id),(Object)(_cat_dp_idprod),(Object)(_cat_dp_tipo),(Object)(_cat_dp_pzas),(Object)(_cat_dp_usuario),(Object)(_cat_dp_fecha),(Object)(_cat_dp_regalo),(Object)(_cat_dp_clasif),(Object)(_cat_dp_precio),(Object)(_cat_dp_precio_simptos)})); } }; - //BA.debugLineNum = 1221;BA.debugLine="Listo3 =1"; + //BA.debugLineNum = 1238;BA.debugLine="Listo3 =1"; _listo3 = BA.NumberToString(1); - //BA.debugLineNum = 1222;BA.debugLine="If Listo1 = 1 And Listo2 = 1 And Listo3 = 1 An"; + //BA.debugLineNum = 1239;BA.debugLine="If Listo1 = 1 And Listo2 = 1 And Listo3 = 1 An"; if ((_listo1).equals(BA.NumberToString(1)) && (_listo2).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1)) && (_listo4).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1223;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1240;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1224;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1241;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1225;BA.debugLine="img2.Visible=False"; + //BA.debugLineNum = 1242;BA.debugLine="img2.Visible=False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1226;BA.debugLine="EJECUTANDO = 0"; + //BA.debugLineNum = 1243;BA.debugLine="EJECUTANDO = 0"; _ejecutando = BA.NumberToString(0); }else if((_listo4).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1)) && (_inve).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1228;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1245;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1229;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1246;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1230;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1247;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1231;BA.debugLine="EJECUTANDO = 0"; + //BA.debugLineNum = 1248;BA.debugLine="EJECUTANDO = 0"; _ejecutando = BA.NumberToString(0); }; }; }; - //BA.debugLineNum = 1236;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1253;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1237;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1254;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1238;BA.debugLine="If result.Tag = \"estatus\" Then 'query tag"; + //BA.debugLineNum = 1255;BA.debugLine="If result.Tag = \"estatus\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("estatus"))) { - //BA.debugLineNum = 1239;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1256;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group190 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen190 = group190.getSize() -;int index190 = 0; +final anywheresoftware.b4a.BA.IterableList group191 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen191 = group191.getSize() +;int index191 = 0; ; -for (; index190 < groupLen190;index190++){ -_records = (Object[])(group190.Get(index190)); - //BA.debugLineNum = 1240;BA.debugLine="Dim hvd_estatus As String = records(result.Co"; +for (; index191 < groupLen191;index191++){ +_records = (Object[])(group191.Get(index191)); + //BA.debugLineNum = 1257;BA.debugLine="Dim hvd_estatus As String = records(result.Co"; _hvd_estatus = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_ESTATUS"))))]); - //BA.debugLineNum = 1241;BA.debugLine="If hvd_estatus = \"Liquidado\" Then"; + //BA.debugLineNum = 1258;BA.debugLine="If hvd_estatus = \"Liquidado\" Then"; if ((_hvd_estatus).equals("Liquidado")) { - //BA.debugLineNum = 1243;BA.debugLine="MsgboxAsync(\"La venta ya fue liquidada\",\"Ate"; + //BA.debugLineNum = 1260;BA.debugLine="MsgboxAsync(\"La venta ya fue liquidada\",\"Ate"; __c.MsgboxAsync(BA.ObjectToCharSequence("La venta ya fue liquidada"),BA.ObjectToCharSequence("Atención"),ba); }else { - //BA.debugLineNum = 1245;BA.debugLine="envioinfo"; + //BA.debugLineNum = 1262;BA.debugLine="envioinfo"; _envioinfo(); }; } }; }; }; - //BA.debugLineNum = 1251;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1268;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1252;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1269;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1253;BA.debugLine="If result.Tag = \"punteo\" Then 'query tag"; + //BA.debugLineNum = 1270;BA.debugLine="If result.Tag = \"punteo\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("punteo"))) { - //BA.debugLineNum = 1254;BA.debugLine="If reqs.IndexOf(\"punteo\") > -1 Then"; + //BA.debugLineNum = 1271;BA.debugLine="If reqs.IndexOf(\"punteo\") > -1 Then"; if (_reqs.IndexOf((Object)("punteo"))>-1) { - //BA.debugLineNum = 1255;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"punteo\"))"; + //BA.debugLineNum = 1272;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"punteo\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("punteo"))); }; - //BA.debugLineNum = 1258;BA.debugLine="If reqs.IndexOf(\"punteo\") > 0 Then"; + //BA.debugLineNum = 1275;BA.debugLine="If reqs.IndexOf(\"punteo\") > 0 Then"; if (_reqs.IndexOf((Object)("punteo"))>0) { - //BA.debugLineNum = 1259;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"punteo\"))"; + //BA.debugLineNum = 1276;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"punteo\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("punteo"))); - //BA.debugLineNum = 1260;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("216187622",BA.NumberToString(_reqs.getSize()),0); + //BA.debugLineNum = 1277;BA.debugLine="Log(reqs.Size)"; +__c.LogImpl("849610985",BA.NumberToString(_reqs.getSize()),0); }; - //BA.debugLineNum = 1262;BA.debugLine="Starter.skmt.BeginTransaction"; + //BA.debugLineNum = 1279;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); - //BA.debugLineNum = 1263;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1280;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group211 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen211 = group211.getSize() -;int index211 = 0; +final anywheresoftware.b4a.BA.IterableList group212 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen212 = group212.getSize() +;int index212 = 0; ; -for (; index211 < groupLen211;index211++){ -_records = (Object[])(group211.Get(index211)); - //BA.debugLineNum = 1264;BA.debugLine="Dim HV_CLIENTE As String = records(result.Col"; +for (; index212 < groupLen212;index212++){ +_records = (Object[])(group212.Get(index212)); + //BA.debugLineNum = 1281;BA.debugLine="Dim HV_CLIENTE As String = records(result.Col"; _hv_cliente = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HV_CLIENTE"))))]); - //BA.debugLineNum = 1265;BA.debugLine="Dim HV_LONG As String = records(result.Column"; + //BA.debugLineNum = 1282;BA.debugLine="Dim HV_LONG As String = records(result.Column"; _hv_long = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HV_LONG"))))]); - //BA.debugLineNum = 1266;BA.debugLine="Dim HV_LAT As String = records(result.Columns"; + //BA.debugLineNum = 1283;BA.debugLine="Dim HV_LAT As String = records(result.Columns"; _hv_lat = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HV_LAT"))))]); - //BA.debugLineNum = 1268;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PUNTE"; + //BA.debugLineNum = 1285;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PUNTE"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO PUNTEO_GPS(HV_CLIENTE, HV_LONG, HV_LAT) VALUES (?,?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_hv_cliente),(Object)(_hv_long),(Object)(_hv_lat)})); } }; - //BA.debugLineNum = 1270;BA.debugLine="Starter.skmt.TransactionSuccessful"; + //BA.debugLineNum = 1287;BA.debugLine="Starter.skmt.TransactionSuccessful"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .TransactionSuccessful(); - //BA.debugLineNum = 1271;BA.debugLine="Starter.skmt.EndTransaction"; + //BA.debugLineNum = 1288;BA.debugLine="Starter.skmt.EndTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .EndTransaction(); }; }; - //BA.debugLineNum = 1275;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1292;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1276;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1293;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1277;BA.debugLine="If result.Tag = \"hist_datos\" Then 'query tag"; + //BA.debugLineNum = 1294;BA.debugLine="If result.Tag = \"hist_datos\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("hist_datos"))) { - //BA.debugLineNum = 1278;BA.debugLine="If reqs.IndexOf(\"hist_datos\") > -1 Then"; + //BA.debugLineNum = 1295;BA.debugLine="If reqs.IndexOf(\"hist_datos\") > -1 Then"; if (_reqs.IndexOf((Object)("hist_datos"))>-1) { - //BA.debugLineNum = 1279;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"hist_datos\"))"; + //BA.debugLineNum = 1296;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"hist_datos\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("hist_datos"))); }; - //BA.debugLineNum = 1282;BA.debugLine="Log(l_ruta.text)"; -__c.LogImpl("216187644",_l_ruta.getText(),0); - //BA.debugLineNum = 1283;BA.debugLine="Log($\"******** Insertamos HV - ${result.Rows."; -__c.LogImpl("216187645",("******** Insertamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); - //BA.debugLineNum = 1284;BA.debugLine="Starter.skmt.BeginTransaction"; + //BA.debugLineNum = 1299;BA.debugLine="Log(l_ruta.text)"; +__c.LogImpl("849611007",_l_ruta.getText(),0); + //BA.debugLineNum = 1300;BA.debugLine="Log($\"******** Insertamos HV - ${result.Rows."; +__c.LogImpl("849611008",("******** Insertamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); + //BA.debugLineNum = 1301;BA.debugLine="Starter.skmt.BeginTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .BeginTransaction(); - //BA.debugLineNum = 1285;BA.debugLine="Dim consecutivo As Int= 0"; + //BA.debugLineNum = 1302;BA.debugLine="Dim consecutivo As Int= 0"; _consecutivo = (int) (0); - //BA.debugLineNum = 1286;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1303;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group231 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen231 = group231.getSize() -;int index231 = 0; +final anywheresoftware.b4a.BA.IterableList group232 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen232 = group232.getSize() +;int index232 = 0; ; -for (; index231 < groupLen231;index231++){ -_records = (Object[])(group231.Get(index231)); - //BA.debugLineNum = 1287;BA.debugLine="Dim HVD_CLIENTE As String = records(result.Co"; +for (; index232 < groupLen232;index232++){ +_records = (Object[])(group232.Get(index232)); + //BA.debugLineNum = 1304;BA.debugLine="Dim HVD_CLIENTE As String = records(result.Co"; _hvd_cliente = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_CLIENTE"))))]); - //BA.debugLineNum = 1288;BA.debugLine="Dim HVD_PRONOMBRE As String = records(result."; + //BA.debugLineNum = 1305;BA.debugLine="Dim HVD_PRONOMBRE As String = records(result."; _hvd_pronombre = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_PRONOMBRE"))))]); - //BA.debugLineNum = 1289;BA.debugLine="Dim HVD_CANT As String = records(result.Colum"; + //BA.debugLineNum = 1306;BA.debugLine="Dim HVD_CANT As String = records(result.Colum"; _hvd_cant = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_CANT"))))]); - //BA.debugLineNum = 1290;BA.debugLine="Dim HVD_COSTO_TOT As String = records(result."; + //BA.debugLineNum = 1307;BA.debugLine="Dim HVD_COSTO_TOT As String = records(result."; _hvd_costo_tot = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_COSTO_TOT"))))]); - //BA.debugLineNum = 1291;BA.debugLine="Dim HVD_FECHA As String = records(result.Colu"; + //BA.debugLineNum = 1308;BA.debugLine="Dim HVD_FECHA As String = records(result.Colu"; _hvd_fecha = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_FECHA"))))]); - //BA.debugLineNum = 1292;BA.debugLine="Dim HVD_CODPROMO As String = records(result.C"; + //BA.debugLineNum = 1309;BA.debugLine="Dim HVD_CODPROMO As String = records(result.C"; _hvd_codpromo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_CODPROMO"))))]); - //BA.debugLineNum = 1293;BA.debugLine="Dim HVD_PROID As String = records(result.Colu"; + //BA.debugLineNum = 1310;BA.debugLine="Dim HVD_PROID As String = records(result.Colu"; _hvd_proid = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_PROID"))))]); - //BA.debugLineNum = 1294;BA.debugLine="Dim HVD_NUM_TICKET As String = records(result"; + //BA.debugLineNum = 1311;BA.debugLine="Dim HVD_NUM_TICKET As String = records(result"; _hvd_num_ticket = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_NUM_TICKET"))))]); - //BA.debugLineNum = 1295;BA.debugLine="Dim HVD_NUM_REGISTRO As String = records(resu"; + //BA.debugLineNum = 1312;BA.debugLine="Dim HVD_NUM_REGISTRO As String = records(resu"; _hvd_num_registro = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_NUM_REGISTRO"))))]); - //BA.debugLineNum = 1296;BA.debugLine="Dim HVD_RECHAZO As String = records(result.Co"; + //BA.debugLineNum = 1313;BA.debugLine="Dim HVD_RECHAZO As String = records(result.Co"; _hvd_rechazo = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_RECHAZO"))))]); - //BA.debugLineNum = 1297;BA.debugLine="Dim HVD_PLACA As String = records(result.Colu"; + //BA.debugLineNum = 1314;BA.debugLine="Dim HVD_PLACA As String = records(result.Colu"; _hvd_placa = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_PLACA"))))]); - //BA.debugLineNum = 1298;BA.debugLine="Dim bcajas As String = records(result.Columns"; + //BA.debugLineNum = 1315;BA.debugLine="Dim bcajas As String = records(result.Columns"; _bcajas = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_BCAJAS"))))]); - //BA.debugLineNum = 1299;BA.debugLine="Dim cantc As String = records(result.Columns."; + //BA.debugLineNum = 1316;BA.debugLine="Dim cantc As String = records(result.Columns."; _cantc = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("HVD_CANTC"))))]); - //BA.debugLineNum = 1301;BA.debugLine="consecutivo = consecutivo +1"; + //BA.debugLineNum = 1318;BA.debugLine="consecutivo = consecutivo +1"; _consecutivo = (int) (_consecutivo+1); - //BA.debugLineNum = 1302;BA.debugLine="If l_ruta.Text = \"0\" Then 'Si no hay ruta car"; + //BA.debugLineNum = 1319;BA.debugLine="If l_ruta.Text = \"0\" Then 'Si no hay ruta car"; if ((_l_ruta.getText()).equals("0")) { - //BA.debugLineNum = 1303;BA.debugLine="Log(\"No hay ruta, guardamos todos\")"; -__c.LogImpl("216187665","No hay ruta, guardamos todos",0); - //BA.debugLineNum = 1304;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIST"; + //BA.debugLineNum = 1320;BA.debugLine="Log(\"No hay ruta, guardamos todos\")"; +__c.LogImpl("849611028","No hay ruta, guardamos todos",0); + //BA.debugLineNum = 1321;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, PLACA,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)(_hvd_placa),(Object)(_bcajas),(Object)(_cantc),(Object)(_consecutivo),(Object)(_bcajas),(Object)(_cantc)})); - //BA.debugLineNum = 1305;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIST"; + //BA.debugLineNum = 1322;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIST"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO HIST_VENTAS2(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) 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)})); }else { - //BA.debugLineNum = 1308;BA.debugLine="Private tc As Cursor = Starter.skmt.ExecQuer"; + //BA.debugLineNum = 1325;BA.debugLine="Private tc As Cursor = Starter.skmt.ExecQuer"; _tc = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); _tc = (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_CLIENTE from HIST_VENTAS where HVD_CLIENTE = '"+__c.SmartStringFormatter("",(Object)(_hvd_cliente))+"' and HVD_PROID = '"+__c.SmartStringFormatter("",(Object)(_hvd_proid))+"'")))); - //BA.debugLineNum = 1309;BA.debugLine="If tc.RowCount = 0 Then"; + //BA.debugLineNum = 1326;BA.debugLine="If tc.RowCount = 0 Then"; if (_tc.getRowCount()==0) { - //BA.debugLineNum = 1310;BA.debugLine="Log($\"Guardamos ${HVD_CLIENTE}\"$)"; -__c.LogImpl("216187672",("Guardamos "+__c.SmartStringFormatter("",(Object)(_hvd_cliente))+""),0); - //BA.debugLineNum = 1311;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIS"; + //BA.debugLineNum = 1327;BA.debugLine="Log($\"Guardamos ${HVD_CLIENTE}\"$)"; +__c.LogImpl("849611035",("Guardamos "+__c.SmartStringFormatter("",(Object)(_hvd_cliente))+""),0); + //BA.debugLineNum = 1328;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, PLACA,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)(_hvd_placa),(Object)(_bcajas),(Object)(_cantc),(Object)(_consecutivo),(Object)(_bcajas),(Object)(_cantc)})); - //BA.debugLineNum = 1312;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIS"; + //BA.debugLineNum = 1329;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO HIS"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO HIST_VENTAS2(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) 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)})); }; }; } }; - //BA.debugLineNum = 1316;BA.debugLine="Starter.skmt.TransactionSuccessful"; + //BA.debugLineNum = 1333;BA.debugLine="Starter.skmt.TransactionSuccessful"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .TransactionSuccessful(); - //BA.debugLineNum = 1317;BA.debugLine="Starter.skmt.EndTransaction"; + //BA.debugLineNum = 1334;BA.debugLine="Starter.skmt.EndTransaction"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .EndTransaction(); - //BA.debugLineNum = 1318;BA.debugLine="Log($\"******** Terminamos HV - ${result.Rows."; -__c.LogImpl("216187680",("******** Terminamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); - //BA.debugLineNum = 1332;BA.debugLine="Listo3 =1"; + //BA.debugLineNum = 1335;BA.debugLine="Log($\"******** Terminamos HV - ${result.Rows."; +__c.LogImpl("849611043",("******** Terminamos HV - "+__c.SmartStringFormatter("",(Object)(_result.Rows /*anywheresoftware.b4a.objects.collections.List*/ .getSize()))+""),0); + //BA.debugLineNum = 1349;BA.debugLine="Listo3 =1"; _listo3 = BA.NumberToString(1); - //BA.debugLineNum = 1333;BA.debugLine="If Listo1 = 1 And Listo3 = 1 Then"; + //BA.debugLineNum = 1350;BA.debugLine="If Listo1 = 1 And Listo3 = 1 Then"; if ((_listo1).equals(BA.NumberToString(1)) && (_listo3).equals(BA.NumberToString(1))) { - //BA.debugLineNum = 1334;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; + //BA.debugLineNum = 1351;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); - //BA.debugLineNum = 1335;BA.debugLine="B4XPage_Appear"; + //BA.debugLineNum = 1352;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); - //BA.debugLineNum = 1336;BA.debugLine="img2.Visible = False"; + //BA.debugLineNum = 1353;BA.debugLine="img2.Visible = False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1337;BA.debugLine="EJECUTANDO = 0"; + //BA.debugLineNum = 1354;BA.debugLine="EJECUTANDO = 0"; _ejecutando = BA.NumberToString(0); }; }; }; - //BA.debugLineNum = 1342;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1359;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1343;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1360;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1344;BA.debugLine="If result.Tag = \"variables\" Then 'query tag"; + //BA.debugLineNum = 1361;BA.debugLine="If result.Tag = \"variables\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("variables"))) { - //BA.debugLineNum = 1345;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1362;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group274 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen274 = group274.getSize() -;int index274 = 0; +final anywheresoftware.b4a.BA.IterableList group275 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen275 = group275.getSize() +;int index275 = 0; ; -for (; index274 < groupLen274;index274++){ -_records = (Object[])(group274.Get(index274)); - //BA.debugLineNum = 1346;BA.debugLine="Dim Cat_Va_Descripcion As String = records(re"; +for (; index275 < groupLen275;index275++){ +_records = (Object[])(group275.Get(index275)); + //BA.debugLineNum = 1363;BA.debugLine="Dim Cat_Va_Descripcion As String = records(re"; _cat_va_descripcion = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_VA_DESCRIPCION"))))]); - //BA.debugLineNum = 1347;BA.debugLine="Dim Cat_Va_Valor As String = records(result.C"; + //BA.debugLineNum = 1364;BA.debugLine="Dim Cat_Va_Valor As String = records(result.C"; _cat_va_valor = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_VA_VALOR"))))]); - //BA.debugLineNum = 1349;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_V"; + //BA.debugLineNum = 1366;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_V"; _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)(_cat_va_descripcion),(Object)(_cat_va_valor)})); } }; }; }; - //BA.debugLineNum = 1355;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1372;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1356;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1373;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1357;BA.debugLine="If result.Tag = \"PAGARES\" Then 'query tag"; + //BA.debugLineNum = 1374;BA.debugLine="If result.Tag = \"PAGARES\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("PAGARES"))) { - //BA.debugLineNum = 1358;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1375;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group284 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen284 = group284.getSize() -;int index284 = 0; +final anywheresoftware.b4a.BA.IterableList group285 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen285 = group285.getSize() +;int index285 = 0; ; -for (; index284 < groupLen284;index284++){ -_records = (Object[])(group284.Get(index284)); - //BA.debugLineNum = 1360;BA.debugLine="Dim TMP_MONTO_PAGARE As String = records(resu"; +for (; index285 < groupLen285;index285++){ +_records = (Object[])(group285.Get(index285)); + //BA.debugLineNum = 1377;BA.debugLine="Dim TMP_MONTO_PAGARE As String = records(resu"; _tmp_monto_pagare = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("TMP_MONTO_PAGARE"))))]); - //BA.debugLineNum = 1361;BA.debugLine="Dim TMP_CLIENTE As String = records(result.Co"; + //BA.debugLineNum = 1378;BA.debugLine="Dim TMP_CLIENTE As String = records(result.Co"; _tmp_cliente = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("TMP_CLIENTE"))))]); - //BA.debugLineNum = 1363;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PAGAR"; + //BA.debugLineNum = 1380;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO PAGAR"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO PAGARES(TMP_MONTO_PAGARE, TMP_CLIENTE) VALUES (?,?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_tmp_monto_pagare),(Object)(_tmp_cliente)})); } -}; - }; - }; - //BA.debugLineNum = 1368;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; -if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1369;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; -_result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1370;BA.debugLine="If result.Tag = \"valida_pedido\" Then 'query tag"; -if ((_result.Tag /*Object*/ ).equals((Object)("valida_pedido"))) { - //BA.debugLineNum = 1371;BA.debugLine="For Each records() As Object In result.Rows"; -{ -final anywheresoftware.b4a.BA.IterableList group294 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen294 = group294.getSize() -;int index294 = 0; -; -for (; index294 < groupLen294;index294++){ -_records = (Object[])(group294.Get(index294)); - //BA.debugLineNum = 1372;BA.debugLine="Dim CUANTOSP As Int = records(result.Columns."; -_cuantosp = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CUANTOSP"))))])); - //BA.debugLineNum = 1373;BA.debugLine="If cuantos_pedido = CUANTOSP Then"; -if ((_cuantos_pedido).equals(BA.NumberToString(_cuantosp))) { - //BA.debugLineNum = 1375;BA.debugLine="datos_iguales = \"ok\""; -_datos_iguales = "ok"; - }else { - //BA.debugLineNum = 1377;BA.debugLine="ToastMessageShow(\"No se cargo bien la info P"; -__c.ToastMessageShow(BA.ObjectToCharSequence("No se cargo bien la info P. Sync Nuevamente"+BA.NumberToString(_cuantosp)+" "+_cuantos_pedido),__c.True); - }; - } }; }; }; @@ -3164,416 +3170,444 @@ __c.ToastMessageShow(BA.ObjectToCharSequence("No se cargo bien la info P. Sync N if ((_job._jobname /*String*/ ).equals("DBRequest")) { //BA.debugLineNum = 1386;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1387;BA.debugLine="If result.Tag = \"valida_pedidoc\" Then 'query ta"; -if ((_result.Tag /*Object*/ ).equals((Object)("valida_pedidoc"))) { + //BA.debugLineNum = 1387;BA.debugLine="If result.Tag = \"valida_pedido\" Then 'query tag"; +if ((_result.Tag /*Object*/ ).equals((Object)("valida_pedido"))) { //BA.debugLineNum = 1388;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group307 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen307 = group307.getSize() -;int index307 = 0; +final anywheresoftware.b4a.BA.IterableList group295 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen295 = group295.getSize() +;int index295 = 0; ; -for (; index307 < groupLen307;index307++){ -_records = (Object[])(group307.Get(index307)); - //BA.debugLineNum = 1389;BA.debugLine="Dim CUANTOSC As Int = records(result.Columns."; -_cuantosc = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CUANTOSC"))))])); - //BA.debugLineNum = 1390;BA.debugLine="If cuantos_pedidosc = CUANTOSC Then"; -if ((_cuantos_pedidosc).equals(BA.NumberToString(_cuantosc))) { +for (; index295 < groupLen295;index295++){ +_records = (Object[])(group295.Get(index295)); + //BA.debugLineNum = 1389;BA.debugLine="Dim CUANTOSP As Int = records(result.Columns."; +_cuantosp = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CUANTOSP"))))])); + //BA.debugLineNum = 1390;BA.debugLine="If cuantos_pedido = CUANTOSP Then"; +if ((_cuantos_pedido).equals(BA.NumberToString(_cuantosp))) { //BA.debugLineNum = 1392;BA.debugLine="datos_iguales = \"ok\""; _datos_iguales = "ok"; }else { - //BA.debugLineNum = 1394;BA.debugLine="ToastMessageShow(\"No se cargo bien la info C"; + //BA.debugLineNum = 1394;BA.debugLine="ToastMessageShow(\"No se cargo bien la info P"; +__c.ToastMessageShow(BA.ObjectToCharSequence("No se cargo bien la info P. Sync Nuevamente"+BA.NumberToString(_cuantosp)+" "+_cuantos_pedido),__c.True); + }; + } +}; + }; + }; + //BA.debugLineNum = 1402;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; +if ((_job._jobname /*String*/ ).equals("DBRequest")) { + //BA.debugLineNum = 1403;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; +_result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); + //BA.debugLineNum = 1404;BA.debugLine="If result.Tag = \"valida_pedidoc\" Then 'query ta"; +if ((_result.Tag /*Object*/ ).equals((Object)("valida_pedidoc"))) { + //BA.debugLineNum = 1405;BA.debugLine="For Each records() As Object In result.Rows"; +{ +final anywheresoftware.b4a.BA.IterableList group308 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen308 = group308.getSize() +;int index308 = 0; +; +for (; index308 < groupLen308;index308++){ +_records = (Object[])(group308.Get(index308)); + //BA.debugLineNum = 1406;BA.debugLine="Dim CUANTOSC As Int = records(result.Columns."; +_cuantosc = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CUANTOSC"))))])); + //BA.debugLineNum = 1407;BA.debugLine="If cuantos_pedidosc = CUANTOSC Then"; +if ((_cuantos_pedidosc).equals(BA.NumberToString(_cuantosc))) { + //BA.debugLineNum = 1409;BA.debugLine="datos_iguales = \"ok\""; +_datos_iguales = "ok"; + }else { + //BA.debugLineNum = 1411;BA.debugLine="ToastMessageShow(\"No se cargo bien la info C"; __c.ToastMessageShow(BA.ObjectToCharSequence("No se cargo bien la info C. Sync Nuevamente"+BA.NumberToString(_cuantosc)+" "+_cuantos_pedidosc),__c.True); }; } }; }; }; - //BA.debugLineNum = 1400;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1417;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1401;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1418;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1402;BA.debugLine="If result.Tag = \"valida_noventa\" Then 'query ta"; + //BA.debugLineNum = 1419;BA.debugLine="If result.Tag = \"valida_noventa\" Then 'query ta"; if ((_result.Tag /*Object*/ ).equals((Object)("valida_noventa"))) { - //BA.debugLineNum = 1403;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1420;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group320 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen320 = group320.getSize() -;int index320 = 0; +final anywheresoftware.b4a.BA.IterableList group321 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen321 = group321.getSize() +;int index321 = 0; ; -for (; index320 < groupLen320;index320++){ -_records = (Object[])(group320.Get(index320)); - //BA.debugLineNum = 1404;BA.debugLine="Dim CUANTOSN As Int = records(result.Columns."; +for (; index321 < groupLen321;index321++){ +_records = (Object[])(group321.Get(index321)); + //BA.debugLineNum = 1421;BA.debugLine="Dim CUANTOSN As Int = records(result.Columns."; _cuantosn = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CUANTOSN"))))])); - //BA.debugLineNum = 1405;BA.debugLine="If cuantos_noventa = CUANTOSN Then"; + //BA.debugLineNum = 1422;BA.debugLine="If cuantos_noventa = CUANTOSN Then"; if ((_cuantos_noventa).equals(BA.NumberToString(_cuantosn))) { - //BA.debugLineNum = 1407;BA.debugLine="datos_iguales = \"ok\""; + //BA.debugLineNum = 1424;BA.debugLine="datos_iguales = \"ok\""; _datos_iguales = "ok"; }else { - //BA.debugLineNum = 1409;BA.debugLine="ToastMessageShow(\"No se cargo bien la info N"; + //BA.debugLineNum = 1426;BA.debugLine="ToastMessageShow(\"No se cargo bien la info N"; __c.ToastMessageShow(BA.ObjectToCharSequence("No se cargo bien la info N. Sync Nuevamente"+BA.NumberToString(_cuantosn)+" "+_cuantos_noventa),__c.True); }; } }; }; }; - //BA.debugLineNum = 1415;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1432;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1416;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1433;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1417;BA.debugLine="If result.Tag = \"insert_pedido\" Then 'query tag"; + //BA.debugLineNum = 1434;BA.debugLine="If result.Tag = \"insert_pedido\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("insert_pedido"))) { - //BA.debugLineNum = 1418;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True)"; + //BA.debugLineNum = 1435;BA.debugLine="ToastMessageShow(\"Datos Actualizados.\" , True)"; __c.ToastMessageShow(BA.ObjectToCharSequence("Datos Actualizados."),__c.True); }; }; - //BA.debugLineNum = 1422;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1439;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1423;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1440;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1424;BA.debugLine="If result.Tag = \"version\" Then 'query tag"; + //BA.debugLineNum = 1441;BA.debugLine="If result.Tag = \"version\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("version"))) { - //BA.debugLineNum = 1425;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1442;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group339 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen339 = group339.getSize() -;int index339 = 0; +final anywheresoftware.b4a.BA.IterableList group340 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen340 = group340.getSize() +;int index340 = 0; ; -for (; index339 < groupLen339;index339++){ -_records = (Object[])(group339.Get(index339)); - //BA.debugLineNum = 1426;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from VERSIO"; +for (; index340 < groupLen340;index340++){ +_records = (Object[])(group340.Get(index340)); + //BA.debugLineNum = 1443;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from VERSIO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from VERSION"); - //BA.debugLineNum = 1427;BA.debugLine="Dim CAT_VE_VERSION As String = records(result"; + //BA.debugLineNum = 1444;BA.debugLine="Dim CAT_VE_VERSION As String = records(result"; _cat_ve_version = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_VE_VERSION"))))]); - //BA.debugLineNum = 1429;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO VERSI"; + //BA.debugLineNum = 1446;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO VERSI"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO VERSION(NOVERSION) VALUES (?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_cat_ve_version)})); } }; }; }; - //BA.debugLineNum = 1434;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1451;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1435;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1452;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1436;BA.debugLine="If result.Tag = \"count_cli\" Then 'query tag"; + //BA.debugLineNum = 1453;BA.debugLine="If result.Tag = \"count_cli\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("count_cli"))) { - //BA.debugLineNum = 1437;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1454;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group349 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen349 = group349.getSize() -;int index349 = 0; +final anywheresoftware.b4a.BA.IterableList group350 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen350 = group350.getSize() +;int index350 = 0; ; -for (; index349 < groupLen349;index349++){ -_records = (Object[])(group349.Get(index349)); - //BA.debugLineNum = 1438;BA.debugLine="COUNT_CLIE = records(result.Columns.Get(\"COUN"; +for (; index350 < groupLen350;index350++){ +_records = (Object[])(group350.Get(index350)); + //BA.debugLineNum = 1455;BA.debugLine="COUNT_CLIE = records(result.Columns.Get(\"COUN"; _count_clie = (int)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("COUNT_CLIE"))))])); } }; }; }; - //BA.debugLineNum = 1443;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1460;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1444;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1461;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1445;BA.debugLine="If result.Tag = \"ruta\" Then 'query tag"; + //BA.debugLineNum = 1462;BA.debugLine="If result.Tag = \"ruta\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("ruta"))) { - //BA.debugLineNum = 1446;BA.debugLine="If reqs.IndexOf(\"ruta\") > -1 Then"; + //BA.debugLineNum = 1463;BA.debugLine="If reqs.IndexOf(\"ruta\") > -1 Then"; if (_reqs.IndexOf((Object)("ruta"))>-1) { - //BA.debugLineNum = 1447;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"ruta\"))"; + //BA.debugLineNum = 1464;BA.debugLine="reqs.RemoveAt(reqs.IndexOf(\"ruta\"))"; _reqs.RemoveAt(_reqs.IndexOf((Object)("ruta"))); - //BA.debugLineNum = 1448;BA.debugLine="Log(reqs.Size)"; -__c.LogImpl("216187810",BA.NumberToString(_reqs.getSize()),0); + //BA.debugLineNum = 1465;BA.debugLine="Log(reqs.Size)"; +__c.LogImpl("849611173",BA.NumberToString(_reqs.getSize()),0); }; - //BA.debugLineNum = 1450;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1467;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group361 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen361 = group361.getSize() -;int index361 = 0; +final anywheresoftware.b4a.BA.IterableList group362 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen362 = group362.getSize() +;int index362 = 0; ; -for (; index361 < groupLen361;index361++){ -_records = (Object[])(group361.Get(index361)); - //BA.debugLineNum = 1451;BA.debugLine="Dim VALIDO As String = records(result.Columns"; +for (; index362 < groupLen362;index362++){ +_records = (Object[])(group362.Get(index362)); + //BA.debugLineNum = 1468;BA.debugLine="Dim VALIDO As String = records(result.Columns"; _valido = BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("VALIDO"))))]); - //BA.debugLineNum = 1453;BA.debugLine="If VALIDO = \"OK\" Then"; + //BA.debugLineNum = 1470;BA.debugLine="If VALIDO = \"OK\" Then"; if ((_valido).equals("OK")) { - //BA.debugLineNum = 1454;BA.debugLine="If l_ctast.Text = \"0\" Then"; + //BA.debugLineNum = 1471;BA.debugLine="If l_ctast.Text = \"0\" Then"; if ((_l_ctast.getText()).equals("0")) { - //BA.debugLineNum = 1455;BA.debugLine="Subir.Visible = True"; + //BA.debugLineNum = 1472;BA.debugLine="Subir.Visible = True"; _subir.setVisible(__c.True); }else if((_l_ctast.getText()).equals("0") == false) { - //BA.debugLineNum = 1457;BA.debugLine="Subir.Visible = False"; + //BA.debugLineNum = 1474;BA.debugLine="Subir.Visible = False"; _subir.setVisible(__c.False); }; - //BA.debugLineNum = 1459;BA.debugLine="cargar.Visible = True"; + //BA.debugLineNum = 1476;BA.debugLine="cargar.Visible = True"; _cargar.setVisible(__c.True); - //BA.debugLineNum = 1460;BA.debugLine="If Subs.dameUsuarioDeDB = \"ROOT\" Then Subir."; + //BA.debugLineNum = 1477;BA.debugLine="If Subs.dameUsuarioDeDB = \"ROOT\" Then Subir."; if ((_subs._dameusuariodedb /*String*/ (ba)).equals("ROOT")) { _subir.setVisible(__c.True);}; - //BA.debugLineNum = 1461;BA.debugLine="connecta.Visible = False"; + //BA.debugLineNum = 1478;BA.debugLine="connecta.Visible = False"; _connecta.setVisible(__c.False); - //BA.debugLineNum = 1462;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM RUTAA"; + //BA.debugLineNum = 1479;BA.debugLine="Starter.skmt.ExecNonQuery(\"DELETE FROM RUTAA"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("DELETE FROM RUTAA"); - //BA.debugLineNum = 1464;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO RUTA"; + //BA.debugLineNum = 1481;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO RUTA"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO RUTAA(RUTAA) VALUES (?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_e_ruta.getText())})); - //BA.debugLineNum = 1465;BA.debugLine="B4XPages.MainPage.rutaPreventa = e_ruta.TEXT"; + //BA.debugLineNum = 1482;BA.debugLine="B4XPages.MainPage.rutaPreventa = e_ruta.TEXT"; _b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (ba)._rutapreventa /*String*/ = _e_ruta.getText(); - //BA.debugLineNum = 1466;BA.debugLine="If conn = \"1\" Then"; + //BA.debugLineNum = 1483;BA.debugLine="If conn = \"1\" Then"; if ((_conn).equals("1")) { - //BA.debugLineNum = 1467;BA.debugLine="ToastMessageShow(\"Existe Conexión con el Se"; + //BA.debugLineNum = 1484;BA.debugLine="ToastMessageShow(\"Existe Conexión con el Se"; __c.ToastMessageShow(BA.ObjectToCharSequence("Existe Conexión con el Servidor."),__c.True); }; }else { - //BA.debugLineNum = 1470;BA.debugLine="cargar.Visible = False"; + //BA.debugLineNum = 1487;BA.debugLine="cargar.Visible = False"; _cargar.setVisible(__c.False); - //BA.debugLineNum = 1471;BA.debugLine="Subir.Visible = False"; + //BA.debugLineNum = 1488;BA.debugLine="Subir.Visible = False"; _subir.setVisible(__c.False); - //BA.debugLineNum = 1472;BA.debugLine="inv.Visible = False"; + //BA.debugLineNum = 1489;BA.debugLine="inv.Visible = False"; _inv.setVisible(__c.False); - //BA.debugLineNum = 1473;BA.debugLine="connecta.Visible = False"; + //BA.debugLineNum = 1490;BA.debugLine="connecta.Visible = False"; _connecta.setVisible(__c.False); }; } }; }; }; - //BA.debugLineNum = 1479;BA.debugLine="If Job.JobName = \"DBRequest\" Then 'Traemos las c"; + //BA.debugLineNum = 1496;BA.debugLine="If Job.JobName = \"DBRequest\" Then 'Traemos las c"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1480;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1497;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1481;BA.debugLine="If result.Tag = \"coords_almacen\" Then 'query ta"; + //BA.debugLineNum = 1498;BA.debugLine="If result.Tag = \"coords_almacen\" Then 'query ta"; if ((_result.Tag /*Object*/ ).equals((Object)("coords_almacen"))) { - //BA.debugLineNum = 1482;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1499;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group390 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen390 = group390.getSize() -;int index390 = 0; +final anywheresoftware.b4a.BA.IterableList group391 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; +final int groupLen391 = group391.getSize() +;int index391 = 0; ; -for (; index390 < groupLen390;index390++){ -_records = (Object[])(group390.Get(index390)); - //BA.debugLineNum = 1483;BA.debugLine="Log(\"Coordenadas del almacen: \" & records(res"; -__c.LogImpl("216187845","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 = 1484;BA.debugLine="Private lat, lon As Double"; +for (; index391 < groupLen391;index391++){ +_records = (Object[])(group391.Get(index391)); + //BA.debugLineNum = 1500;BA.debugLine="Log(\"Coordenadas del almacen: \" & records(res"; +__c.LogImpl("849611208","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 = 1501;BA.debugLine="Private lat, lon As Double"; _lat = 0; _lon = 0; - //BA.debugLineNum = 1485;BA.debugLine="lat = 0.0"; + //BA.debugLineNum = 1502;BA.debugLine="lat = 0.0"; _lat = 0.0; - //BA.debugLineNum = 1486;BA.debugLine="lon = 0.0"; + //BA.debugLineNum = 1503;BA.debugLine="lon = 0.0"; _lon = 0.0; - //BA.debugLineNum = 1487;BA.debugLine="If IsNumber(records(result.Columns.Get(\"CAT_A"; + //BA.debugLineNum = 1504;BA.debugLine="If IsNumber(records(result.Columns.Get(\"CAT_A"; if (__c.IsNumber(BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LATITUD"))))])) && __c.IsNumber(BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LONGITUD"))))]))) { - //BA.debugLineNum = 1488;BA.debugLine="lat = records(result.Columns.Get(\"CAT_AL_LAT"; + //BA.debugLineNum = 1505;BA.debugLine="lat = records(result.Columns.Get(\"CAT_AL_LAT"; _lat = (double)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LATITUD"))))])); - //BA.debugLineNum = 1489;BA.debugLine="lon = records(result.Columns.Get(\"CAT_AL_LON"; + //BA.debugLineNum = 1506;BA.debugLine="lon = records(result.Columns.Get(\"CAT_AL_LON"; _lon = (double)(BA.ObjectToNumber(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)("CAT_AL_LONGITUD"))))])); }; - //BA.debugLineNum = 1491;BA.debugLine="Starter.cedisLocation.Latitude = lat"; + //BA.debugLineNum = 1508;BA.debugLine="Starter.cedisLocation.Latitude = lat"; _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .setLatitude(_lat); - //BA.debugLineNum = 1492;BA.debugLine="Starter.cedisLocation.Longitude = lon"; + //BA.debugLineNum = 1509;BA.debugLine="Starter.cedisLocation.Longitude = lon"; _starter._cedislocation /*anywheresoftware.b4a.gps.LocationWrapper*/ .setLongitude(_lon); - //BA.debugLineNum = 1493;BA.debugLine="Starter.skmt.ExecNonQuery2(\"delete from CAT_V"; + //BA.debugLineNum = 1510;BA.debugLine="Starter.skmt.ExecNonQuery2(\"delete from CAT_V"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("delete from CAT_VARIABLES where CAT_VA_DESCRIPCION = ?",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)("COORDS_ALMACEN")})); - //BA.debugLineNum = 1494;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_V"; + //BA.debugLineNum = 1511;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CAT_V"; _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)("COORDS_ALMACEN"),(Object)(BA.NumberToString(_lon)+","+BA.NumberToString(_lat))})); } }; }; }; - //BA.debugLineNum = 1500;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; + //BA.debugLineNum = 1517;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1501;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; + //BA.debugLineNum = 1518;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; _result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1502;BA.debugLine="If result.Tag = \"ins_reparto\" Then 'query tag"; + //BA.debugLineNum = 1519;BA.debugLine="If result.Tag = \"ins_reparto\" Then 'query tag"; if ((_result.Tag /*Object*/ ).equals((Object)("ins_reparto"))) { - //BA.debugLineNum = 1503;BA.debugLine="For Each records() As Object In result.Rows"; + //BA.debugLineNum = 1520;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group409 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen409 = group409.getSize() -;int index409 = 0; -; -for (; index409 < groupLen409;index409++){ -_records = (Object[])(group409.Get(index409)); - //BA.debugLineNum = 1504;BA.debugLine="For Each k As String In result.Columns.Keys"; -{ -final anywheresoftware.b4a.BA.IterableList group410 = _result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Keys(); +final anywheresoftware.b4a.BA.IterableList group410 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; final int groupLen410 = group410.getSize() ;int index410 = 0; ; for (; index410 < groupLen410;index410++){ -_k = BA.ObjectToString(group410.Get(index410)); - //BA.debugLineNum = 1505;BA.debugLine="Log(k & \": \" & records(result.Columns.Get(k)"; -__c.LogImpl("216187867",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); - } -}; - } -}; - }; - }; - //BA.debugLineNum = 1511;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; -if ((_job._jobname /*String*/ ).equals("DBRequest")) { - //BA.debugLineNum = 1512;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; -_result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); - //BA.debugLineNum = 1513;BA.debugLine="If result.Tag = \"ins_rechazos\" Then 'query tag"; -if ((_result.Tag /*Object*/ ).equals((Object)("ins_rechazos"))) { - //BA.debugLineNum = 1514;BA.debugLine="For Each records() As Object In result.Rows"; +_records = (Object[])(group410.Get(index410)); + //BA.debugLineNum = 1521;BA.debugLine="For Each k As String In result.Columns.Keys"; { -final anywheresoftware.b4a.BA.IterableList group419 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; -final int groupLen419 = group419.getSize() -;int index419 = 0; +final anywheresoftware.b4a.BA.IterableList group411 = _result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Keys(); +final int groupLen411 = group411.getSize() +;int index411 = 0; ; -for (; index419 < groupLen419;index419++){ -_records = (Object[])(group419.Get(index419)); - //BA.debugLineNum = 1515;BA.debugLine="For Each k As String In result.Columns.Keys"; +for (; index411 < groupLen411;index411++){ +_k = BA.ObjectToString(group411.Get(index411)); + //BA.debugLineNum = 1522;BA.debugLine="Log(k & \": \" & records(result.Columns.Get(k)"; +__c.LogImpl("849611230",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); + } +}; + } +}; + }; + }; + //BA.debugLineNum = 1528;BA.debugLine="If Job.JobName = \"DBRequest\" Then"; +if ((_job._jobname /*String*/ ).equals("DBRequest")) { + //BA.debugLineNum = 1529;BA.debugLine="Dim result As DBResult = reqManager.HandleJob(J"; +_result = _reqmanager._handlejob /*reparto_mazapa.keymon.lat.dbrequestmanager._dbresult*/ (_job); + //BA.debugLineNum = 1530;BA.debugLine="If result.Tag = \"ins_rechazos\" Then 'query tag"; +if ((_result.Tag /*Object*/ ).equals((Object)("ins_rechazos"))) { + //BA.debugLineNum = 1531;BA.debugLine="For Each records() As Object In result.Rows"; { -final anywheresoftware.b4a.BA.IterableList group420 = _result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Keys(); +final anywheresoftware.b4a.BA.IterableList group420 = _result.Rows /*anywheresoftware.b4a.objects.collections.List*/ ; final int groupLen420 = group420.getSize() ;int index420 = 0; ; for (; index420 < groupLen420;index420++){ -_k = BA.ObjectToString(group420.Get(index420)); - //BA.debugLineNum = 1516;BA.debugLine="Log(k & \": \" & records(result.Columns.Get(k)"; -__c.LogImpl("216187878",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); +_records = (Object[])(group420.Get(index420)); + //BA.debugLineNum = 1532;BA.debugLine="For Each k As String In result.Columns.Keys"; +{ +final anywheresoftware.b4a.BA.IterableList group421 = _result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Keys(); +final int groupLen421 = group421.getSize() +;int index421 = 0; +; +for (; index421 < groupLen421;index421++){ +_k = BA.ObjectToString(group421.Get(index421)); + //BA.debugLineNum = 1533;BA.debugLine="Log(k & \": \" & records(result.Columns.Get(k)"; +__c.LogImpl("849611241",_k+": "+BA.ObjectToString(_records[(int)(BA.ObjectToNumber(_result.Columns /*anywheresoftware.b4a.objects.collections.Map*/ .Get((Object)(_k))))]),0); } }; } }; }; }; - //BA.debugLineNum = 1521;BA.debugLine="Job.Release"; + //BA.debugLineNum = 1538;BA.debugLine="Job.Release"; _job._release /*String*/ (); }; - //BA.debugLineNum = 1523;BA.debugLine="If reqs.Size = 0 Then"; + //BA.debugLineNum = 1540;BA.debugLine="If reqs.Size = 0 Then"; if (_reqs.getSize()==0) { - //BA.debugLineNum = 1526;BA.debugLine="ProgressDialogHide"; + //BA.debugLineNum = 1544;BA.debugLine="ProgressDialogHide"; __c.ProgressDialogHide(); - //BA.debugLineNum = 1528;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT COUNT(*) AS C"; + //BA.debugLineNum = 1546;BA.debugLine="c = Starter.skmt.ExecQuery(\"SELECT COUNT(*) AS C"; _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 COUNT(*) AS CUANTOS FROM CHECADO_CHECK"))); - //BA.debugLineNum = 1529;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 1547;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 1530;BA.debugLine="If c.GetString(\"CUANTOS\") = 0 Then"; + //BA.debugLineNum = 1548;BA.debugLine="If c.GetString(\"CUANTOS\") = 0 Then"; if ((_c.GetString("CUANTOS")).equals(BA.NumberToString(0))) { - //BA.debugLineNum = 1531;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into CHECADO"; + //BA.debugLineNum = 1549;BA.debugLine="Starter.skmt.ExecNonQuery2(\"insert into CHECADO"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("insert into CHECADO_CHECK (CHECADO) VALUES(?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new String[]{"0"})); }else if((_c.GetString("CUANTOS")).equals(BA.NumberToString(1))) { }; - //BA.debugLineNum = 1536;BA.debugLine="c.Close"; + //BA.debugLineNum = 1554;BA.debugLine="c.Close"; _c.Close(); }; - //BA.debugLineNum = 1540;BA.debugLine="End Sub"; + //BA.debugLineNum = 1558;BA.debugLine="End Sub"; return ""; } public String _listview1_itemclick(int _position,Object _value) throws Exception{ String[] _clieasing = null; - //BA.debugLineNum = 1907;BA.debugLine="Private Sub ListView1_ItemClick (Position As Int,"; - //BA.debugLineNum = 1908;BA.debugLine="Log(Value)"; -__c.LogImpl("217039361",BA.ObjectToString(_value),0); - //BA.debugLineNum = 1910;BA.debugLine="Dim clieasing() As String = Regex.Split(\" \", Valu"; + //BA.debugLineNum = 1925;BA.debugLine="Private Sub ListView1_ItemClick (Position As Int,"; + //BA.debugLineNum = 1926;BA.debugLine="Log(Value)"; +__c.LogImpl("850462721",BA.ObjectToString(_value),0); + //BA.debugLineNum = 1928;BA.debugLine="Dim clieasing() As String = Regex.Split(\" \", Valu"; _clieasing = __c.Regex.Split(" ",BA.ObjectToString(_value)); - //BA.debugLineNum = 1911;BA.debugLine="Log(clieasing(0))"; -__c.LogImpl("217039364",_clieasing[(int) (0)],0); - //BA.debugLineNum = 1913;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; + //BA.debugLineNum = 1929;BA.debugLine="Log(clieasing(0))"; +__c.LogImpl("850462724",_clieasing[(int) (0)],0); + //BA.debugLineNum = 1931;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CUENTAA"); - //BA.debugLineNum = 1914;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA V"; + //BA.debugLineNum = 1932;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA V"; _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CUENTAA VALUES (?)",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_clieasing[(int) (0)])})); - //BA.debugLineNum = 1915;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; + //BA.debugLineNum = 1933;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; _b4xpages._showpage /*String*/ (ba,"Cliente"); - //BA.debugLineNum = 1916;BA.debugLine="End Sub"; + //BA.debugLineNum = 1934;BA.debugLine="End Sub"; return ""; } public String _p_prod_click() throws Exception{ - //BA.debugLineNum = 1970;BA.debugLine="Private Sub p_prod_Click"; - //BA.debugLineNum = 1972;BA.debugLine="End Sub"; + //BA.debugLineNum = 1988;BA.debugLine="Private Sub p_prod_Click"; + //BA.debugLineNum = 1990;BA.debugLine="End Sub"; return ""; } public String _subir_click() throws Exception{ - //BA.debugLineNum = 654;BA.debugLine="Sub Subir_Click"; - //BA.debugLineNum = 655;BA.debugLine="If Not(IsConnectedToInternet) Then MsgboxAsync(\"N"; + //BA.debugLineNum = 663;BA.debugLine="Sub Subir_Click"; + //BA.debugLineNum = 664;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);}; - //BA.debugLineNum = 656;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from usu"; + //BA.debugLineNum = 665;BA.debugLine="c=Starter.skmt.ExecQuery(\"select usuario from usu"; _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"))); - //BA.debugLineNum = 657;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 666;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 658;BA.debugLine="usuario = c.GetString(\"USUARIO\")"; + //BA.debugLineNum = 667;BA.debugLine="usuario = c.GetString(\"USUARIO\")"; _usuario = _c.GetString("USUARIO"); - //BA.debugLineNum = 659;BA.debugLine="c.Close"; + //BA.debugLineNum = 668;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 662;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 671;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 663;BA.debugLine="cmd.Name = \"select_estatus_MAZAPA\""; + //BA.debugLineNum = 672;BA.debugLine="cmd.Name = \"select_estatus_MAZAPA\""; _cmd.Name /*String*/ = "select_estatus_MAZAPA"; - //BA.debugLineNum = 664;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,e_ruta.t"; + //BA.debugLineNum = 673;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,e_ruta.t"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen),(Object)(_e_ruta.getText())}; - //BA.debugLineNum = 665;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"estatus\")"; + //BA.debugLineNum = 674;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"estatus\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("estatus")); - //BA.debugLineNum = 666;BA.debugLine="End Sub"; + //BA.debugLineNum = 675;BA.debugLine="End Sub"; return ""; } public String _t1_tick() throws Exception{ - //BA.debugLineNum = 1626;BA.debugLine="Sub t1_tick"; - //BA.debugLineNum = 1627;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 1644;BA.debugLine="Sub t1_tick"; + //BA.debugLineNum = 1645;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 1628;BA.debugLine="cmd.Name = \"select_cuantos_pedido\""; + //BA.debugLineNum = 1646;BA.debugLine="cmd.Name = \"select_cuantos_pedido\""; _cmd.Name /*String*/ = "select_cuantos_pedido"; - //BA.debugLineNum = 1629;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,l_ruta.t"; + //BA.debugLineNum = 1647;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,l_ruta.t"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 1630;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"valida_pedido\")"; + //BA.debugLineNum = 1648;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"valida_pedido\")"; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("valida_pedido")); - //BA.debugLineNum = 1632;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 1650;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 1633;BA.debugLine="cmd.Name = \"select_cuantos_noventa_mards\""; + //BA.debugLineNum = 1651;BA.debugLine="cmd.Name = \"select_cuantos_noventa_mards\""; _cmd.Name /*String*/ = "select_cuantos_noventa_mards"; - //BA.debugLineNum = 1634;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,l_ruta.t"; + //BA.debugLineNum = 1652;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,l_ruta.t"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 1635;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"valida_noventa\""; + //BA.debugLineNum = 1653;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"valida_noventa\""; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("valida_noventa")); - //BA.debugLineNum = 1637;BA.debugLine="cmd.Initialize"; + //BA.debugLineNum = 1655;BA.debugLine="cmd.Initialize"; _cmd.Initialize(); - //BA.debugLineNum = 1638;BA.debugLine="cmd.Name = \"select_cuantos_pedidoc\""; + //BA.debugLineNum = 1656;BA.debugLine="cmd.Name = \"select_cuantos_pedidoc\""; _cmd.Name /*String*/ = "select_cuantos_pedidoc"; - //BA.debugLineNum = 1639;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,l_ruta.t"; + //BA.debugLineNum = 1657;BA.debugLine="cmd.Parameters = Array As Object(ALMACEN,l_ruta.t"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(_almacen),(Object)(_l_ruta.getText())}; - //BA.debugLineNum = 1640;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"valida_pedidoc\""; + //BA.debugLineNum = 1658;BA.debugLine="reqManager.ExecuteQuery(cmd , 0, \"valida_pedidoc\""; _reqmanager._executequery /*String*/ (_cmd,(int) (0),(Object)("valida_pedidoc")); - //BA.debugLineNum = 1641;BA.debugLine="img2.Visible=False"; + //BA.debugLineNum = 1659;BA.debugLine="img2.Visible=False"; _img2.setVisible(__c.False); - //BA.debugLineNum = 1642;BA.debugLine="t1.Enabled = False"; + //BA.debugLineNum = 1660;BA.debugLine="t1.Enabled = False"; _t1.setEnabled(__c.False); - //BA.debugLineNum = 1643;BA.debugLine="End Sub"; + //BA.debugLineNum = 1661;BA.debugLine="End Sub"; return ""; } public String _to_number_vb(Object _valor) throws Exception{ int _valstring = 0; String _valstring2 = ""; - //BA.debugLineNum = 632;BA.debugLine="Sub to_number_vb (valor As Object) As String"; - //BA.debugLineNum = 633;BA.debugLine="Dim valstring As Int"; + //BA.debugLineNum = 641;BA.debugLine="Sub to_number_vb (valor As Object) As String"; + //BA.debugLineNum = 642;BA.debugLine="Dim valstring As Int"; _valstring = 0; - //BA.debugLineNum = 634;BA.debugLine="Dim valstring2 As String = valor"; + //BA.debugLineNum = 643;BA.debugLine="Dim valstring2 As String = valor"; _valstring2 = BA.ObjectToString(_valor); - //BA.debugLineNum = 635;BA.debugLine="valstring2.Replace(\":\",\"\")"; + //BA.debugLineNum = 644;BA.debugLine="valstring2.Replace(\":\",\"\")"; _valstring2.replace(":",""); - //BA.debugLineNum = 636;BA.debugLine="Try"; -try { //BA.debugLineNum = 637;BA.debugLine="valstring =valstring2.Replace(\":\",\"\")"; + //BA.debugLineNum = 645;BA.debugLine="Try"; +try { //BA.debugLineNum = 646;BA.debugLine="valstring =valstring2.Replace(\":\",\"\")"; _valstring = (int)(Double.parseDouble(_valstring2.replace(":",""))); - //BA.debugLineNum = 638;BA.debugLine="Return valstring"; + //BA.debugLineNum = 647;BA.debugLine="Return valstring"; if (true) return BA.NumberToString(_valstring); } catch (Exception e8) { - ba.setLastException(e8); //BA.debugLineNum = 640;BA.debugLine="Return 0"; + ba.setLastException(e8); //BA.debugLineNum = 649;BA.debugLine="Return 0"; if (true) return BA.NumberToString(0); }; - //BA.debugLineNum = 642;BA.debugLine="End Sub"; + //BA.debugLineNum = 651;BA.debugLine="End Sub"; return ""; } public String _trabajar_click() throws Exception{ - //BA.debugLineNum = 644;BA.debugLine="Sub trabajar_Click"; - //BA.debugLineNum = 645;BA.debugLine="If b_check.Visible = True Then"; + //BA.debugLineNum = 653;BA.debugLine="Sub trabajar_Click"; + //BA.debugLineNum = 654;BA.debugLine="If b_check.Visible = True Then"; if (_b_check.getVisible()==__c.True) { - //BA.debugLineNum = 646;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Atenc"; + //BA.debugLineNum = 655;BA.debugLine="MsgboxAsync(\"Favor de hacer el checklist.\",\"Atenc"; __c.MsgboxAsync(BA.ObjectToCharSequence("Favor de hacer el checklist."),BA.ObjectToCharSequence("Atención"),ba); }else { - //BA.debugLineNum = 649;BA.debugLine="B4XPages.ShowPage(\"Clientes\")"; + //BA.debugLineNum = 658;BA.debugLine="B4XPages.ShowPage(\"Clientes\")"; _b4xpages._showpage /*String*/ (ba,"Clientes"); }; - //BA.debugLineNum = 652;BA.debugLine="End Sub"; + //BA.debugLineNum = 661;BA.debugLine="End Sub"; return ""; } public Object callSub(String sub, Object sender, Object[] args) throws Exception { diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_productos.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_productos.java index 1c0fdff..fa47232 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_productos.java +++ b/B4A/Objects/src/reparto_mazapa/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("218087944","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("853805064","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("218087953","LC_TEXT:"+_lacant.getText()+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("853805073","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));}; @@ -162,16 +162,16 @@ _minimoadesc = "1"; //BA.debugLineNum = 694;BA.debugLine="minimos.Close"; _minimos.Close(); //BA.debugLineNum = 697;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("218087969",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("853805089",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 698;BA.debugLine="Log(esteTag.get(4))"; -__c.LogImpl("218087970",BA.ObjectToString(_estetag.Get((int) (4))),0); +__c.LogImpl("853805090",BA.ObjectToString(_estetag.Get((int) (4))),0); //BA.debugLineNum = 699;BA.debugLine="If esteTag.Get(4) = \"0\" Then"; if ((_estetag.Get((int) (4))).equals((Object)("0"))) { }else { //BA.debugLineNum = 702;BA.debugLine="If laCant.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacant.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 703;BA.debugLine="Log($\"NuevaCant = ${laCant.Text + 1}\"$)"; -__c.LogImpl("218087975",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); +__c.LogImpl("853805095",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacant.getText()))+1))+""),0); //BA.debugLineNum = 704;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 = 705;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update cat_gunaprod"; @@ -284,7 +284,7 @@ String _puc = ""; //BA.debugLineNum = 791;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 793;BA.debugLine="LogColor(\"b_prodMas_Click\", Colors.Magenta)"; -__c.LogImpl("218153475","b_prodMas_Click",__c.Colors.Magenta); +__c.LogImpl("853870595","b_prodMas_Click",__c.Colors.Magenta); //BA.debugLineNum = 794;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 = 795;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -297,40 +297,40 @@ _pnl = _pnl0.GetView((int) (0)); _lacantc = new anywheresoftware.b4a.objects.B4XViewWrapper(); _lacantc = _pnl.GetView((int) (3)).GetView((int) (3)); //BA.debugLineNum = 798;BA.debugLine="LogColor(laCantc.Text&\"--------------------------"; -__c.LogImpl("218153480",_lacantc.getText()+"-----------------------------",__c.Colors.Blue); +__c.LogImpl("853870600",_lacantc.getText()+"-----------------------------",__c.Colors.Blue); //BA.debugLineNum = 802;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 = 803;BA.debugLine="Log(\"LC_TEXT:\"&laCantc.Text&\"|LC_TAG:\"&laCantc.Ta"; -__c.LogImpl("218153485","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("853870605","LC_TEXT:"+_lacantc.getText()+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 804;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; //BA.debugLineNum = 806;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 = 807;BA.debugLine="LogColor(esteTag.Get(1),Colors.Red)"; -__c.LogImpl("218153489",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); +__c.LogImpl("853870609",BA.ObjectToString(_estetag.Get((int) (1))),__c.Colors.Red); //BA.debugLineNum = 808;BA.debugLine="LogColor(esteTag.Get(4),Colors.Red)"; -__c.LogImpl("218153490",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); +__c.LogImpl("853870610",BA.ObjectToString(_estetag.Get((int) (4))),__c.Colors.Red); //BA.debugLineNum = 809;BA.debugLine="LogColor($\"++++++++++++++++++++++++++ ${esteTag"; -__c.LogImpl("218153491",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); +__c.LogImpl("853870611",("++++++++++++++++++++++++++ "+__c.SmartStringFormatter("",(Object)(_estetag.getObject()))+""),__c.Colors.Green); //BA.debugLineNum = 811;BA.debugLine="Log(maxProds)"; -__c.LogImpl("218153493",_maxprods,0); +__c.LogImpl("853870613",_maxprods,0); //BA.debugLineNum = 814;BA.debugLine="Log(esteTag.Get(4))"; -__c.LogImpl("218153496",BA.ObjectToString(_estetag.Get((int) (4))),0); +__c.LogImpl("853870616",BA.ObjectToString(_estetag.Get((int) (4))),0); //BA.debugLineNum = 815;BA.debugLine="If esteTag.Get(4) = \"0\" Then"; if ((_estetag.Get((int) (4))).equals((Object)("0"))) { }else { //BA.debugLineNum = 818;BA.debugLine="If laCantc.Text + 1 <= maxProds Then"; if ((double)(Double.parseDouble(_lacantc.getText()))+1<=(double)(Double.parseDouble(_maxprods))) { //BA.debugLineNum = 819;BA.debugLine="Log($\"NuevaCant = ${laCantc.Text + 1}\"$)"; -__c.LogImpl("218153501",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); +__c.LogImpl("853870621",("NuevaCant = "+__c.SmartStringFormatter("",(Object)((double)(Double.parseDouble(_lacantc.getText()))+1))+""),0); //BA.debugLineNum = 821;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 = 822;BA.debugLine="LogColor(esteTag,Colors.Magenta)"; -__c.LogImpl("218153504",BA.ObjectToString(_estetag),__c.Colors.Magenta); +__c.LogImpl("853870624",BA.ObjectToString(_estetag),__c.Colors.Magenta); //BA.debugLineNum = 824;BA.debugLine="LogColor(laCantc.Text,Colors.Red)"; -__c.LogImpl("218153506",_lacantc.getText(),__c.Colors.Red); +__c.LogImpl("853870626",_lacantc.getText(),__c.Colors.Red); //BA.debugLineNum = 827;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 = 828;BA.debugLine="If c.RowCount > 0 Then"; @@ -349,7 +349,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("update PEDIDO se //BA.debugLineNum = 835;BA.debugLine="B4XPage_Appear"; _b4xpage_appear(); //BA.debugLineNum = 836;BA.debugLine="Log(\"aqui2\")"; -__c.LogImpl("218153518","aqui2",0); +__c.LogImpl("853870638","aqui2",0); }; }else { //BA.debugLineNum = 839;BA.debugLine="Private c2 As Cursor = Starter.skmt.ExecQuery2"; @@ -362,7 +362,7 @@ _c2.setPosition((int) (0)); //BA.debugLineNum = 842;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 = 843;BA.debugLine="Log(puc)"; -__c.LogImpl("218153525",_puc,0); +__c.LogImpl("853870645",_puc,0); //BA.debugLineNum = 846;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 = 847;BA.debugLine="B4XPage_Appear"; @@ -389,9 +389,9 @@ float _preciou = 0f; //BA.debugLineNum = 559;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 560;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("218022402","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("853739522","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 561;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("218022403","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("853739523","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)"; @@ -407,7 +407,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("218022410","LC_TEXT:"+_lacant.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacant.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("853739530","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(\""; @@ -436,7 +436,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("218022461","NO ES promo",0); +__c.LogImpl("853739581","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)))}))); @@ -475,7 +475,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("218022493","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("853739613","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 662;BA.debugLine="End Sub"; return ""; } @@ -491,9 +491,9 @@ float _preciou = 0f; //BA.debugLineNum = 856;BA.debugLine="etCantHasFocus = False"; _etcanthasfocus = __c.False; //BA.debugLineNum = 857;BA.debugLine="Log(\"etCantHasFocus=\" & etCantHasFocus)"; -__c.LogImpl("218219010","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); +__c.LogImpl("853936130","etCantHasFocus="+BA.ObjectToString(_etcanthasfocus),0); //BA.debugLineNum = 858;BA.debugLine="LogColor(\"b_prodMenos_Click\", Colors.Magenta)"; -__c.LogImpl("218219011","b_prodMenos_Click",__c.Colors.Magenta); +__c.LogImpl("853936131","b_prodMenos_Click",__c.Colors.Magenta); //BA.debugLineNum = 859;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 = 860;BA.debugLine="Dim pnl0 As B4XView = clv_pedido.GetPanel(index)"; @@ -509,7 +509,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 = 865;BA.debugLine="Log(\"LC_TEXT:\"&laCantc.Text&\"|PROMO:\"&esteTag.Get"; -__c.LogImpl("218219018","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); +__c.LogImpl("853936138","LC_TEXT:"+_lacantc.getText()+"|PROMO:"+BA.ObjectToString(_estetag.Get((int) (3)))+"|LC_TAG:"+BA.ObjectToString(_lacantc.getTag())+"|ET:"+BA.ObjectToString(_estetag),0); //BA.debugLineNum = 869;BA.debugLine="If laCantc.Text > 0 Then"; if ((double)(Double.parseDouble(_lacantc.getText()))>0) { //BA.debugLineNum = 872;BA.debugLine="Private c3 As Cursor = Starter.skmt.ExecQuery2(\""; @@ -529,7 +529,7 @@ _starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("delete from PEDI }; }; //BA.debugLineNum = 881;BA.debugLine="Log(\"entre al if o algo asi \")"; -__c.LogImpl("218219034","entre al if o algo asi ",0); +__c.LogImpl("853936154","entre al if o algo asi ",0); //BA.debugLineNum = 882;BA.debugLine="If laCantc.Text = \"\" Then laCantc.Text = 0"; if ((_lacantc.getText()).equals("")) { _lacantc.setText(BA.ObjectToCharSequence(0));}; @@ -545,7 +545,7 @@ _b4xpage_appear(); //BA.debugLineNum = 891;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 = 892;BA.debugLine="Log(\"PU: \" & preciou)"; -__c.LogImpl("218219045","PU: "+BA.NumberToString(_preciou),0); +__c.LogImpl("853936165","PU: "+BA.NumberToString(_preciou),0); //BA.debugLineNum = 893;BA.debugLine="End Sub"; return ""; } @@ -703,16 +703,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("217498206",_c.GetString("HVD_CODPROMO"),0); +__c.LogImpl("853215326",_c.GetString("HVD_CODPROMO"),0); //BA.debugLineNum = 169;BA.debugLine="Log(Subs.traeAlmacen)"; -__c.LogImpl("217498207",_subs._traealmacen /*String*/ (ba),0); +__c.LogImpl("853215327",_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("217498213","aqui arriba",0); +__c.LogImpl("853215333","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)); }; @@ -745,16 +745,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("217498238",_c.GetString("HVD_CODPROMO"),0); +__c.LogImpl("853215358",_c.GetString("HVD_CODPROMO"),0); //BA.debugLineNum = 201;BA.debugLine="Log(Subs.traeAlmacen)"; -__c.LogImpl("217498239",_subs._traealmacen /*String*/ (ba),0); +__c.LogImpl("853215359",_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("217498244","aqui abajo",0); +__c.LogImpl("853215364","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)); }; @@ -764,7 +764,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("217498256","AQUI1",0); +__c.LogImpl("853215376","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")))+"'")))); @@ -826,9 +826,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("217498294","SI ENTRO A PONER CAJAS BIEN ",0); +__c.LogImpl("853215414","SI ENTRO A PONER CAJAS BIEN ",0); //BA.debugLineNum = 257;BA.debugLine="Log(c2.GetString(\"PE_CAJAS\"))"; -__c.LogImpl("217498295",_c2.GetString("PE_CAJAS"),0); +__c.LogImpl("853215415",_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")))+"'")))); @@ -847,12 +847,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("217498308",BA.NumberToString(((double)(Double.parseDouble(_restacant))/(double)(double)(Double.parseDouble(_subs._traeconversion /*String*/ (ba,_c.GetString("HVD_PROID")))))),__c.Colors.Green); +__c.LogImpl("853215428",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("217498311","NO ENTRO A PONER CAJAS BIEN ",0); +__c.LogImpl("853215431","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")))+"'")))); @@ -869,7 +869,7 @@ _resta = _c3.GetString("PE_CANT"); _resta = BA.NumberToString(0); }; //BA.debugLineNum = 285;BA.debugLine="LogColor(resta,Colors.Green)"; -__c.LogImpl("217498323",_resta,__c.Colors.Green); +__c.LogImpl("853215443",_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(\""; @@ -1120,9 +1120,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("217956878",BA.NumberToString(_inv)+" inventario 1",0); +__c.LogImpl("853673998",BA.NumberToString(_inv)+" inventario 1",0); //BA.debugLineNum = 539;BA.debugLine="Log(inv2&\" inventario 2\")"; -__c.LogImpl("217956879",BA.NumberToString(_inv2)+" inventario 2",0); +__c.LogImpl("853673999",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)&"; @@ -1187,7 +1187,7 @@ return ""; public String _p_prods_click() throws Exception{ //BA.debugLineNum = 1077;BA.debugLine="Sub p_prods_Click"; //BA.debugLineNum = 1078;BA.debugLine="Log(Sender.As(Panel).tag)"; -__c.LogImpl("218612225",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("854329345",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 = 1079;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_tabulador.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_tabulador.java index 092da44..1190cb9 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_tabulador.java +++ b/B4A/Objects/src/reparto_mazapa/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("218874374","TABULADR CON RESUKTADO",0); +__c.LogImpl("854591494","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("218874389","TABULADR SIN RESUKTADO",0); +__c.LogImpl("854591509","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_mazapa/keymon/lat/c_updateavailable.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/c_updateavailable.java index ecc72d8..dbbd333 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/c_updateavailable.java +++ b/B4A/Objects/src/reparto_mazapa/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("219464202","updateAvailable() Error - "+parent.__c.LastException(ba).getMessage(),0); +parent.__c.LogImpl("855181322","updateAvailable() Error - "+parent.__c.LastException(ba).getMessage(),0); if (true) break; if (true) break; ; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/cameraexclass.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/cameraexclass.java index 3f41f91..9446e4e 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/cameraexclass.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/cameraexclass.java @@ -79,7 +79,7 @@ if (_success) { _takepicture(); }else { //BA.debugLineNum = 279;BA.debugLine="Log(\"AutoFocus error.\")"; -__c.LogImpl("221889028","AutoFocus error.",0); +__c.LogImpl("857606148","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("219988488","success = false, "+BA.ObjectToString(__c.LastException(ba)),0); +__c.LogImpl("855705608","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("220643846",BA.ObjectToString(__c.LastException(ba)),0); +__c.LogImpl("856360966",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("221561351","Continuous focus mode is not available",0); +__c.LogImpl("857278471","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("219922960",BA.NumberToString(_previewresult),0); +__c.LogImpl("855640080",BA.NumberToString(_previewresult),0); }; //BA.debugLineNum = 75;BA.debugLine="r.target = nativeCam"; _r.Target = _nativecam; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/cl_appupdate.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/cl_appupdate.java index 64fd9db..ccd5702 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/cl_appupdate.java +++ b/B4A/Objects/src/reparto_mazapa/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("923003137","---- AppUpdating.DownloadApk",parent._logcolor1); +parent.__c.LogImpl("911403265","---- 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("923003141",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing apk file full path indication"),0); +parent.__c.LogImpl("911403269",(""+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_mazapa.keymon.lat.httpjob) result[0]; ; //BA.debugLineNum = 174;BA.debugLine="Log($\"Donload ok? ${j.Success}\"$)"; -parent.__c.LogImpl("923003152",("Donload ok? "+parent.__c.SmartStringFormatter("",(Object)(_j._success /*boolean*/ ))+""),0); +parent.__c.LogImpl("911403280",("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("923003159",("Copy2 (saving) ok? TRUE"),0); +parent.__c.LogImpl("911403287",("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("923003161",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"new apk version downloaded and ready to install"),0); +parent.__c.LogImpl("911403289",(""+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("923003163",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); +parent.__c.LogImpl("911403291",(""+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("923003165",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); +parent.__c.LogImpl("911403293",(""+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("922020117",("SDK#: "+__c.SmartStringFormatter("",(Object)(_p.getSdkVersion()))+" - UseFP: "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+" - SharedFolder: "+__c.SmartStringFormatter("",(Object)(_sharedfolder))+""),0); +__c.LogImpl("910420245",("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("923068673","---- AppUpdating.InstallApk",_logcolor1); +__c.LogImpl("911468801","---- 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("923068677",__c.TAB+"user asked to install new apk",0);}; +__c.LogImpl("911468805",__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("923068680",__c.TAB+"no permissions from user to install new apk",0);}; +__c.LogImpl("911468808",__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("923330820",(""+__c.SmartStringFormatter("",(Object)(__c.TAB))+"missing package name for current version check"),0);}; +__c.LogImpl("911730948",(""+__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("923330825",(""+__c.SmartStringFormatter("",(Object)(__c.TAB))+"Current Version: "+__c.SmartStringFormatter("",(Object)(_curver))+""),0);}; +__c.LogImpl("911730953",(""+__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("923396353","IsValidComplete start",0); +parent.__c.LogImpl("911796481","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("923396357",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing info file full path indication"),0); +parent.__c.LogImpl("911796485",(""+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("923396365","before",0); +parent.__c.LogImpl("911796493","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_mazapa.keymon.lat.httpjob) result[0]; ; //BA.debugLineNum = 327;BA.debugLine="Log(\"after\")"; -parent.__c.LogImpl("923396367","after",0); +parent.__c.LogImpl("911796495","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("923396369",("Webserver's info file content: "+parent.__c.SmartStringFormatter("",(Object)(parent.__c.CRLF))+""+parent.__c.SmartStringFormatter("",(Object)(_j._getstring /*String*/ ()))+""),0); +parent.__c.LogImpl("911796497",("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("923396376",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"wrong row format in info file "),0); +parent.__c.LogImpl("911796504",(""+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("923396379",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Web version number: "+parent.__c.SmartStringFormatter("",(Object)(parent._webver))+""),0); +parent.__c.LogImpl("911796507",(""+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("923396383",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"ERROR: website returned an HTML error page"),0); +parent.__c.LogImpl("911796511",(""+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("923396386",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); +parent.__c.LogImpl("911796514",(""+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("923396388",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); +parent.__c.LogImpl("911796516",(""+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("922872065","---- AppUpdating.ReadCurVN",_logcolor1); +__c.LogImpl("911272193","---- 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("922937601","---- AppUpdating.ReadWebVN",parent._logcolor1); +parent.__c.LogImpl("911337729","---- 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("923199745",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"-- TryApkUpdate"),parent._logcolor1); +parent.__c.LogImpl("911599873",(""+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_mazapa.keymon.lat.httpjob) result[0]; ; //BA.debugLineNum = 256;BA.debugLine="Log($\"Donload ok? ${j.Success}\"$)"; -parent.__c.LogImpl("923199755",("Donload ok? "+parent.__c.SmartStringFormatter("",(Object)(_j._success /*boolean*/ ))+""),0); +parent.__c.LogImpl("911599883",("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("923199763",("Copy2 (saving) ok? TRUE"),0); +parent.__c.LogImpl("911599891",("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("923199765",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"new apk version downloaded and ready to install"),0); +parent.__c.LogImpl("911599893",(""+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("923199767",("Copy2 (saving) ok? FALSE"),0); +parent.__c.LogImpl("911599895",("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("923199769",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"failed download of new apk version"),0); +parent.__c.LogImpl("911599897",(""+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("923199773",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Error: "+parent.__c.SmartStringFormatter("",(Object)(_j._errormessage /*String*/ ))+""),0); +parent.__c.LogImpl("911599901",(""+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("923199775",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"error in httputils2"),0); +parent.__c.LogImpl("911599903",(""+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("923199782",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"user asked to install new apk"),0); +parent.__c.LogImpl("911599910",(""+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("923134209","---- AppUpdating.UpdateApk",parent._logcolor1); +parent.__c.LogImpl("911534337","---- 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("923134212",parent.__c.TAB+"no permissions from user to install new apk",0); +parent.__c.LogImpl("911534340",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("923134222",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"no enough available space to download apk"),0); +parent.__c.LogImpl("911534350",(""+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("923134227",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"Newer version available. Now I try its downloading"),0); +parent.__c.LogImpl("911534355",(""+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("923134230",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"missing apk file full path indication"),0); +parent.__c.LogImpl("911534358",(""+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("923134235",(""+parent.__c.SmartStringFormatter("",(Object)(parent.__c.TAB))+"No newer version available on webserver."),0); +parent.__c.LogImpl("911534363",(""+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_mazapa/keymon/lat/dbrequestmanager.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/dbrequestmanager.java index 19915c0..b06b6fc 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/dbrequestmanager.java +++ b/B4A/Objects/src/reparto_mazapa/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("258458124","HandleJob: '"+BA.ObjectToString(_job._tag /*Object*/ )+"'",__c.Colors.Blue);}; +__c.LogImpl("858523660","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("258720257","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("858785793","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("258720263",_sb.ToString(),0); +__c.LogImpl("858785799",_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_mazapa/keymon/lat/escposprinter.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/escposprinter.java index 052a895..f8c96ce 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/escposprinter.java +++ b/B4A/Objects/src/reparto_mazapa/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("262259204","Data "+BA.NumberToString(_buffer[(int) (0)]),0); +__c.LogImpl("862324740","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("259113482","aqui 1",0); +__c.LogImpl("859179018","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("259113485","aqui 2",0); +__c.LogImpl("859179021","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("259113496","aqui 3",0); +__c.LogImpl("859179032","aqui 3",0); }; //BA.debugLineNum = 126;BA.debugLine="Log(\"aqui 4\")"; -__c.LogImpl("259113498","aqui 4",0); +__c.LogImpl("859179034","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("259113505","aqui 5",0); +__c.LogImpl("859179041","aqui 5",0); }; } catch (Exception e31) { ba.setLastException(e31); //BA.debugLineNum = 136;BA.debugLine="Log(LastException)"; -__c.LogImpl("259113508",BA.ObjectToString(__c.LastException(getActivityBA())),0); +__c.LogImpl("859179044",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("260424234","Triangle "+_logmsg,0); +__c.LogImpl("860489770","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("260424237","Circle "+_logmsg,0); +__c.LogImpl("860489773","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("260424240","Box "+_logmsg,0); +__c.LogImpl("860489776","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("260424243","Line "+_logmsg,0); +__c.LogImpl("860489779","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("262062595","Barcode "+_bartype+", Size "+BA.NumberToString(_dlow)+", "+_data,0); +__c.LogImpl("862128131","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("262128132","QR Code : Size "+BA.NumberToString(_size)+", EC "+_ec+", Scale "+BA.NumberToString(_scale)+", Size "+BA.NumberToString(_dlow)+" "+BA.NumberToString(_dhigh)+" : Data = "+_data,0); +__c.LogImpl("862193668","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("260162054","Printer error : "+__c.LastException(getActivityBA()).getMessage(),0); +__c.LogImpl("860227590","Printer error : "+__c.LastException(getActivityBA()).getMessage(),0); //BA.debugLineNum = 306;BA.debugLine="AStream_Error"; _astream_error(); }; diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/fileprovider.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/fileprovider.java index 7c8a0fd..2e1df09 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/fileprovider.java +++ b/B4A/Objects/src/reparto_mazapa/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("933423370",("Using FileProvider? "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); +__c.LogImpl("921823498",("Using FileProvider? "+__c.SmartStringFormatter("",(Object)(_usefileprovider))+""),0); //BA.debugLineNum = 19;BA.debugLine="End Sub"; return ""; } diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/foto.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/foto.java index 781fbe7..bfb43ee 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/foto.java +++ b/B4A/Objects/src/reparto_mazapa/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("263307778",BA.NumberToString(_f[(int) (0)])+", "+BA.NumberToString(_f[(int) (1)])+", "+BA.NumberToString(_f[(int) (2)]),0); +anywheresoftware.b4a.keywords.Common.LogImpl("863373314",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("262914565",BA.ObjectToString(mostCurrent._camex._getpreviewsize /*reparto_mazapa.keymon.lat.cameraexclass._camerasize*/ ()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("862980101",BA.ObjectToString(mostCurrent._camex._getpreviewsize /*reparto_mazapa.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_mazapa/keymon/lat/httpjob.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/httpjob.java index 0e24778..89f3f3e 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/httpjob.java +++ b/B4A/Objects/src/reparto_mazapa/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("935323909",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923724037",("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("935389445",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923789573",("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("935127301",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923527429",("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("935192837",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923592965",("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("934865157",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923265285",("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("934799628",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923199756",("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("934537477",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("922937605",("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("935061768","Cannot send files from the assets folder.",0); +__c.LogImpl("923461896","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("934668549",("Invalid link: "+__c.SmartStringFormatter("",(Object)(_link))+""),0); +__c.LogImpl("923068677",("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_mazapa/keymon/lat/httputils2service.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/httputils2service.java index 44ada81..c643e33 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/httputils2service.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/httputils2service.java @@ -69,7 +69,7 @@ _job = (reparto_mazapa.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("234209798","HttpUtils2Service: job completed multiple times - "+BA.NumberToString(_taskid),0); +anywheresoftware.b4a.keywords.Common.LogImpl("822609926","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_mazapa.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("234144258",("ResponseError. Reason: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_reason))+", Response: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_response.getErrorResponse()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("822544386",("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_mazapa.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("234144263","HttpUtils2Service (hc_ResponseError): job completed multiple times - "+BA.NumberToString(_taskid),0); +anywheresoftware.b4a.keywords.Common.LogImpl("822544391","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_mazapa.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("234013187","HttpUtils2Service (hc_ResponseSuccess): job completed multiple times - "+BA.NumberToString(_taskid),0); +anywheresoftware.b4a.keywords.Common.LogImpl("822413315","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("233685511",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(processBA)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("822085639",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(processBA)),0); //BA.debugLineNum = 35;BA.debugLine="Log(\"Switching to File.DirInternal\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("233685512","Switching to File.DirInternal",0); +anywheresoftware.b4a.keywords.Common.LogImpl("822085640","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_mazapa/keymon/lat/manageexternalstorage.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/manageexternalstorage.java index 10a6d7b..17f6cf0 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/manageexternalstorage.java +++ b/B4A/Objects/src/reparto_mazapa/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("263766529","Calling : "+_meventname+"_StorageAvailable",0); +__c.LogImpl("863832065","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_mazapa/keymon/lat/mapa_cliente.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/mapa_cliente.java index 508962b..29131a4 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/mapa_cliente.java +++ b/B4A/Objects/src/reparto_mazapa/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("264552961","Pressed",0); +anywheresoftware.b4a.keywords.Common.LogImpl("864618497","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_mazapa/keymon/lat/mapa_rutas.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/mapa_rutas.java index 07c49f0..8cf0705 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/mapa_rutas.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/mapa_rutas.java @@ -434,93 +434,93 @@ mostCurrent._todos = BA.NumberToString(1); return ""; } public static boolean _activity_keypress(int _key) throws Exception{ - //BA.debugLineNum = 341;BA.debugLine="Sub Activity_KeyPress (key As Int) As Boolean 'ign"; - //BA.debugLineNum = 343;BA.debugLine="If key=KeyCodes.KEYCODE_BACK Then"; + //BA.debugLineNum = 344;BA.debugLine="Sub Activity_KeyPress (key As Int) As Boolean 'ign"; + //BA.debugLineNum = 346;BA.debugLine="If key=KeyCodes.KEYCODE_BACK Then"; if (_key==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_BACK) { - //BA.debugLineNum = 345;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; + //BA.debugLineNum = 348;BA.debugLine="B4XPages.ShowPage(\"Principal\")"; mostCurrent._b4xpages._showpage /*String*/ (mostCurrent.activityBA,"Principal"); - //BA.debugLineNum = 346;BA.debugLine="Return False"; + //BA.debugLineNum = 349;BA.debugLine="Return False"; if (true) return anywheresoftware.b4a.keywords.Common.False; }; - //BA.debugLineNum = 350;BA.debugLine="End Sub"; + //BA.debugLineNum = 353;BA.debugLine="End Sub"; return false; } public static String _activity_pause(boolean _userclosed) throws Exception{ - //BA.debugLineNum = 301;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)"; - //BA.debugLineNum = 302;BA.debugLine="GPS.Stop"; + //BA.debugLineNum = 304;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)"; + //BA.debugLineNum = 305;BA.debugLine="GPS.Stop"; _gps.Stop(); - //BA.debugLineNum = 303;BA.debugLine="End Sub"; + //BA.debugLineNum = 306;BA.debugLine="End Sub"; return ""; } public static String _activity_resume() throws Exception{ - //BA.debugLineNum = 292;BA.debugLine="Sub Activity_Resume"; - //BA.debugLineNum = 299;BA.debugLine="End Sub"; + //BA.debugLineNum = 295;BA.debugLine="Sub Activity_Resume"; + //BA.debugLineNum = 302;BA.debugLine="End Sub"; return ""; } public static String _b_azul_click() throws Exception{ - //BA.debugLineNum = 331;BA.debugLine="Sub B_AZUL_Click"; - //BA.debugLineNum = 332;BA.debugLine="azul = 1"; + //BA.debugLineNum = 334;BA.debugLine="Sub B_AZUL_Click"; + //BA.debugLineNum = 335;BA.debugLine="azul = 1"; mostCurrent._azul = BA.NumberToString(1); - //BA.debugLineNum = 333;BA.debugLine="verde = 0"; + //BA.debugLineNum = 336;BA.debugLine="verde = 0"; mostCurrent._verde = BA.NumberToString(0); - //BA.debugLineNum = 334;BA.debugLine="rojo = 0"; + //BA.debugLineNum = 337;BA.debugLine="rojo = 0"; mostCurrent._rojo = BA.NumberToString(0); - //BA.debugLineNum = 335;BA.debugLine="todos = 0"; + //BA.debugLineNum = 338;BA.debugLine="todos = 0"; mostCurrent._todos = BA.NumberToString(0); - //BA.debugLineNum = 336;BA.debugLine="gmap.Clear"; + //BA.debugLineNum = 339;BA.debugLine="gmap.Clear"; mostCurrent._gmap.Clear(); - //BA.debugLineNum = 337;BA.debugLine="MapFragment1_Ready"; + //BA.debugLineNum = 340;BA.debugLine="MapFragment1_Ready"; _mapfragment1_ready(); - //BA.debugLineNum = 338;BA.debugLine="End Sub"; + //BA.debugLineNum = 341;BA.debugLine="End Sub"; return ""; } public static String _b_rojo_click() throws Exception{ - //BA.debugLineNum = 322;BA.debugLine="Sub B_ROJO_Click"; - //BA.debugLineNum = 323;BA.debugLine="rojo = 1"; + //BA.debugLineNum = 325;BA.debugLine="Sub B_ROJO_Click"; + //BA.debugLineNum = 326;BA.debugLine="rojo = 1"; mostCurrent._rojo = BA.NumberToString(1); - //BA.debugLineNum = 324;BA.debugLine="verde = 0"; + //BA.debugLineNum = 327;BA.debugLine="verde = 0"; mostCurrent._verde = BA.NumberToString(0); - //BA.debugLineNum = 325;BA.debugLine="azul = 0"; + //BA.debugLineNum = 328;BA.debugLine="azul = 0"; mostCurrent._azul = BA.NumberToString(0); - //BA.debugLineNum = 326;BA.debugLine="todos = 0"; + //BA.debugLineNum = 329;BA.debugLine="todos = 0"; mostCurrent._todos = BA.NumberToString(0); - //BA.debugLineNum = 327;BA.debugLine="gmap.Clear"; + //BA.debugLineNum = 330;BA.debugLine="gmap.Clear"; mostCurrent._gmap.Clear(); - //BA.debugLineNum = 328;BA.debugLine="MapFragment1_Ready"; + //BA.debugLineNum = 331;BA.debugLine="MapFragment1_Ready"; _mapfragment1_ready(); - //BA.debugLineNum = 329;BA.debugLine="End Sub"; + //BA.debugLineNum = 332;BA.debugLine="End Sub"; return ""; } public static String _b_todos_click() throws Exception{ - //BA.debugLineNum = 305;BA.debugLine="Sub B_TODOS_Click"; - //BA.debugLineNum = 306;BA.debugLine="todos =1"; + //BA.debugLineNum = 308;BA.debugLine="Sub B_TODOS_Click"; + //BA.debugLineNum = 309;BA.debugLine="todos =1"; mostCurrent._todos = BA.NumberToString(1); - //BA.debugLineNum = 307;BA.debugLine="verde = 0"; + //BA.debugLineNum = 310;BA.debugLine="verde = 0"; mostCurrent._verde = BA.NumberToString(0); - //BA.debugLineNum = 308;BA.debugLine="azul = 0"; + //BA.debugLineNum = 311;BA.debugLine="azul = 0"; mostCurrent._azul = BA.NumberToString(0); - //BA.debugLineNum = 309;BA.debugLine="rojo = 0"; + //BA.debugLineNum = 312;BA.debugLine="rojo = 0"; mostCurrent._rojo = BA.NumberToString(0); - //BA.debugLineNum = 310;BA.debugLine="MapFragment1_Ready"; + //BA.debugLineNum = 313;BA.debugLine="MapFragment1_Ready"; _mapfragment1_ready(); - //BA.debugLineNum = 311;BA.debugLine="End Sub"; + //BA.debugLineNum = 314;BA.debugLine="End Sub"; return ""; } public static String _b_verde_click() throws Exception{ - //BA.debugLineNum = 313;BA.debugLine="Sub B_VERDE_Click"; - //BA.debugLineNum = 314;BA.debugLine="verde = 1"; + //BA.debugLineNum = 316;BA.debugLine="Sub B_VERDE_Click"; + //BA.debugLineNum = 317;BA.debugLine="verde = 1"; mostCurrent._verde = BA.NumberToString(1); - //BA.debugLineNum = 315;BA.debugLine="azul = 0"; + //BA.debugLineNum = 318;BA.debugLine="azul = 0"; mostCurrent._azul = BA.NumberToString(0); - //BA.debugLineNum = 316;BA.debugLine="rojo = 0"; + //BA.debugLineNum = 319;BA.debugLine="rojo = 0"; mostCurrent._rojo = BA.NumberToString(0); - //BA.debugLineNum = 317;BA.debugLine="todos = 0"; + //BA.debugLineNum = 320;BA.debugLine="todos = 0"; mostCurrent._todos = BA.NumberToString(0); - //BA.debugLineNum = 318;BA.debugLine="gmap.Clear"; + //BA.debugLineNum = 321;BA.debugLine="gmap.Clear"; mostCurrent._gmap.Clear(); - //BA.debugLineNum = 319;BA.debugLine="MapFragment1_Ready"; + //BA.debugLineNum = 322;BA.debugLine="MapFragment1_Ready"; _mapfragment1_ready(); - //BA.debugLineNum = 320;BA.debugLine="End Sub"; + //BA.debugLineNum = 323;BA.debugLine="End Sub"; return ""; } public static String _globals() throws Exception{ @@ -603,8 +603,8 @@ mostCurrent._semana = ""; return ""; } public static String _gps_locationchanged(anywheresoftware.b4a.gps.LocationWrapper _parametro) throws Exception{ - //BA.debugLineNum = 271;BA.debugLine="Sub GPS_LocationChanged (Parametro As Location)"; - //BA.debugLineNum = 290;BA.debugLine="End Sub"; + //BA.debugLineNum = 274;BA.debugLine="Sub GPS_LocationChanged (Parametro As Location)"; + //BA.debugLineNum = 293;BA.debugLine="End Sub"; return ""; } public static void _mapfragment1_ready() throws Exception{ @@ -628,14 +628,14 @@ String _esterojo2 = ""; anywheresoftware.b4a.objects.MapFragmentWrapper.CameraPositionWrapper _aa = null; int step15; int limit15; -int step49; -int limit49; -int step74; -int limit74; -int step94; -int limit94; -int step119; -int limit119; +int step52; +int limit52; +int step77; +int limit77; +int step97; +int limit97; +int step122; +int limit122; @Override public void resume(BA ba, Object[] result) throws Exception{ @@ -656,9 +656,9 @@ parent.mostCurrent._gmap.IsInitialized(); parent._rp.CheckAndRequest(processBA,parent._rp.PERMISSION_ACCESS_FINE_LOCATION); //BA.debugLineNum = 113;BA.debugLine="Wait For Activity_PermissionResult (Permission As"; anywheresoftware.b4a.keywords.Common.WaitFor("activity_permissionresult", processBA, this, null); -this.state = 126; +this.state = 144; return; -case 126: +case 144: //C this.state = 1; _permission = (String) result[0]; @@ -681,7 +681,7 @@ if (true) break; case 1: //if -this.state = 59; +this.state = 77; if ((parent.mostCurrent._azul).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { this.state = 3; }if (true) break; @@ -692,7 +692,7 @@ this.state = 4; //BA.debugLineNum = 123;BA.debugLine="c.IsInitialized"; parent._c.IsInitialized(); //BA.debugLineNum = 124;BA.debugLine="c = Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO"; -parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LAT, CAT_CL_LONG, CAT_CL_RUTA from kmt_info where gestion = 0 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA"))); +parent._c = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LAT, CAT_CL_LONG, CAT_CL_RUTA from kmt_info where gestion = 0 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA"))); //BA.debugLineNum = 125;BA.debugLine="rutaAnt = \"\""; parent.mostCurrent._rutaant = ""; //BA.debugLineNum = 126;BA.debugLine="For i = 0 To c.RowCount -1"; @@ -700,22 +700,22 @@ if (true) break; case 4: //for -this.state = 52; +this.state = 70; step15 = 1; limit15 = (int) (parent._c.getRowCount()-1); _i = (int) (0) ; -this.state = 127; +this.state = 145; if (true) break; -case 127: +case 145: //C -this.state = 52; +this.state = 70; if ((step15 > 0 && _i <= limit15) || (step15 < 0 && _i >= limit15)) this.state = 6; if (true) break; -case 128: +case 146: //C -this.state = 127; +this.state = 145; _i = ((int)(0 + _i + step15)) ; if (true) break; @@ -903,526 +903,586 @@ if (true) break; case 51: //C -this.state = 128; +this.state = 52; ; - //BA.debugLineNum = 151;BA.debugLine="MARK_AZUL = gmap.AddMarker3(LatitudRu,LongitudR"; -parent.mostCurrent._mark_azul = parent.mostCurrent._gmap.AddMarker3(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,(android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),_esteazul2).getObject())); - //BA.debugLineNum = 152;BA.debugLine="MARK_AZUL.Snippet = \"R: \" & ruta & \" - \" & Tien"; -parent.mostCurrent._mark_azul.setSnippet("R: "+parent.mostCurrent._ruta+" - "+parent.mostCurrent._tienda); - //BA.debugLineNum = 153;BA.debugLine="rutaAnt = ruta"; -parent.mostCurrent._rutaant = parent.mostCurrent._ruta; - if (true) break; + //BA.debugLineNum = 149;BA.debugLine="If esteAzul = 6 Then esteAzul2= NumSerie&\"maker"; if (true) break; case 52: -//C -this.state = 53; -; - //BA.debugLineNum = 155;BA.debugLine="c .Close"; -parent._c.Close(); - //BA.debugLineNum = 156;BA.debugLine="If MARK_AZUL.IsInitialized Then LIST_AZUL.Add(MA"; -if (true) break; - -case 53: //if -this.state = 58; -if (parent.mostCurrent._mark_azul.IsInitialized()) { -this.state = 55; +this.state = 57; +if (_esteazul==6) { +this.state = 54; ;}if (true) break; -case 55: +case 54: +//C +this.state = 57; +_esteazul2 = BA.NumberToString(parent._numserie)+"maker-azul5.png"; +if (true) break; + +case 57: //C this.state = 58; -parent.mostCurrent._list_azul.Add((Object)(parent.mostCurrent._mark_azul.getObject())); +; + //BA.debugLineNum = 150;BA.debugLine="If esteAzul = 7 Then esteAzul2= NumSerie&\"maker"; if (true) break; case 58: -//C -this.state = 59; -; - if (true) break; -; - //BA.debugLineNum = 159;BA.debugLine="If verde = 1 Or todos = 1 Then"; - -case 59: //if -this.state = 92; -if ((parent.mostCurrent._verde).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { -this.state = 61; -}else { -this.state = 77; -}if (true) break; +this.state = 63; +if (_esteazul==7) { +this.state = 60; +;}if (true) break; -case 61: +case 60: //C -this.state = 62; - //BA.debugLineNum = 160;BA.debugLine="rutaAnt = \"\""; -parent.mostCurrent._rutaant = ""; - //BA.debugLineNum = 161;BA.debugLine="c2.IsInitialized"; -parent._c2.IsInitialized(); - //BA.debugLineNum = 162;BA.debugLine="c2=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO,"; -parent._c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA"))); - //BA.debugLineNum = 163;BA.debugLine="For i = 0 To c2.RowCount -1"; +this.state = 63; +_esteazul2 = BA.NumberToString(parent._numserie)+"maker-azul7.png"; if (true) break; -case 62: -//for -this.state = 75; -step49 = 1; -limit49 = (int) (parent._c2.getRowCount()-1); -_i = (int) (0) ; -this.state = 129; -if (true) break; - -case 129: +case 63: //C -this.state = 75; -if ((step49 > 0 && _i <= limit49) || (step49 < 0 && _i >= limit49)) this.state = 64; -if (true) break; - -case 130: -//C -this.state = 129; -_i = ((int)(0 + _i + step49)) ; +this.state = 64; +; + //BA.debugLineNum = 151;BA.debugLine="If esteAzul = 8 Then esteAzul2= NumSerie&\"maker"; if (true) break; case 64: -//C -this.state = 65; - //BA.debugLineNum = 164;BA.debugLine="c2.Position = i"; -parent._c2.setPosition(_i); - //BA.debugLineNum = 165;BA.debugLine="LongitudRU = c2.GetString(\"CAT_CL_LONG\")"; -parent._longitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LONG"))); - //BA.debugLineNum = 166;BA.debugLine="LatitudRu = c2.GetString(\"CAT_CL_LAT\")"; -parent._latitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LAT"))); - //BA.debugLineNum = 167;BA.debugLine="CODIGO=c2.GetString(\"CAT_CL_CODIGO\")"; -parent.mostCurrent._codigo = parent._c2.GetString("CAT_CL_CODIGO"); - //BA.debugLineNum = 168;BA.debugLine="Tienda= c2.GetString(\"CAT_CL_NOMBRE\")"; -parent.mostCurrent._tienda = parent._c2.GetString("CAT_CL_NOMBRE"); - //BA.debugLineNum = 169;BA.debugLine="ruta = c2.GetString(\"CAT_CL_RUTA\")"; -parent.mostCurrent._ruta = parent._c2.GetString("CAT_CL_RUTA"); - //BA.debugLineNum = 170;BA.debugLine="If c2.GetString(\"SECUENCIA\") = \"null\" Then"; -if (true) break; - -case 65: //if -this.state = 70; -if ((parent._c2.GetString("SECUENCIA")).equals("null")) { -this.state = 67; -}else { this.state = 69; -}if (true) break; +if (_esteazul==8) { +this.state = 66; +;}if (true) break; -case 67: +case 66: //C -this.state = 70; - //BA.debugLineNum = 171;BA.debugLine="NumSerie = 0"; -parent._numserie = (int) (0); - if (true) break; +this.state = 69; +_esteazul2 = BA.NumberToString(parent._numserie)+"maker-azul8.png"; +if (true) break; case 69: //C -this.state = 70; - //BA.debugLineNum = 173;BA.debugLine="NumSerie = c2.GetString(\"SECUENCIA\")"; -parent._numserie = (int)(Double.parseDouble(parent._c2.GetString("SECUENCIA"))); +this.state = 146; +; + //BA.debugLineNum = 154;BA.debugLine="MARK_AZUL = gmap.AddMarker3(LatitudRu,LongitudR"; +parent.mostCurrent._mark_azul = parent.mostCurrent._gmap.AddMarker3(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,(android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),_esteazul2).getObject())); + //BA.debugLineNum = 155;BA.debugLine="MARK_AZUL.Snippet = \"R: \" & ruta & \" - \" & Tien"; +parent.mostCurrent._mark_azul.setSnippet("R: "+parent.mostCurrent._ruta+" - "+parent.mostCurrent._tienda); + //BA.debugLineNum = 156;BA.debugLine="rutaAnt = ruta"; +parent.mostCurrent._rutaant = parent.mostCurrent._ruta; if (true) break; +if (true) break; case 70: //C this.state = 71; ; - //BA.debugLineNum = 175;BA.debugLine="Private s As Cursor = Starter.skmt.ExecQuery($\""; -_s = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); -_s = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select indice from waypoints where codigo = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(parent.mostCurrent._codigo))+"'")))); - //BA.debugLineNum = 176;BA.debugLine="If s.RowCount > 0 Then"; + //BA.debugLineNum = 158;BA.debugLine="c .Close"; +parent._c.Close(); + //BA.debugLineNum = 159;BA.debugLine="If MARK_AZUL.IsInitialized Then LIST_AZUL.Add(MA"; if (true) break; case 71: //if -this.state = 74; -if (_s.getRowCount()>0) { +this.state = 76; +if (parent.mostCurrent._mark_azul.IsInitialized()) { this.state = 73; -}if (true) break; +;}if (true) break; case 73: //C -this.state = 74; - //BA.debugLineNum = 177;BA.debugLine="s.Position = 0"; -_s.setPosition((int) (0)); - //BA.debugLineNum = 178;BA.debugLine="NumSerie = s.GetString(\"indice\")"; -parent._numserie = (int)(Double.parseDouble(_s.GetString("indice"))); - if (true) break; - -case 74: -//C -this.state = 130; -; - //BA.debugLineNum = 180;BA.debugLine="MARK_VERDE = gmap.AddMarker3(LatitudRu,Longitud"; -parent.mostCurrent._mark_verde = parent.mostCurrent._gmap.AddMarker3(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,(android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),BA.NumberToString(parent._numserie)+"marker-verde.png").getObject())); - //BA.debugLineNum = 181;BA.debugLine="MARK_VERDE.Snippet = \"R:\" & ruta & \", \" & Tiend"; -parent.mostCurrent._mark_verde.setSnippet("R:"+parent.mostCurrent._ruta+", "+parent.mostCurrent._tienda); - if (true) break; +this.state = 76; +parent.mostCurrent._list_azul.Add((Object)(parent.mostCurrent._mark_azul.getObject())); if (true) break; -case 75: +case 76: //C -this.state = 92; +this.state = 77; ; if (true) break; +; + //BA.debugLineNum = 162;BA.debugLine="If verde = 1 Or todos = 1 Then"; case 77: -//C -this.state = 78; - //BA.debugLineNum = 184;BA.debugLine="If verde = 1 Or todos = 1 Then"; -if (true) break; - -case 78: //if -this.state = 91; +this.state = 110; if ((parent.mostCurrent._verde).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { -this.state = 80; +this.state = 79; +}else { +this.state = 95; }if (true) break; -case 80: +case 79: //C -this.state = 81; - //BA.debugLineNum = 185;BA.debugLine="rutaAnt = \"\""; +this.state = 80; + //BA.debugLineNum = 163;BA.debugLine="rutaAnt = \"\""; parent.mostCurrent._rutaant = ""; - //BA.debugLineNum = 186;BA.debugLine="c2.IsInitialized"; + //BA.debugLineNum = 164;BA.debugLine="c2.IsInitialized"; parent._c2.IsInitialized(); - //BA.debugLineNum = 187;BA.debugLine="c2=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO"; -parent._c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA"))); - //BA.debugLineNum = 188;BA.debugLine="For i = 0 To c2.RowCount -1"; + //BA.debugLineNum = 165;BA.debugLine="c2=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO,"; +parent._c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA"))); + //BA.debugLineNum = 166;BA.debugLine="For i = 0 To c2.RowCount -1"; if (true) break; -case 81: +case 80: //for -this.state = 84; -step74 = 1; -limit74 = (int) (parent._c2.getRowCount()-1); +this.state = 93; +step52 = 1; +limit52 = (int) (parent._c2.getRowCount()-1); _i = (int) (0) ; -this.state = 131; +this.state = 147; if (true) break; -case 131: +case 147: //C -this.state = 84; -if ((step74 > 0 && _i <= limit74) || (step74 < 0 && _i >= limit74)) this.state = 83; +this.state = 93; +if ((step52 > 0 && _i <= limit52) || (step52 < 0 && _i >= limit52)) this.state = 82; if (true) break; -case 132: +case 148: //C -this.state = 131; -_i = ((int)(0 + _i + step74)) ; +this.state = 147; +_i = ((int)(0 + _i + step52)) ; +if (true) break; + +case 82: +//C +this.state = 83; + //BA.debugLineNum = 167;BA.debugLine="c2.Position = i"; +parent._c2.setPosition(_i); + //BA.debugLineNum = 168;BA.debugLine="LongitudRU = c2.GetString(\"CAT_CL_LONG\")"; +parent._longitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LONG"))); + //BA.debugLineNum = 169;BA.debugLine="LatitudRu = c2.GetString(\"CAT_CL_LAT\")"; +parent._latitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LAT"))); + //BA.debugLineNum = 170;BA.debugLine="CODIGO=c2.GetString(\"CAT_CL_CODIGO\")"; +parent.mostCurrent._codigo = parent._c2.GetString("CAT_CL_CODIGO"); + //BA.debugLineNum = 171;BA.debugLine="Tienda= c2.GetString(\"CAT_CL_NOMBRE\")"; +parent.mostCurrent._tienda = parent._c2.GetString("CAT_CL_NOMBRE"); + //BA.debugLineNum = 172;BA.debugLine="ruta = c2.GetString(\"CAT_CL_RUTA\")"; +parent.mostCurrent._ruta = parent._c2.GetString("CAT_CL_RUTA"); + //BA.debugLineNum = 173;BA.debugLine="If c2.GetString(\"SECUENCIA\") = \"null\" Then"; if (true) break; case 83: -//C -this.state = 132; - //BA.debugLineNum = 189;BA.debugLine="c2.Position = i"; -parent._c2.setPosition(_i); - //BA.debugLineNum = 190;BA.debugLine="LongitudRU = c2.GetString(\"CAT_CL_LONG\")"; -parent._longitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LONG"))); - //BA.debugLineNum = 191;BA.debugLine="LatitudRu = c2.GetString(\"CAT_CL_LAT\")"; -parent._latitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LAT"))); - //BA.debugLineNum = 192;BA.debugLine="CODIGO=c2.GetString(\"CAT_CL_CODIGO\")"; -parent.mostCurrent._codigo = parent._c2.GetString("CAT_CL_CODIGO"); - //BA.debugLineNum = 193;BA.debugLine="Tienda= c2.GetString(\"CAT_CL_NOMBRE\")"; -parent.mostCurrent._tienda = parent._c2.GetString("CAT_CL_NOMBRE"); - //BA.debugLineNum = 194;BA.debugLine="ruta = c2.GetString(\"CAT_CL_RUTA\")"; -parent.mostCurrent._ruta = parent._c2.GetString("CAT_CL_RUTA"); - //BA.debugLineNum = 195;BA.debugLine="MARK_VERDE = gmap.AddMarker2(LatitudRu,Longitu"; -parent.mostCurrent._mark_verde = parent.mostCurrent._gmap.AddMarker2(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,parent.mostCurrent._gmap.HUE_GREEN); - //BA.debugLineNum = 196;BA.debugLine="MARK_VERDE.Snippet = \"R:\" & ruta & \", \" & Tien"; -parent.mostCurrent._mark_verde.setSnippet("R:"+parent.mostCurrent._ruta+", "+parent.mostCurrent._tienda); - if (true) break; -if (true) break; - -case 84: -//C +//if +this.state = 88; +if ((parent._c2.GetString("SECUENCIA")).equals("null")) { this.state = 85; -; - //BA.debugLineNum = 198;BA.debugLine="c2 .Close"; -parent._c2.Close(); - //BA.debugLineNum = 199;BA.debugLine="If MARK_VERDE.IsInitialized Then LIST_VERDE.Add"; -if (true) break; +}else { +this.state = 87; +}if (true) break; case 85: -//if -this.state = 90; -if (parent.mostCurrent._mark_verde.IsInitialized()) { -this.state = 87; -;}if (true) break; +//C +this.state = 88; + //BA.debugLineNum = 174;BA.debugLine="NumSerie = 0"; +parent._numserie = (int) (0); + if (true) break; case 87: //C -this.state = 90; -parent.mostCurrent._list_verde.Add((Object)(parent.mostCurrent._mark_verde.getObject())); +this.state = 88; + //BA.debugLineNum = 176;BA.debugLine="NumSerie = c2.GetString(\"SECUENCIA\")"; +parent._numserie = (int)(Double.parseDouble(parent._c2.GetString("SECUENCIA"))); + if (true) break; + +case 88: +//C +this.state = 89; +; + //BA.debugLineNum = 178;BA.debugLine="Private s As Cursor = Starter.skmt.ExecQuery($\""; +_s = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); +_s = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select indice from waypoints where codigo = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(parent.mostCurrent._codigo))+"'")))); + //BA.debugLineNum = 179;BA.debugLine="If s.RowCount > 0 Then"; if (true) break; -case 90: -//C +case 89: +//if +this.state = 92; +if (_s.getRowCount()>0) { this.state = 91; -; - if (true) break; +}if (true) break; case 91: //C this.state = 92; -; + //BA.debugLineNum = 180;BA.debugLine="s.Position = 0"; +_s.setPosition((int) (0)); + //BA.debugLineNum = 181;BA.debugLine="NumSerie = s.GetString(\"indice\")"; +parent._numserie = (int)(Double.parseDouble(_s.GetString("indice"))); if (true) break; case 92: //C -this.state = 93; +this.state = 148; ; - //BA.debugLineNum = 203;BA.debugLine="Private esteRojo As Int = 0"; -_esterojo = (int) (0); - //BA.debugLineNum = 204;BA.debugLine="Private esteRojo2 As String"; -_esterojo2 = ""; - //BA.debugLineNum = 205;BA.debugLine="If rojo = 1 Or todos = 1 Then"; + //BA.debugLineNum = 183;BA.debugLine="MARK_VERDE = gmap.AddMarker3(LatitudRu,Longitud"; +parent.mostCurrent._mark_verde = parent.mostCurrent._gmap.AddMarker3(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,(android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),BA.NumberToString(parent._numserie)+"marker-verde.png").getObject())); + //BA.debugLineNum = 184;BA.debugLine="MARK_VERDE.Snippet = \"R:\" & ruta & \", \" & Tiend"; +parent.mostCurrent._mark_verde.setSnippet("R:"+parent.mostCurrent._ruta+", "+parent.mostCurrent._tienda); + if (true) break; if (true) break; case 93: -//if -this.state = 125; -if ((parent.mostCurrent._rojo).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { -this.state = 95; -}else { -this.state = 111; -}if (true) break; +//C +this.state = 110; +; + if (true) break; case 95: //C this.state = 96; - //BA.debugLineNum = 206;BA.debugLine="rutaAnt = \"\""; -parent.mostCurrent._rutaant = ""; - //BA.debugLineNum = 207;BA.debugLine="c3.IsInitialized"; -parent._c3.IsInitialized(); - //BA.debugLineNum = 208;BA.debugLine="c3=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO,"; -parent._c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA"))); - //BA.debugLineNum = 209;BA.debugLine="For i = 0 To c3.RowCount -1"; + //BA.debugLineNum = 187;BA.debugLine="If verde = 1 Or todos = 1 Then"; if (true) break; case 96: -//for +//if this.state = 109; -step94 = 1; -limit94 = (int) (parent._c3.getRowCount()-1); -_i = (int) (0) ; -this.state = 133; -if (true) break; - -case 133: -//C -this.state = 109; -if ((step94 > 0 && _i <= limit94) || (step94 < 0 && _i >= limit94)) this.state = 98; -if (true) break; - -case 134: -//C -this.state = 133; -_i = ((int)(0 + _i + step94)) ; -if (true) break; +if ((parent.mostCurrent._verde).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { +this.state = 98; +}if (true) break; case 98: //C this.state = 99; - //BA.debugLineNum = 210;BA.debugLine="c3.Position = i"; -parent._c3.setPosition(_i); - //BA.debugLineNum = 211;BA.debugLine="LongitudRU = c3.GetDouble(\"CAT_CL_LONG\")"; -parent._longitudru = parent._c3.GetDouble("CAT_CL_LONG"); - //BA.debugLineNum = 212;BA.debugLine="LatitudRu = c3.GetDouble(\"CAT_CL_LAT\")"; -parent._latitudru = parent._c3.GetDouble("CAT_CL_LAT"); - //BA.debugLineNum = 213;BA.debugLine="Tienda= c3.GetString(\"CAT_CL_NOMBRE\")"; -parent.mostCurrent._tienda = parent._c3.GetString("CAT_CL_NOMBRE"); - //BA.debugLineNum = 214;BA.debugLine="ruta = c3.GetString(\"CAT_CL_RUTA\")"; -parent.mostCurrent._ruta = parent._c3.GetString("CAT_CL_RUTA"); - //BA.debugLineNum = 215;BA.debugLine="CODIGO=c3.GetString(\"CAT_CL_CODIGO\")"; -parent.mostCurrent._codigo = parent._c3.GetString("CAT_CL_CODIGO"); - //BA.debugLineNum = 216;BA.debugLine="If c3.GetString(\"SECUENCIA\") = \"null\" Then"; + //BA.debugLineNum = 188;BA.debugLine="rutaAnt = \"\""; +parent.mostCurrent._rutaant = ""; + //BA.debugLineNum = 189;BA.debugLine="c2.IsInitialized"; +parent._c2.IsInitialized(); + //BA.debugLineNum = 190;BA.debugLine="c2=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO"; +parent._c2 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 2 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA"))); + //BA.debugLineNum = 191;BA.debugLine="For i = 0 To c2.RowCount -1"; if (true) break; case 99: -//if -this.state = 104; -if ((parent._c3.GetString("SECUENCIA")).equals("null")) { -this.state = 101; -}else { -this.state = 103; -}if (true) break; +//for +this.state = 102; +step77 = 1; +limit77 = (int) (parent._c2.getRowCount()-1); +_i = (int) (0) ; +this.state = 149; +if (true) break; + +case 149: +//C +this.state = 102; +if ((step77 > 0 && _i <= limit77) || (step77 < 0 && _i >= limit77)) this.state = 101; +if (true) break; + +case 150: +//C +this.state = 149; +_i = ((int)(0 + _i + step77)) ; +if (true) break; case 101: //C -this.state = 104; - //BA.debugLineNum = 217;BA.debugLine="NumSerie = 0"; -parent._numserie = (int) (0); +this.state = 150; + //BA.debugLineNum = 192;BA.debugLine="c2.Position = i"; +parent._c2.setPosition(_i); + //BA.debugLineNum = 193;BA.debugLine="LongitudRU = c2.GetString(\"CAT_CL_LONG\")"; +parent._longitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LONG"))); + //BA.debugLineNum = 194;BA.debugLine="LatitudRu = c2.GetString(\"CAT_CL_LAT\")"; +parent._latitudru = (double)(Double.parseDouble(parent._c2.GetString("CAT_CL_LAT"))); + //BA.debugLineNum = 195;BA.debugLine="CODIGO=c2.GetString(\"CAT_CL_CODIGO\")"; +parent.mostCurrent._codigo = parent._c2.GetString("CAT_CL_CODIGO"); + //BA.debugLineNum = 196;BA.debugLine="Tienda= c2.GetString(\"CAT_CL_NOMBRE\")"; +parent.mostCurrent._tienda = parent._c2.GetString("CAT_CL_NOMBRE"); + //BA.debugLineNum = 197;BA.debugLine="ruta = c2.GetString(\"CAT_CL_RUTA\")"; +parent.mostCurrent._ruta = parent._c2.GetString("CAT_CL_RUTA"); + //BA.debugLineNum = 198;BA.debugLine="MARK_VERDE = gmap.AddMarker2(LatitudRu,Longitu"; +parent.mostCurrent._mark_verde = parent.mostCurrent._gmap.AddMarker2(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,parent.mostCurrent._gmap.HUE_GREEN); + //BA.debugLineNum = 199;BA.debugLine="MARK_VERDE.Snippet = \"R:\" & ruta & \", \" & Tien"; +parent.mostCurrent._mark_verde.setSnippet("R:"+parent.mostCurrent._ruta+", "+parent.mostCurrent._tienda); if (true) break; - -case 103: -//C -this.state = 104; - //BA.debugLineNum = 219;BA.debugLine="NumSerie = c3.GetString(\"SECUENCIA\")"; -parent._numserie = (int)(Double.parseDouble(parent._c3.GetString("SECUENCIA"))); - if (true) break; - -case 104: -//C -this.state = 105; -; - //BA.debugLineNum = 221;BA.debugLine="Private s As Cursor = Starter.skmt.ExecQuery($\""; -_s = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); -_s = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select indice from waypoints where codigo = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(parent.mostCurrent._codigo))+"'")))); - //BA.debugLineNum = 222;BA.debugLine="If s.RowCount > 0 Then"; if (true) break; -case 105: +case 102: +//C +this.state = 103; +; + //BA.debugLineNum = 201;BA.debugLine="c2 .Close"; +parent._c2.Close(); + //BA.debugLineNum = 202;BA.debugLine="If MARK_VERDE.IsInitialized Then LIST_VERDE.Add"; +if (true) break; + +case 103: //if this.state = 108; -if (_s.getRowCount()>0) { -this.state = 107; -}if (true) break; +if (parent.mostCurrent._mark_verde.IsInitialized()) { +this.state = 105; +;}if (true) break; -case 107: +case 105: //C this.state = 108; - //BA.debugLineNum = 223;BA.debugLine="s.Position = 0"; -_s.setPosition((int) (0)); - //BA.debugLineNum = 224;BA.debugLine="NumSerie = s.GetString(\"indice\")"; -parent._numserie = (int)(Double.parseDouble(_s.GetString("indice"))); - if (true) break; +parent.mostCurrent._list_verde.Add((Object)(parent.mostCurrent._mark_verde.getObject())); +if (true) break; case 108: //C -this.state = 134; +this.state = 109; ; - //BA.debugLineNum = 226;BA.debugLine="MARK_ROJO = gmap.AddMarker3(LatitudRu,LongitudR"; + if (true) break; + +case 109: +//C +this.state = 110; +; + if (true) break; + +case 110: +//C +this.state = 111; +; + //BA.debugLineNum = 206;BA.debugLine="Private esteRojo As Int = 0"; +_esterojo = (int) (0); + //BA.debugLineNum = 207;BA.debugLine="Private esteRojo2 As String"; +_esterojo2 = ""; + //BA.debugLineNum = 208;BA.debugLine="If rojo = 1 Or todos = 1 Then"; +if (true) break; + +case 111: +//if +this.state = 143; +if ((parent.mostCurrent._rojo).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { +this.state = 113; +}else { +this.state = 129; +}if (true) break; + +case 113: +//C +this.state = 114; + //BA.debugLineNum = 209;BA.debugLine="rutaAnt = \"\""; +parent.mostCurrent._rutaant = ""; + //BA.debugLineNum = 210;BA.debugLine="c3.IsInitialized"; +parent._c3.IsInitialized(); + //BA.debugLineNum = 211;BA.debugLine="c3=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO,"; +parent._c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, IFNULL(SECUENCIA,0) AS SECUENCIA, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA"))); + //BA.debugLineNum = 212;BA.debugLine="For i = 0 To c3.RowCount -1"; +if (true) break; + +case 114: +//for +this.state = 127; +step97 = 1; +limit97 = (int) (parent._c3.getRowCount()-1); +_i = (int) (0) ; +this.state = 151; +if (true) break; + +case 151: +//C +this.state = 127; +if ((step97 > 0 && _i <= limit97) || (step97 < 0 && _i >= limit97)) this.state = 116; +if (true) break; + +case 152: +//C +this.state = 151; +_i = ((int)(0 + _i + step97)) ; +if (true) break; + +case 116: +//C +this.state = 117; + //BA.debugLineNum = 213;BA.debugLine="c3.Position = i"; +parent._c3.setPosition(_i); + //BA.debugLineNum = 214;BA.debugLine="LongitudRU = c3.GetDouble(\"CAT_CL_LONG\")"; +parent._longitudru = parent._c3.GetDouble("CAT_CL_LONG"); + //BA.debugLineNum = 215;BA.debugLine="LatitudRu = c3.GetDouble(\"CAT_CL_LAT\")"; +parent._latitudru = parent._c3.GetDouble("CAT_CL_LAT"); + //BA.debugLineNum = 216;BA.debugLine="Tienda= c3.GetString(\"CAT_CL_NOMBRE\")"; +parent.mostCurrent._tienda = parent._c3.GetString("CAT_CL_NOMBRE"); + //BA.debugLineNum = 217;BA.debugLine="ruta = c3.GetString(\"CAT_CL_RUTA\")"; +parent.mostCurrent._ruta = parent._c3.GetString("CAT_CL_RUTA"); + //BA.debugLineNum = 218;BA.debugLine="CODIGO=c3.GetString(\"CAT_CL_CODIGO\")"; +parent.mostCurrent._codigo = parent._c3.GetString("CAT_CL_CODIGO"); + //BA.debugLineNum = 219;BA.debugLine="If c3.GetString(\"SECUENCIA\") = \"null\" Then"; +if (true) break; + +case 117: +//if +this.state = 122; +if ((parent._c3.GetString("SECUENCIA")).equals("null")) { +this.state = 119; +}else { +this.state = 121; +}if (true) break; + +case 119: +//C +this.state = 122; + //BA.debugLineNum = 220;BA.debugLine="NumSerie = 0"; +parent._numserie = (int) (0); + if (true) break; + +case 121: +//C +this.state = 122; + //BA.debugLineNum = 222;BA.debugLine="NumSerie = c3.GetString(\"SECUENCIA\")"; +parent._numserie = (int)(Double.parseDouble(parent._c3.GetString("SECUENCIA"))); + if (true) break; + +case 122: +//C +this.state = 123; +; + //BA.debugLineNum = 224;BA.debugLine="Private s As Cursor = Starter.skmt.ExecQuery($\""; +_s = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); +_s = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery(("select indice from waypoints where codigo = '"+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(parent.mostCurrent._codigo))+"'")))); + //BA.debugLineNum = 225;BA.debugLine="If s.RowCount > 0 Then"; +if (true) break; + +case 123: +//if +this.state = 126; +if (_s.getRowCount()>0) { +this.state = 125; +}if (true) break; + +case 125: +//C +this.state = 126; + //BA.debugLineNum = 226;BA.debugLine="s.Position = 0"; +_s.setPosition((int) (0)); + //BA.debugLineNum = 227;BA.debugLine="NumSerie = s.GetString(\"indice\")"; +parent._numserie = (int)(Double.parseDouble(_s.GetString("indice"))); + if (true) break; + +case 126: +//C +this.state = 152; +; + //BA.debugLineNum = 229;BA.debugLine="MARK_ROJO = gmap.AddMarker3(LatitudRu,LongitudR"; parent.mostCurrent._mark_rojo = parent.mostCurrent._gmap.AddMarker3(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,(android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),BA.NumberToString(parent._numserie)+"marker-rojo.png").getObject())); - //BA.debugLineNum = 227;BA.debugLine="MARK_ROJO.Snippet= \"R:\" & ruta & \", \" & Tienda"; + //BA.debugLineNum = 230;BA.debugLine="MARK_ROJO.Snippet= \"R:\" & ruta & \", \" & Tienda"; parent.mostCurrent._mark_rojo.setSnippet("R:"+parent.mostCurrent._ruta+", "+parent.mostCurrent._tienda); if (true) break; if (true) break; -case 109: +case 127: //C -this.state = 125; +this.state = 143; ; if (true) break; -case 111: +case 129: //C -this.state = 112; - //BA.debugLineNum = 230;BA.debugLine="If rojo = 1 Or todos = 1 Then"; +this.state = 130; + //BA.debugLineNum = 233;BA.debugLine="If rojo = 1 Or todos = 1 Then"; if (true) break; -case 112: +case 130: //if -this.state = 124; +this.state = 142; if ((parent.mostCurrent._rojo).equals(BA.NumberToString(1)) || (parent.mostCurrent._todos).equals(BA.NumberToString(1))) { -this.state = 114; +this.state = 132; }if (true) break; -case 114: +case 132: //C -this.state = 115; - //BA.debugLineNum = 231;BA.debugLine="rutaAnt = \"\""; +this.state = 133; + //BA.debugLineNum = 234;BA.debugLine="rutaAnt = \"\""; parent.mostCurrent._rutaant = ""; - //BA.debugLineNum = 232;BA.debugLine="c3.IsInitialized"; + //BA.debugLineNum = 235;BA.debugLine="c3.IsInitialized"; parent._c3.IsInitialized(); - //BA.debugLineNum = 233;BA.debugLine="c3=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO"; -parent._c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 order by CAT_CL_RUTA"))); - //BA.debugLineNum = 234;BA.debugLine="For i = 0 To c3.RowCount -1"; + //BA.debugLineNum = 236;BA.debugLine="c3=Starter.skmt.ExecQuery(\"select CAT_CL_CODIGO"; +parent._c3 = (anywheresoftware.b4a.sql.SQL.CursorWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.sql.SQL.CursorWrapper(), (android.database.Cursor)(parent.mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecQuery("select CAT_CL_CODIGO, CAT_CL_NOMBRE, CAT_CL_LONG, CAT_CL_LAT, CAT_CL_RUTA from kmt_info where gestion = 3 and CAT_CL_LAT is not null and CAT_CL_LONG is not null and CAT_CL_LAT <> 0 and CAT_CL_LONG <> 0 AND CAT_CL_CODIGO <> 63403 order by CAT_CL_RUTA"))); + //BA.debugLineNum = 237;BA.debugLine="For i = 0 To c3.RowCount -1"; if (true) break; -case 115: +case 133: //for -this.state = 118; -step119 = 1; -limit119 = (int) (parent._c3.getRowCount()-1); +this.state = 136; +step122 = 1; +limit122 = (int) (parent._c3.getRowCount()-1); _i = (int) (0) ; -this.state = 135; +this.state = 153; +if (true) break; + +case 153: +//C +this.state = 136; +if ((step122 > 0 && _i <= limit122) || (step122 < 0 && _i >= limit122)) this.state = 135; +if (true) break; + +case 154: +//C +this.state = 153; +_i = ((int)(0 + _i + step122)) ; if (true) break; case 135: //C -this.state = 118; -if ((step119 > 0 && _i <= limit119) || (step119 < 0 && _i >= limit119)) this.state = 117; -if (true) break; - -case 136: -//C -this.state = 135; -_i = ((int)(0 + _i + step119)) ; -if (true) break; - -case 117: -//C -this.state = 136; - //BA.debugLineNum = 235;BA.debugLine="c3.Position = i"; +this.state = 154; + //BA.debugLineNum = 238;BA.debugLine="c3.Position = i"; parent._c3.setPosition(_i); - //BA.debugLineNum = 236;BA.debugLine="LongitudRU = c3.GetDouble(\"CAT_CL_LONG\")"; + //BA.debugLineNum = 239;BA.debugLine="LongitudRU = c3.GetDouble(\"CAT_CL_LONG\")"; parent._longitudru = parent._c3.GetDouble("CAT_CL_LONG"); - //BA.debugLineNum = 237;BA.debugLine="LatitudRu = c3.GetDouble(\"CAT_CL_LAT\")"; + //BA.debugLineNum = 240;BA.debugLine="LatitudRu = c3.GetDouble(\"CAT_CL_LAT\")"; parent._latitudru = parent._c3.GetDouble("CAT_CL_LAT"); - //BA.debugLineNum = 238;BA.debugLine="Tienda= c3.GetString(\"CAT_CL_NOMBRE\")"; + //BA.debugLineNum = 241;BA.debugLine="Tienda= c3.GetString(\"CAT_CL_NOMBRE\")"; parent.mostCurrent._tienda = parent._c3.GetString("CAT_CL_NOMBRE"); - //BA.debugLineNum = 239;BA.debugLine="ruta = c2.GetString(\"CAT_CL_RUTA\")"; + //BA.debugLineNum = 242;BA.debugLine="ruta = c2.GetString(\"CAT_CL_RUTA\")"; parent.mostCurrent._ruta = parent._c2.GetString("CAT_CL_RUTA"); - //BA.debugLineNum = 240;BA.debugLine="CODIGO=c3.GetString(\"CAT_CL_CODIGO\")"; + //BA.debugLineNum = 243;BA.debugLine="CODIGO=c3.GetString(\"CAT_CL_CODIGO\")"; parent.mostCurrent._codigo = parent._c3.GetString("CAT_CL_CODIGO"); - //BA.debugLineNum = 241;BA.debugLine="MARK_ROJO = gmap.AddMarker2(LatitudRu,Longitud"; + //BA.debugLineNum = 244;BA.debugLine="MARK_ROJO = gmap.AddMarker2(LatitudRu,Longitud"; parent.mostCurrent._mark_rojo = parent.mostCurrent._gmap.AddMarker2(parent._latitudru,parent._longitudru,parent.mostCurrent._codigo,parent.mostCurrent._gmap.HUE_RED); - //BA.debugLineNum = 242;BA.debugLine="MARK_ROJO.Snippet= \"R:\" & ruta & \", \" & Tienda"; + //BA.debugLineNum = 245;BA.debugLine="MARK_ROJO.Snippet= \"R:\" & ruta & \", \" & Tienda"; parent.mostCurrent._mark_rojo.setSnippet("R:"+parent.mostCurrent._ruta+", "+parent.mostCurrent._tienda); if (true) break; if (true) break; ; - //BA.debugLineNum = 244;BA.debugLine="If MARK_ROJO.IsInitialized Then LIST_ROJO.Add(M"; + //BA.debugLineNum = 247;BA.debugLine="If MARK_ROJO.IsInitialized Then LIST_ROJO.Add(M"; -case 118: +case 136: //if -this.state = 123; +this.state = 141; if (parent.mostCurrent._mark_rojo.IsInitialized()) { -this.state = 120; +this.state = 138; ;}if (true) break; -case 120: +case 138: //C -this.state = 123; +this.state = 141; parent.mostCurrent._list_rojo.Add((Object)(parent.mostCurrent._mark_rojo.getObject())); if (true) break; -case 123: +case 141: //C -this.state = 124; +this.state = 142; ; - //BA.debugLineNum = 245;BA.debugLine="c3.Close"; + //BA.debugLineNum = 248;BA.debugLine="c3.Close"; parent._c3.Close(); if (true) break; -case 124: +case 142: //C -this.state = 125; +this.state = 143; ; if (true) break; -case 125: +case 143: //C this.state = -1; ; - //BA.debugLineNum = 253;BA.debugLine="Dim aa As CameraPosition"; + //BA.debugLineNum = 256;BA.debugLine="Dim aa As CameraPosition"; _aa = new anywheresoftware.b4a.objects.MapFragmentWrapper.CameraPositionWrapper(); - //BA.debugLineNum = 254;BA.debugLine="aa.Initialize(LatitudRu,LongitudRU,15)''' RECOMEN"; + //BA.debugLineNum = 257;BA.debugLine="aa.Initialize(LatitudRu,LongitudRU,15)''' RECOMEN"; _aa.Initialize(parent._latitudru,parent._longitudru,(float) (15)); - //BA.debugLineNum = 255;BA.debugLine="gmap.AnimateCamera(aa)"; + //BA.debugLineNum = 258;BA.debugLine="gmap.AnimateCamera(aa)"; parent.mostCurrent._gmap.AnimateCamera((com.google.android.gms.maps.model.CameraPosition)(_aa.getObject())); - //BA.debugLineNum = 258;BA.debugLine="Dim OnInfoWindowClickListener1 As OnInfoWindowCli"; + //BA.debugLineNum = 261;BA.debugLine="Dim OnInfoWindowClickListener1 As OnInfoWindowCli"; parent.mostCurrent._oninfowindowclicklistener1 = new uk.co.martinpearman.b4a.com.google.android.gms.maps.googlemap.OnInfoWindowClickListener(); - //BA.debugLineNum = 259;BA.debugLine="OnInfoWindowClickListener1.Initialize(\"OnInfoWind"; + //BA.debugLineNum = 262;BA.debugLine="OnInfoWindowClickListener1.Initialize(\"OnInfoWind"; parent.mostCurrent._oninfowindowclicklistener1.Initialize(mostCurrent.activityBA,"OnInfoWindowClickListener1"); - //BA.debugLineNum = 260;BA.debugLine="GoogleMapEXTRA.SetOnInfoWindowClickListener(gmap,"; + //BA.debugLineNum = 263;BA.debugLine="GoogleMapEXTRA.SetOnInfoWindowClickListener(gmap,"; parent.mostCurrent._googlemapextra.SetOnInfoWindowClickListener((com.google.android.gms.maps.GoogleMap)(parent.mostCurrent._gmap.getObject()),(com.google.android.gms.maps.GoogleMap.OnInfoWindowClickListener)(parent.mostCurrent._oninfowindowclicklistener1.getObject())); - //BA.debugLineNum = 261;BA.debugLine="End Sub"; + //BA.debugLineNum = 264;BA.debugLine="End Sub"; if (true) break; } @@ -1432,16 +1492,16 @@ if (true) break; public static void _activity_permissionresult(String _permission,boolean _result) throws Exception{ } public static String _oninfowindowclicklistener1_click(anywheresoftware.b4a.objects.MapFragmentWrapper.MarkerWrapper _marker1) throws Exception{ - //BA.debugLineNum = 264;BA.debugLine="Sub OnInfoWindowClickListener1_click(Marker1 As Ma"; - //BA.debugLineNum = 265;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; + //BA.debugLineNum = 267;BA.debugLine="Sub OnInfoWindowClickListener1_click(Marker1 As Ma"; + //BA.debugLineNum = 268;BA.debugLine="Starter.skmt.ExecNonQuery(\"delete from CUENTAA\")"; mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery("delete from CUENTAA"); - //BA.debugLineNum = 266;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA V"; + //BA.debugLineNum = 269;BA.debugLine="Starter.skmt.ExecNonQuery2(\"INSERT INTO CUENTAA V"; mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery2("INSERT INTO CUENTAA VALUES (?) ",anywheresoftware.b4a.keywords.Common.ArrayToList(new Object[]{(Object)(_marker1.getTitle())})); - //BA.debugLineNum = 267;BA.debugLine="Activity.Finish"; + //BA.debugLineNum = 270;BA.debugLine="Activity.Finish"; mostCurrent._activity.Finish(); - //BA.debugLineNum = 268;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; + //BA.debugLineNum = 271;BA.debugLine="B4XPages.ShowPage(\"Cliente\")"; mostCurrent._b4xpages._showpage /*String*/ (mostCurrent.activityBA,"Cliente"); - //BA.debugLineNum = 269;BA.debugLine="End Sub"; + //BA.debugLineNum = 272;BA.debugLine="End Sub"; return ""; } public static String _process_globals() throws Exception{ diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/newinst2.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/newinst2.java index e354e4f..74bd643 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/newinst2.java +++ b/B4A/Objects/src/reparto_mazapa/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("224641537","-- AppUpdating.NewInst2: processing MyAppReload",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("813041665","-- 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("224379393","---- AppUpdating.newinst2: service created",_logcolor1); +anywheresoftware.b4a.keywords.Common.LogImpl("812779521","---- 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("224444929","---- AppUpdating.newinst2: service_started",_logcolor1); +anywheresoftware.b4a.keywords.Common.LogImpl("812845057","---- 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("224444931",(""+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("812845059",(""+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("224444932",(""+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("812845060",(""+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("224444933",(""+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("812845061",(""+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("224444934",(""+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("812845062",(""+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("224444937",(""+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(anywheresoftware.b4a.keywords.Common.TAB))+"Intent MY_PACKAGE_REPLACED received!"),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("812845065",(""+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("224444939",(""+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("812845067",(""+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_mazapa/keymon/lat/starter.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/starter.java index 8253ad0..b817f11 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/starter.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/starter.java @@ -174,7 +174,7 @@ reparto_mazapa.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("265929218","Con internet, enviamos UTR!",0); +anywheresoftware.b4a.keywords.Common.LogImpl("865994754","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("265929227","Iniciamos ENVIA_ULTIMA_GPS",anywheresoftware.b4a.keywords.Common.Colors.Red);}; +anywheresoftware.b4a.keywords.Common.LogImpl("865994763","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_MAZAPA_ACTUALR3_GPS"; _cmd.Parameters /*Object[]*/ = new Object[]{(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montoactual /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientesventa /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientesvisitados /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._lat_gps /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._lon_gps /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._batt /*int*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montorechazado /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montoentregado /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._porvisitar /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._entregas /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._rechazos /*String*/ ),(Object)(anywheresoftware.b4a.keywords.Common.Application.getVersionName()),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._almacen /*String*/ ),(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._rutapreventa /*String*/ )}; //BA.debugLineNum = 117;BA.debugLine="If B4XPages.MainPage.logger Then Log($\"montoActu"; if (mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("265929238",("montoActual: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montoactual /*String*/ ))+", cTotal: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ))+", cVenta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientesventa /*String*/ ))+", cVisitados: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientesvisitados /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._lat_gps /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._lon_gps /*String*/ ))+", Batt: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._batt /*int*/ ))+", montoRechazado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montorechazado /*String*/ ))+", montoEntregado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montoentregado /*String*/ ))+", porVisitar: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._porvisitar /*String*/ ))+", entregas: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._entregas /*String*/ ))+", rechazos: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._rechazos /*String*/ ))+", Almacen: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._almacen /*String*/ ))+", Ruta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._rutapreventa /*String*/ ))+""),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("865994774",("montoActual: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montoactual /*String*/ ))+", cTotal: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientestotal /*String*/ ))+", cVenta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientesventa /*String*/ ))+", cVisitados: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._clientesvisitados /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._lat_gps /*String*/ ))+", "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._lon_gps /*String*/ ))+", Batt: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._batt /*int*/ ))+", montoRechazado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montorechazado /*String*/ ))+", montoEntregado: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._montoentregado /*String*/ ))+", porVisitar: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._porvisitar /*String*/ ))+", entregas: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._entregas /*String*/ ))+", rechazos: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._rechazos /*String*/ ))+", Almacen: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._almacen /*String*/ ))+", Ruta: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(mostCurrent._b4xpages._mainpage /*reparto_mazapa.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("265929248","Sin conexión a internet, no se envió UTR!",0); +anywheresoftware.b4a.keywords.Common.LogImpl("865994784","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("265536006",_ruta,0); +anywheresoftware.b4a.keywords.Common.LogImpl("865601542",_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_mazapa/keymon/lat/subs.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/subs.java index 07dab50..cc0a31a 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/subs.java +++ b/B4A/Objects/src/reparto_mazapa/keymon/lat/subs.java @@ -47,7 +47,7 @@ if ((_c.GetString("fCol")).equals(BA.NumberToString(0))) { //BA.debugLineNum = 929;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 = 930;BA.debugLine="Log($\"Columna \"${columna} ${tipo}\", agregada a"; -anywheresoftware.b4a.keywords.Common.LogImpl("270057990",("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("870123526",("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("270057990",("Columna \""+anywheres try { //BA.debugLineNum = 934;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 = 935;BA.debugLine="Log($\"Columna \"${columna} ${tipo}\", agregada a"; -anywheresoftware.b4a.keywords.Common.LogImpl("270057995",("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("870123531",("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 = 937;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("270057997",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("870123533",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; }; //BA.debugLineNum = 940;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 = 416;BA.debugLine="LogColor(\"Recortamos la tabla de Errores, limite"; -anywheresoftware.b4a.keywords.Common.LogImpl("267960834","Recortamos la tabla de Errores, limite de 100",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("868026370","Recortamos la tabla de Errores, limite de 100",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 417;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 = 418;BA.debugLine="errorLog.ExecNonQuery(\"vacuum;\")"; @@ -85,7 +85,7 @@ anywheresoftware.b4a.sql.SQL.CursorWrapper _c = null; //BA.debugLineNum = 424;BA.debugLine="revisaBD"; _revisabd(_ba); //BA.debugLineNum = 425;BA.debugLine="LogColor(\"Recortamos la tabla de la Bitacora, lim"; -anywheresoftware.b4a.keywords.Common.LogImpl("268026370","Recortamos la tabla de la Bitacora, limite de 600",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("868091906","Recortamos la tabla de la Bitacora, limite de 600",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 426;BA.debugLine="Private c As Cursor"; _c = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); //BA.debugLineNum = 427;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 = 302;BA.debugLine="Sub borraLogDB 'ignore"; //BA.debugLineNum = 303;BA.debugLine="LogColor(\"Borramos BD de log\", Colors.Magenta)"; -anywheresoftware.b4a.keywords.Common.LogImpl("267633153","Borramos BD de log",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("867698689","Borramos BD de log",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 304;BA.debugLine="kmt.ExecNonQuery(\"delete from bitacora\")"; _kmt.ExecNonQuery("delete from bitacora"); //BA.debugLineNum = 305;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("266256902",("Comprimido: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_base64.length()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("866322438",("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 = 534;BA.debugLine="Log(\"rootExternal=\"&p)"; -anywheresoftware.b4a.keywords.Common.LogImpl("268354071","rootExternal="+_p,0); +anywheresoftware.b4a.keywords.Common.LogImpl("868419607","rootExternal="+_p,0); //BA.debugLineNum = 535;BA.debugLine="Log(\"File.DirInternal=\"&File.DirInternal)"; -anywheresoftware.b4a.keywords.Common.LogImpl("268354072","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("868419608","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); //BA.debugLineNum = 536;BA.debugLine="Log(\"File.DirInternal=\"&File.DirInternal)"; -anywheresoftware.b4a.keywords.Common.LogImpl("268354073","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("868419609","File.DirInternal="+anywheresoftware.b4a.keywords.Common.File.getDirInternal(),0); }else { //BA.debugLineNum = 538;BA.debugLine="ToastMessageShow(\"Sin permisos\", False)"; anywheresoftware.b4a.keywords.Common.ToastMessageShow(BA.ObjectToCharSequence("Sin permisos"),anywheresoftware.b4a.keywords.Common.False); @@ -238,7 +238,7 @@ anywheresoftware.b4a.objects.collections.Map _m = null; anywheresoftware.b4a.objects.collections.Map _m2 = null; //BA.debugLineNum = 448;BA.debugLine="Sub dameErroresJSON(SQL As SQL, maxErrores As Int,"; //BA.debugLineNum = 449;BA.debugLine="Log(\"dameErroresJSON\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("268157441","dameErroresJSON",0); +anywheresoftware.b4a.keywords.Common.LogImpl("868222977","dameErroresJSON",0); //BA.debugLineNum = 450;BA.debugLine="Private j As JSONGenerator"; _j = new anywheresoftware.b4a.objects.collections.JSONParser.JSONGenerator(); //BA.debugLineNum = 451;BA.debugLine="Private lim As String"; @@ -282,7 +282,7 @@ _cur.Close(); //BA.debugLineNum = 468;BA.debugLine="j.Initialize(m2)"; _j.Initialize(_m2); //BA.debugLineNum = 469;BA.debugLine="Log(j.ToString)"; -anywheresoftware.b4a.keywords.Common.LogImpl("268157461",_j.ToString(),0); +anywheresoftware.b4a.keywords.Common.LogImpl("868222997",_j.ToString(),0); //BA.debugLineNum = 470;BA.debugLine="If comprimido Then"; if (_comprimido) { //BA.debugLineNum = 471;BA.debugLine="Return compress(j.ToString)"; @@ -314,7 +314,7 @@ _fechainicio = _fechainiciohoy(_ba); }; //BA.debugLineNum = 153;BA.debugLine="If B4XPages.MainPage.logger Then Log(\"fechaInicio"; if (mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("266781195","fechaInicio: "+_fechainicio+" | rutaHrsAtras="+BA.NumberToString(_rutahrsatras),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("866846731","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("; @@ -322,7 +322,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_mazapa.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("266781198","select FECHA, LAT, LON from "+_origenruta+" where FECHA > "+_fechainicio+" order by FECHA desc limit "+BA.NumberToString(_rutamaxpoints),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("866846734","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"; @@ -390,7 +390,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("266322437",("Descomprimido: "+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_uncompressed.length()))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("866387973",("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"; @@ -432,7 +432,7 @@ _h = anywheresoftware.b4a.keywords.Common.DateTime.Date(anywheresoftware.b4a.key //BA.debugLineNum = 265;BA.debugLine="DateTime.DateFormat=OrigFormat 'return to orig"; anywheresoftware.b4a.keywords.Common.DateTime.setDateFormat(_origformat); //BA.debugLineNum = 266;BA.debugLine="Log(\"Hoy=\"&h)"; -anywheresoftware.b4a.keywords.Common.LogImpl("267371013","Hoy="+_h,0); +anywheresoftware.b4a.keywords.Common.LogImpl("867436549","Hoy="+_h,0); //BA.debugLineNum = 267;BA.debugLine="Return h"; if (true) return _h; //BA.debugLineNum = 268;BA.debugLine="End Sub"; @@ -482,16 +482,16 @@ anywheresoftware.b4a.keywords.Common.DateTime.setDateFormat(_origformat); if (true) return _ticks; }else { //BA.debugLineNum = 491;BA.debugLine="Log(\"Formato de fecha incorrecto, debe de ser '"; -anywheresoftware.b4a.keywords.Common.LogImpl("268222989","Formato de fecha incorrecto, debe de ser 'YYMMDDHHMMSS', no '"+_fkmt+"' largo="+BA.NumberToString(_fkmt.length()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("868288525","Formato de fecha incorrecto, debe de ser 'YYMMDDHHMMSS', no '"+_fkmt+"' largo="+BA.NumberToString(_fkmt.length()),0); //BA.debugLineNum = 492;BA.debugLine="Return 0"; if (true) return (long) (0); }; } catch (Exception e16) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e16); //BA.debugLineNum = 495;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("268222993",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("868288529",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); //BA.debugLineNum = 496;BA.debugLine="LogColor($\"Fecha dada: ${fKMT}, Parte Fecha: ${p"; -anywheresoftware.b4a.keywords.Common.LogImpl("268222994",("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("868288530",("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 = 497;BA.debugLine="Return 0"; if (true) return (long) (0); }; @@ -568,7 +568,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_mazapa.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("266715649","Guardamos ubicacion en BD - "+_coords,0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("866781185","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); @@ -583,7 +583,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("266715657",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("866781193",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; //BA.debugLineNum = 139;BA.debugLine="End Sub"; return ""; @@ -622,7 +622,7 @@ int _x = 0; if (anywheresoftware.b4a.keywords.Common.Not(_errorlog.IsInitialized())) { _revisabd(_ba);}; //BA.debugLineNum = 440;BA.debugLine="Log(\"insertamos 50 renglones a errorLog\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("268091906","insertamos 50 renglones a errorLog",0); +anywheresoftware.b4a.keywords.Common.LogImpl("868157442","insertamos 50 renglones a errorLog",0); //BA.debugLineNum = 441;BA.debugLine="For x = 1 To 50"; { final int step3 = 1; @@ -632,7 +632,7 @@ for (;_x <= limit3 ;_x = _x + step3 ) { //BA.debugLineNum = 442;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 = 443;BA.debugLine="Log(x)"; -anywheresoftware.b4a.keywords.Common.LogImpl("268091909",BA.NumberToString(_x),0); +anywheresoftware.b4a.keywords.Common.LogImpl("868157445",BA.NumberToString(_x),0); } }; //BA.debugLineNum = 445;BA.debugLine="End Sub"; @@ -669,7 +669,7 @@ if (true) return _json.NextObject(); } catch (Exception e6) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e6); //BA.debugLineNum = 224;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("267174407",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("867239943",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); //BA.debugLineNum = 225;BA.debugLine="log2DB(\"JSON2Map: \"&LastException)"; _log2db(_ba,"JSON2Map: "+BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba))); //BA.debugLineNum = 226;BA.debugLine="Private m As Map = CreateMap(\"title\":\"Error gene"; @@ -684,7 +684,7 @@ return null; public static String _log2db(anywheresoftware.b4a.BA _ba,String _texto) throws Exception{ //BA.debugLineNum = 271;BA.debugLine="Sub log2DB(texto As String) 'ignore"; //BA.debugLineNum = 272;BA.debugLine="LogColor(fechaKMT(DateTime.Now)&\" - log2BD: '\"&te"; -anywheresoftware.b4a.keywords.Common.LogImpl("267436545",_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))+" - log2BD: '"+_texto+"'",anywheresoftware.b4a.keywords.Common.Colors.Magenta); +anywheresoftware.b4a.keywords.Common.LogImpl("867502081",_fechakmt(_ba,BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow()))+" - log2BD: '"+_texto+"'",anywheresoftware.b4a.keywords.Common.Colors.Magenta); //BA.debugLineNum = 273;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)}));}; @@ -738,7 +738,7 @@ if (true) return anywheresoftware.b4a.keywords.Common.False; } catch (Exception e8) { (_ba.processBA == null ? _ba : _ba.processBA).setLastException(e8); //BA.debugLineNum = 297;BA.debugLine="Log(LastException)"; -anywheresoftware.b4a.keywords.Common.LogImpl("267567627",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); +anywheresoftware.b4a.keywords.Common.LogImpl("867633163",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(_ba)),0); }; //BA.debugLineNum = 299;BA.debugLine="End Sub"; return false; @@ -764,7 +764,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("266519047","notiHigh: "+_title,0); +anywheresoftware.b4a.keywords.Common.LogImpl("866584583","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)"; @@ -780,7 +780,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("266584579","notiLowReturn: "+_title,0); +anywheresoftware.b4a.keywords.Common.LogImpl("866650115","notiLowReturn: "+_title,0); //BA.debugLineNum = 102;BA.debugLine="notification.Icon = \"icon\""; _notification.setIcon("icon"); //BA.debugLineNum = 103;BA.debugLine="notification.Sound = False"; @@ -837,7 +837,7 @@ anywheresoftware.b4a.sql.SQL.CursorWrapper _chv = null; String _precio = ""; //BA.debugLineNum = 782;BA.debugLine="Sub prodRechazo(clienteOriginal As String, prodId"; //BA.debugLineNum = 783;BA.debugLine="Log(\"RECHAZO DEVOLUCION\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("269664769","RECHAZO DEVOLUCION",0); +anywheresoftware.b4a.keywords.Common.LogImpl("869730305","RECHAZO DEVOLUCION",0); //BA.debugLineNum = 784;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)")))); @@ -846,7 +846,7 @@ _rr.setPosition((int) (0)); //BA.debugLineNum = 786;BA.debugLine="If rr.GetString(\"hayRechazo\") = 0 Then"; if ((_rr.GetString("hayRechazo")).equals(BA.NumberToString(0))) { //BA.debugLineNum = 787;BA.debugLine="Log(\"INSERTAMOS EN REPARTO\")"; -anywheresoftware.b4a.keywords.Common.LogImpl("269664773","INSERTAMOS EN REPARTO",0); +anywheresoftware.b4a.keywords.Common.LogImpl("869730309","INSERTAMOS EN REPARTO",0); //BA.debugLineNum = 789;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))+"'")))); @@ -865,7 +865,7 @@ mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("upda }; }else { //BA.debugLineNum = 800;BA.debugLine="Log($\"ACTUALIZAMOS REPARTO\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("269664786",("ACTUALIZAMOS REPARTO"),0); +anywheresoftware.b4a.keywords.Common.LogImpl("869730322",("ACTUALIZAMOS REPARTO"),0); //BA.debugLineNum = 801;BA.debugLine="Private precio As String = traePrecio(prodId, tr"; _precio = _traeprecio(_ba,_prodid,_traealmacen(_ba)); //BA.debugLineNum = 802;BA.debugLine="Starter.skmt.ExecNonQuery2(\"update HIST_VENTAS s"; @@ -890,9 +890,9 @@ mostCurrent._starter._skmt /*anywheresoftware.b4a.sql.SQL*/ .ExecNonQuery(("upda //BA.debugLineNum = 755;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 = 756;BA.debugLine="Log($\"update reparto set REP_CANT = REP_CANT - 1"; -anywheresoftware.b4a.keywords.Common.LogImpl("269599237",("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("869664773",("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 = 757;BA.debugLine="Log($\"update reparto set REP_CANT = REP_CANT + 1"; -anywheresoftware.b4a.keywords.Common.LogImpl("269599238",("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("869664774",("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 = 758;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 = 779;BA.debugLine="End Sub"; @@ -924,7 +924,7 @@ public static String _revisaflp(anywheresoftware.b4a.BA _ba) throws Exception{ boolean _todobienflp = false; //BA.debugLineNum = 345;BA.debugLine="Sub revisaFLP 'ignore"; //BA.debugLineNum = 346;BA.debugLine="LogColor($\"**** **** Revisamos FLP - ${fechaKMT(D"; -anywheresoftware.b4a.keywords.Common.LogImpl("267829761",("**** **** 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("867895297",("**** **** 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 = 347;BA.debugLine="Private todoBienFLP As Boolean = True"; _todobienflp = anywheresoftware.b4a.keywords.Common.True; //BA.debugLineNum = 348;BA.debugLine="If Not(Tracker.FLP.IsInitialized) Then"; @@ -959,7 +959,7 @@ _todobienflp = anywheresoftware.b4a.keywords.Common.False; }; //BA.debugLineNum = 368;BA.debugLine="If todoBienFLP Then LogColor(\" +++ +++ Sin errore"; if (_todobienflp) { -anywheresoftware.b4a.keywords.Common.LogImpl("267829783"," +++ +++ Sin errores en FLP",anywheresoftware.b4a.keywords.Common.Colors.Green);}; +anywheresoftware.b4a.keywords.Common.LogImpl("867895319"," +++ +++ Sin errores en FLP",anywheresoftware.b4a.keywords.Common.Colors.Green);}; //BA.debugLineNum = 370;BA.debugLine="End Sub"; return ""; } @@ -979,14 +979,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 = 335;BA.debugLine="If B4XPages.MainPage.Logger Then LogColor($\"****"; if (mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("267764228",("**** 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("867829764",("**** 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 = 336;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 = 337;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 = 338;BA.debugLine="If B4XPages.MainPage.Logger Then Log(\"++++ Dist"; if (mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (_ba)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("267764231","++++ 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("867829767","++++ Distancia a anterior="+BA.NumberToString(_daa)+"|"+"Precision="+BA.NumberToString(mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation().getAccuracy()),0);}; }; //BA.debugLineNum = 340;BA.debugLine="Tracker.UUGCoords = Tracker.FLP.GetLastKnownLoca"; mostCurrent._tracker._uugcoords /*anywheresoftware.b4a.gps.LocationWrapper*/ = mostCurrent._tracker._flp /*uk.co.martinpearman.b4a.fusedlocationprovider.FusedLocationProviderWrapper*/ .GetLastKnownLocation(); @@ -1051,7 +1051,7 @@ _cr.setPosition((int) (0)); _cant = (int)(Double.parseDouble(_cr.GetString("REP_CANT"))); }; //BA.debugLineNum = 722;BA.debugLine="Log($\"${cliente}, ${prodId}, rowcont:${cr.RowCoun"; -anywheresoftware.b4a.keywords.Common.LogImpl("269402631",(""+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("869468167",(""+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 = 723;BA.debugLine="Return cant"; if (true) return _cant; //BA.debugLineNum = 724;BA.debugLine="End Sub"; @@ -1131,7 +1131,7 @@ _monto = (float) (_monto+((double)(Double.parseDouble(_ccym.GetString("REP_CANT" } }; //BA.debugLineNum = 863;BA.debugLine="Log($\"CANT=${cant}, MONTO=${monto}\"$)"; -anywheresoftware.b4a.keywords.Common.LogImpl("269795864",("CANT="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cant))+", MONTO="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_monto))+""),0); +anywheresoftware.b4a.keywords.Common.LogImpl("869861400",("CANT="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_cant))+", MONTO="+anywheresoftware.b4a.keywords.Common.SmartStringFormatter("",(Object)(_monto))+""),0); }; //BA.debugLineNum = 866;BA.debugLine="ccym.Close"; _ccym.Close(); @@ -1217,6 +1217,7 @@ return null; public static String _traefechaprev(anywheresoftware.b4a.BA _ba) throws Exception{ anywheresoftware.b4a.sql.SQL.CursorWrapper _c = null; String _a = ""; +anywheresoftware.b4a.sql.SQL.CursorWrapper _clienteasing = null; String[] _fecha = null; String[] _fecha2 = null; String _fecha3 = ""; @@ -1226,27 +1227,54 @@ String[] _hora = null; _c = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); //BA.debugLineNum = 980;BA.debugLine="Private a As String"; _a = ""; - //BA.debugLineNum = 981;BA.debugLine="c = Starter.skmt.ExecQuery(\"select HVD_FECHA from"; + //BA.debugLineNum = 981;BA.debugLine="Private clienteasing As Cursor = Starter.skmt.Exe"; +_clienteasing = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); +_clienteasing = (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 CUENTA FROM CUENTAA"))); + //BA.debugLineNum = 982;BA.debugLine="clienteasing.Position = 0"; +_clienteasing.setPosition((int) (0)); + //BA.debugLineNum = 983;BA.debugLine="If clienteasing.GetString(\"CUENTA\") <> \"63403\" Th"; +if ((_clienteasing.GetString("CUENTA")).equals("63403") == false) { + //BA.debugLineNum = 984;BA.debugLine="c = Starter.skmt.ExecQuery(\"select HVD_FECHA fro"; _c = (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 HVD_FECHA from HIST_VENTAS where HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)"))); - //BA.debugLineNum = 982;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 985;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 983;BA.debugLine="Dim fecha() As String = Regex.Split(\" \", c.GetStr"; + //BA.debugLineNum = 986;BA.debugLine="Dim fecha() As String = Regex.Split(\" \", c.GetSt"; _fecha = anywheresoftware.b4a.keywords.Common.Regex.Split(" ",_c.GetString("HVD_FECHA")); - //BA.debugLineNum = 984;BA.debugLine="Dim fecha2() As String = Regex.Split(\"-\", fecha(0"; + //BA.debugLineNum = 987;BA.debugLine="Dim fecha2() As String = Regex.Split(\"-\", fecha("; _fecha2 = anywheresoftware.b4a.keywords.Common.Regex.Split("-",_fecha[(int) (0)]); - //BA.debugLineNum = 985;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&\"/"; + //BA.debugLineNum = 988;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&\""; _fecha3 = _fecha2[(int) (2)]+"/"+_fecha2[(int) (1)]+"/"+_fecha2[(int) (0)]; - //BA.debugLineNum = 986;BA.debugLine="Log(fecha3)"; -anywheresoftware.b4a.keywords.Common.LogImpl("270320136",_fecha3,0); - //BA.debugLineNum = 987;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1)"; + //BA.debugLineNum = 989;BA.debugLine="Log(fecha3)"; +anywheresoftware.b4a.keywords.Common.LogImpl("870385675",_fecha3,0); + //BA.debugLineNum = 990;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1"; _hora = anywheresoftware.b4a.keywords.Common.Regex.Split("\\.",_fecha[(int) (1)]); - //BA.debugLineNum = 988;BA.debugLine="a = fecha3 & \" \" & hora(0)"; + //BA.debugLineNum = 991;BA.debugLine="a = fecha3 & \" \" & hora(0)"; _a = _fecha3+" "+_hora[(int) (0)]; - //BA.debugLineNum = 989;BA.debugLine="c.Close"; + //BA.debugLineNum = 992;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 990;BA.debugLine="Return a"; + }else if((_clienteasing.GetString("CUENTA")).equals("63403")) { + //BA.debugLineNum = 994;BA.debugLine="c = Starter.skmt.ExecQuery(\"select HVD_FECHA fro"; +_c = (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 HVD_FECHA from HIST_VENTAS"))); + //BA.debugLineNum = 995;BA.debugLine="c.Position = 0"; +_c.setPosition((int) (0)); + //BA.debugLineNum = 996;BA.debugLine="Dim fecha() As String = Regex.Split(\" \", c.GetSt"; +_fecha = anywheresoftware.b4a.keywords.Common.Regex.Split(" ",_c.GetString("HVD_FECHA")); + //BA.debugLineNum = 997;BA.debugLine="Dim fecha2() As String = Regex.Split(\"-\", fecha("; +_fecha2 = anywheresoftware.b4a.keywords.Common.Regex.Split("-",_fecha[(int) (0)]); + //BA.debugLineNum = 998;BA.debugLine="Dim fecha3 As String = fecha2(2)&\"/\"&fecha2(1)&\""; +_fecha3 = _fecha2[(int) (2)]+"/"+_fecha2[(int) (1)]+"/"+_fecha2[(int) (0)]; + //BA.debugLineNum = 999;BA.debugLine="Log(fecha3)"; +anywheresoftware.b4a.keywords.Common.LogImpl("870385685",_fecha3,0); + //BA.debugLineNum = 1000;BA.debugLine="Dim hora() As String = Regex.Split(\"\\.\", fecha(1"; +_hora = anywheresoftware.b4a.keywords.Common.Regex.Split("\\.",_fecha[(int) (1)]); + //BA.debugLineNum = 1001;BA.debugLine="a = fecha3 & \" \" & hora(0)"; +_a = _fecha3+" "+_hora[(int) (0)]; + //BA.debugLineNum = 1002;BA.debugLine="c.Close"; +_c.Close(); + }; + //BA.debugLineNum = 1004;BA.debugLine="Return a"; if (true) return _a; - //BA.debugLineNum = 991;BA.debugLine="End Sub"; + //BA.debugLineNum = 1005;BA.debugLine="End Sub"; return ""; } public static String _traefechareparto(anywheresoftware.b4a.BA _ba) throws Exception{ @@ -1526,22 +1554,22 @@ return null; public static String _traerutaprev(anywheresoftware.b4a.BA _ba) throws Exception{ anywheresoftware.b4a.sql.SQL.CursorWrapper _c = null; String _a = ""; - //BA.debugLineNum = 993;BA.debugLine="Sub traerUTAPREV As String 'ignore"; - //BA.debugLineNum = 994;BA.debugLine="Private c As Cursor"; + //BA.debugLineNum = 1007;BA.debugLine="Sub traerUTAPREV As String 'ignore"; + //BA.debugLineNum = 1008;BA.debugLine="Private c As Cursor"; _c = new anywheresoftware.b4a.sql.SQL.CursorWrapper(); - //BA.debugLineNum = 995;BA.debugLine="Private a As String"; + //BA.debugLineNum = 1009;BA.debugLine="Private a As String"; _a = ""; - //BA.debugLineNum = 996;BA.debugLine="c = Starter.skmt.ExecQuery(\"select CAT_CL_RUTA fr"; + //BA.debugLineNum = 1010;BA.debugLine="c = Starter.skmt.ExecQuery(\"select CAT_CL_RUTA fr"; _c = (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 CAT_CL_RUTA from kmt_info where CAT_CL_CODIGO IN (SELECT CUENTA FROM CUENTAA)"))); - //BA.debugLineNum = 997;BA.debugLine="c.Position = 0"; + //BA.debugLineNum = 1011;BA.debugLine="c.Position = 0"; _c.setPosition((int) (0)); - //BA.debugLineNum = 998;BA.debugLine="a = C.GetString(\"CAT_CL_RUTA\")"; + //BA.debugLineNum = 1012;BA.debugLine="a = C.GetString(\"CAT_CL_RUTA\")"; _a = _c.GetString("CAT_CL_RUTA"); - //BA.debugLineNum = 999;BA.debugLine="c.Close"; + //BA.debugLineNum = 1013;BA.debugLine="c.Close"; _c.Close(); - //BA.debugLineNum = 1000;BA.debugLine="Return a"; + //BA.debugLineNum = 1014;BA.debugLine="Return a"; if (true) return _a; - //BA.debugLineNum = 1001;BA.debugLine="End Sub"; + //BA.debugLineNum = 1015;BA.debugLine="End Sub"; return ""; } public static String _traerutareparto(anywheresoftware.b4a.BA _ba) throws Exception{ diff --git a/B4A/Objects/src/reparto_mazapa/keymon/lat/tracker.java b/B4A/Objects/src/reparto_mazapa/keymon/lat/tracker.java index bc63743..24756b0 100644 --- a/B4A/Objects/src/reparto_mazapa/keymon/lat/tracker.java +++ b/B4A/Objects/src/reparto_mazapa/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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271041025","CreateLocationRequest",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("871106561","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271106561","Iniciamos CreateLocationRequest2times",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("871172097","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271172099",("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("871237635",("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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("270647809","Failed to connect to location provider",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("870713345","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("270713345","FLP conection suspended",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("870778881","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271303186","Error al borrar o insertar nuevas coordendas en HIST_GPS",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("871368722","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("271303190","Loc changed : "+BA.NumberToString(_location1.getLatitude())+","+BA.NumberToString(_location1.getLongitude()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("871368726","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271303191","Mandamos Ubicacion",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("871368727","Mandamos Ubicacion",0);}; //BA.debugLineNum = 186;BA.debugLine="If B4XPages.MainPage.logger Then Log(locRequest)"; if (mostCurrent._b4xpages._mainpage /*reparto_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271303192",_locrequest,0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("871368728",_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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("271303204","actualizamos Ubicacion Web",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("871368740","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("270778881","Iniciando Tracker ...",anywheresoftware.b4a.keywords.Common.Colors.Green); +anywheresoftware.b4a.keywords.Common.LogImpl("870844417","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("270975489","StartFLP - flpStarted="+BA.ObjectToString(parent._flpstarted),0); +anywheresoftware.b4a.keywords.Common.LogImpl("871041025","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("270975492","sleeping GR",0); +anywheresoftware.b4a.keywords.Common.LogImpl("871041028","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("270975496","Buscamos ubicacion 2 peticiones",0); +anywheresoftware.b4a.keywords.Common.LogImpl("871041032","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("270975497",BA.NumberToString(parent._actuallr.GetSmallestDisplacement()),0); +anywheresoftware.b4a.keywords.Common.LogImpl("871041033",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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("270844417","Inicia Track - Tracking : "+BA.ObjectToString(_tracking),0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("870909953","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_mazapa.keymon.lat.b4xmainpage*/ (processBA)._logger /*boolean*/ ) { -anywheresoftware.b4a.keywords.Common.LogImpl("270844423","No permission",0);}; +anywheresoftware.b4a.keywords.Common.LogImpl("870909959","No permission",0);}; //BA.debugLineNum = 86;BA.debugLine="Return"; if (true) return ""; }; diff --git a/B4A/Subs.bas b/B4A/Subs.bas index 54a5a6d..e799acf 100644 --- a/B4A/Subs.bas +++ b/B4A/Subs.bas @@ -984,15 +984,29 @@ End Sub Sub traefECHAPREV As String 'ignore Private c As Cursor Private a As String - c = Starter.skmt.ExecQuery("select HVD_FECHA from HIST_VENTAS where HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)") - c.Position = 0 - Dim fecha() As String = Regex.Split(" ", c.GetString("HVD_FECHA")) - Dim fecha2() As String = Regex.Split("-", fecha(0)) - Dim fecha3 As String = fecha2(2)&"/"&fecha2(1)&"/"&fecha2(0) - Log(fecha3) - Dim hora() As String = Regex.Split("\.", fecha(1)) - a = fecha3 & " " & hora(0) - c.Close + Private clienteasing As Cursor = Starter.skmt.ExecQuery("SELECT CUENTA FROM CUENTAA") + clienteasing.Position = 0 + If clienteasing.GetString("CUENTA") <> "63403" Then + c = Starter.skmt.ExecQuery("select HVD_FECHA from HIST_VENTAS where HVD_CLIENTE IN (SELECT CUENTA FROM CUENTAA)") + c.Position = 0 + Dim fecha() As String = Regex.Split(" ", c.GetString("HVD_FECHA")) + Dim fecha2() As String = Regex.Split("-", fecha(0)) + Dim fecha3 As String = fecha2(2)&"/"&fecha2(1)&"/"&fecha2(0) + Log(fecha3) + Dim hora() As String = Regex.Split("\.", fecha(1)) + a = fecha3 & " " & hora(0) + c.Close + Else If clienteasing.GetString("CUENTA") = "63403" Then + c = Starter.skmt.ExecQuery("select HVD_FECHA from HIST_VENTAS") + c.Position = 0 + Dim fecha() As String = Regex.Split(" ", c.GetString("HVD_FECHA")) + Dim fecha2() As String = Regex.Split("-", fecha(0)) + Dim fecha3 As String = fecha2(2)&"/"&fecha2(1)&"/"&fecha2(0) + Log(fecha3) + Dim hora() As String = Regex.Split("\.", fecha(1)) + a = fecha3 & " " & hora(0) + c.Close + End If Return a End Sub