]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Vistas/AgregarAfiliado.cs
* ya casi estaria todo para la demo. Faltan
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / AgregarAfiliado.cs
1
2 using System;
3 using System.Collections;
4 using Gtk;
5 using Glade;
6
7 using Controlador.Afiliacion;
8 using Dominio.Afiliados;
9 using Dominio;
10
11 public class VAgregarAfiliado
12 {
13         Glade.XML xml;
14         [Widget] TreeView lista;
15
16         public VAgregarAfiliado ()
17         {
18                 xml = new Glade.XML (null, "agregar_afiliado.glade", "agregar_afiliado", null);
19                 xml.Autoconnect (this);
20
21                 TreeStore store = new TreeStore (typeof(string), typeof(int), typeof (string), typeof (string));
22                 lista.Model = store;
23
24                 /* Columnas */
25                 lista.HeadersVisible = true;
26                 lista.AppendColumn ("Tipo Doc.", new CellRendererText (), "text", 0);
27                 lista.AppendColumn ("Nro Doc.", new CellRendererText (), "text", 1);
28                 lista.AppendColumn ("Apellido", new CellRendererText (), "text", 2);
29                 lista.AppendColumn ("Nombre", new CellRendererText (), "text", 3);
30
31                 CargarParaAfiliar ();
32         }
33
34         private void CargarParaAfiliar ()
35         {
36                 TreeStore store = (TreeStore)lista.Model;
37                 ArrayList afiliados;
38                 AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
39                 afiliados = c.ObtenerSolicitantesAfiliar ();
40
41                 foreach (Solicitante s in afiliados) {
42                         TreeIter iter = store.AppendValues (s.TipoDocumento.ToString (), s.NroDocumento, s.Nombre, s.Apellido);
43                         CargarFamiliaresDe (s, iter, c);
44                 }
45
46                 c.Dispose ();
47         }
48
49         private void CargarFamiliaresDe (Solicitante spadre, TreeIter padre, AfiliadoSolicitanteController c)
50         {
51                 TreeStore store = (TreeStore)lista.Model;
52                 ArrayList familiares = c.ObtenerFamiliaresAfiliar (spadre);
53
54                 foreach (Solicitante s in familiares) {
55                         TreeIter iter = store.AppendValues (padre, s.TipoDocumento.ToString (), s.NroDocumento, s.Nombre, s.Apellido);
56                 }
57         }
58
59         public void OnAfiliar (object o, EventArgs args)
60         {
61                 TreeIter iter;
62                 TreeModel model; 
63                 TreeSelection sel = lista.Selection;
64
65                 
66                 if (sel.GetSelected(out model, out iter) == true) {
67                         ETipoDocumento tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)model.GetValue (iter, 0), true);
68                         int nroDoc = (int)model.GetValue (iter, 1);
69
70                         AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
71                         Afiliado a = c.ExisteAfiliado (tipoDoc, nroDoc);
72
73                         if (a == null) {
74                                 Afiliar (model, iter, c);
75                         } else {
76                                 Console.WriteLine ("Lo borro o lo reactivo!");
77                         }
78
79                         c.Dispose ();
80                 }
81         }
82
83         private void Afiliar (TreeModel model, TreeIter parent, AfiliadoSolicitanteController c)
84         {
85                 ETipoDocumento tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)model.GetValue (parent, 0), true);
86                 int nroDoc = (int)model.GetValue (parent, 1);
87
88                 /* Selecciono plan */
89                 VBuscarPlan v = new VBuscarPlan ();
90                 string plan = v.Run ();
91
92                 /* Afilio el titular */
93                 Afiliado AfiTitular = c.AfiliarTitular (tipoDoc, nroDoc, Int32.Parse (plan));
94                 Console.WriteLine ("Titular afiliado!! {0} {1}", tipoDoc, nroDoc);
95
96                 /* Obtengo el primer familiar, si es que existe */
97                 TreeIter iter;
98                 if (model.IterChildren (out iter, parent) == true) {
99                         tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)model.GetValue (iter, 0), true);
100                         nroDoc = (int)model.GetValue (iter, 1);
101
102                         Console.WriteLine ("Titular familiar!! {0} {1}", tipoDoc, nroDoc);
103                         while (model.IterNext (ref iter) == true) {
104                                 tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)model.GetValue (iter, 0), true);
105                                 nroDoc = (int)model.GetValue (iter, 1);
106
107                                 Console.WriteLine ("Titular familiar!! {0} {1}", tipoDoc, nroDoc);
108                                 c.AfiliarFamiliar (AfiTitular, tipoDoc, nroDoc, null);
109                         }
110                 }
111         }
112
113         public void Run ()
114         {
115                 Dialog w = (Dialog)xml.GetWidget ("agregar_afiliado");
116                 w.Run ();
117                 w.Destroy ();
118         }
119 }
120