]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Vistas/MantenerPlanes.cs
* Ajusto al caso de uso
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / MantenerPlanes.cs
index d0f5257381690b37ee42186a49b4bc923c27e886..604cb9901741756f1f3f8297f5774582b1f0fdfe 100644 (file)
@@ -33,6 +33,34 @@ public class VMantenerPlanes
        {
                xml = new Glade.XML (null, "mantener_planes.glade", "mantener_planes", null);
                xml.Autoconnect (this);
        {
                xml = new Glade.XML (null, "mantener_planes.glade", "mantener_planes", null);
                xml.Autoconnect (this);
+
+               ListStore m = new ListStore (typeof(string), typeof(float), typeof(int));
+               lista.Model = m;
+               lista.HeadersVisible = true;
+               lista.AppendColumn ("Descripción", new CellRendererText (), "text", 0);
+               lista.AppendColumn ("Categoría", new CellRendererText (), "text", 1);
+               lista.AppendColumn ("Permanencia Mínima", new CellRendererText (), "text", 2);
+       
+               TreeIter nuevo = m.Append ();
+       
+               m.SetValue (nuevo, 0, "Neo 210");
+               m.SetValue (nuevo, 1, 1.0f);
+               m.SetValue (nuevo, 2, 1);
+       
+               nuevo = m.Append ();
+               m.SetValue (nuevo, 0, "Neo 310");
+               m.SetValue (nuevo, 1, 2.0f);
+               m.SetValue (nuevo, 2, 2);
+
+               nuevo = m.Append ();
+               m.SetValue (nuevo, 0, "Neo 410");
+               m.SetValue (nuevo, 1, 3.0f);
+               m.SetValue (nuevo, 2, 4);
+       
+               nuevo = m.Append ();
+               m.SetValue (nuevo, 0, "Ejecutive 510");
+               m.SetValue (nuevo, 1, 4.0f);
+               m.SetValue (nuevo, 2, 3);
        }
 
        public void OnDialogResponse (object o, ResponseArgs args)
        }
 
        public void OnDialogResponse (object o, ResponseArgs args)
@@ -44,12 +72,13 @@ public class VMantenerPlanes
                alta_plan_xml = new Glade.XML (null, "mantener_planes.glade", "alta_plan", null);
                alta_plan_xml.Autoconnect (this);
        
                alta_plan_xml = new Glade.XML (null, "mantener_planes.glade", "alta_plan", null);
                alta_plan_xml.Autoconnect (this);
        
-               coberturas.Model = new ListStore (typeof(int), typeof(float), typeof (string), typeof (float));
+               coberturas.Model = new ListStore (typeof(int), typeof(float), typeof (float), typeof (int), typeof(string));
                coberturas.HeadersVisible = true;
                coberturas.AppendColumn ("Prestacion", new CellRendererText (), "text", 0);
                coberturas.AppendColumn ("Carencia", new CellRendererText (), "text", 1);
                coberturas.AppendColumn ("Cobertura", new CellRendererText (), "text", 2);
                coberturas.AppendColumn ("Limite Anual", new CellRendererText (), "text", 3);
                coberturas.HeadersVisible = true;
                coberturas.AppendColumn ("Prestacion", new CellRendererText (), "text", 0);
                coberturas.AppendColumn ("Carencia", new CellRendererText (), "text", 1);
                coberturas.AppendColumn ("Cobertura", new CellRendererText (), "text", 2);
                coberturas.AppendColumn ("Limite Anual", new CellRendererText (), "text", 3);
+               coberturas.AppendColumn ("Tipo", new CellRendererText (), "text", 4);
                        
                Dialog w = (Dialog)alta_plan_xml.GetWidget ("alta_plan");
                w.Run ();
                        
                Dialog w = (Dialog)alta_plan_xml.GetWidget ("alta_plan");
                w.Run ();
@@ -83,9 +112,13 @@ public class VMantenerPlanes
                        TreeIter nuevo = store.Append ();
        
                        store.SetValue (nuevo, 0, Int32.Parse (codigo_prestacion.Text));
                        TreeIter nuevo = store.Append ();
        
                        store.SetValue (nuevo, 0, Int32.Parse (codigo_prestacion.Text));
-                       store.SetValue (nuevo, 1, (float)Double.Parse (categoria.Text));
-                       store.SetValue (nuevo, 2, descripcion.Text));
-                       store.SetValue (nuevo, 3, Int32.Parse (codigo_prestacion.Text));
+                       store.SetValue (nuevo, 1, (float)Double.Parse (carencia.Text));
+                       store.SetValue (nuevo, 2, (float)cobertura.Value);
+                       store.SetValue (nuevo, 3, limite_anual.ValueAsInt);
+                       if (tipo_auth.Active == true)
+                               store.SetValue (nuevo, 4, "Manual");
+                       else
+                               store.SetValue (nuevo, 4, "Automatica");
                }
                w.Destroy ();
        }
                }
                w.Destroy ();
        }