]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Vistas/RegistrarVisitas.cs
ouch! me había faltado el Cuit y el Password...
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / RegistrarVisitas.cs
index 7df614fb04b50724e7d2fc3215985661ff808c0b..2f422c8987cea1603c14e12a7fcdd7cd4aa839c7 100644 (file)
@@ -15,6 +15,7 @@ public class VRegistrarVisitas
        Glade.XML xml;
 
        [Widget] TreeView visitas;
+       [Widget] Entry fechaNac;
 
        public VRegistrarVisitas ()
        {
@@ -60,6 +61,7 @@ public class VRegistrarVisitas
                RegistrarVisitasController c = new RegistrarVisitasController (null);
                c.EstablecerPendiente (tipoDoc, nroDoc);
                c.Dispose ();
+               store.Remove (ref iter);
        }
        
        public void OnEliminarSolicitante (object o, EventArgs args)
@@ -73,6 +75,23 @@ public class VRegistrarVisitas
                        /* Nada seleccionado */
                        return;
                }
+
+               /* Confirmo la operacion */
+               MessageDialog md = new MessageDialog (
+                       null, 
+                       DialogFlags.DestroyWithParent,
+                       MessageType.Question, 
+                       ButtonsType.YesNo, "Esta seguro de quere eliminar el solicitante?"
+               );
+                    
+               ResponseType result = (ResponseType)md.Run ();
+
+               if (result == ResponseType.No) {
+                       md.Destroy ();
+                       return;
+               }
+               md.Destroy ();
+
                ETipoDocumento tipoDoc;
                int nroDoc;
                tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)store.GetValue (iter, 0), true);
@@ -81,6 +100,60 @@ public class VRegistrarVisitas
                RegistrarVisitasController c = new RegistrarVisitasController (null);
                c.EliminarSolicitante (tipoDoc, nroDoc);
                c.Dispose ();
+
+               store.Remove (ref iter);
+       }
+
+       public void OnAfiliar (object o, EventArgs args)
+       {
+               TreeSelection fromSel = visitas.Selection;
+               TreeIter iter;
+               TreeModel model;
+               ListStore store = (ListStore)visitas.Model;
+
+               if (fromSel.GetSelected (out model, out iter) == false) {
+                       /* Nada seleccionado */
+                       return;
+               }
+               ETipoDocumento tipoDoc;
+               int nroDoc;
+               tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)store.GetValue (iter, 0), true);
+               nroDoc = (int)store.GetValue (iter, 1);
+
+               RegistrarVisitasController c = new RegistrarVisitasController (null);
+               /* Obtengo la cantidad de familiares */
+               int familiares = c.ObtenerCantidadFamiliares (tipoDoc, nroDoc);
+
+               if (familiares > 0) {
+                       for (int i=0; i<familiares; i++) {
+                               AgregarFamiliar (i+1, familiares);
+                       }
+               }
+
+               c.Dispose ();
+               store.Remove (ref iter);
+       }
+
+       private void AgregarFamiliar (int n, int total)
+       {
+               VAgregarFamiliar w = new VAgregarFamiliar (n, total);
+               w.Run ();
+       }
+
+       public void OnSeleccionarFechaClicked (object o, EventArgs args)
+       {
+               CalendarDialog d;
+               if (fechaNac.Text.Equals (""))
+                       d = new CalendarDialog ();
+               else
+                       d = new CalendarDialog (fechaNac.Text);
+               
+               int response;
+               
+               response = d.Run();
+               if (response == -3)
+                       fechaNac.Text = d.Date.ToLongDateString ();
+               d.Destroy ();
        }
 
        public void Run ()