3 using System.Collections;
7 using Controlador.Afiliacion;
8 using Dominio.Afiliados;
11 public class VAgregarAfiliado
14 [Widget] TreeView lista;
16 public VAgregarAfiliado ()
18 xml = new Glade.XML (null, "agregar_afiliado.glade", "agregar_afiliado", null);
19 xml.Autoconnect (this);
21 TreeStore store = new TreeStore (typeof(string), typeof(int), typeof (string), typeof (string));
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);
34 private void CargarParaAfiliar ()
36 TreeStore store = (TreeStore)lista.Model;
38 AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
39 afiliados = c.ObtenerSolicitantesAfiliar ();
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);
49 private void CargarFamiliaresDe (Solicitante spadre, TreeIter padre, AfiliadoSolicitanteController c)
51 TreeStore store = (TreeStore)lista.Model;
52 ArrayList familiares = c.ObtenerFamiliaresAfiliar (spadre);
54 foreach (Solicitante s in familiares) {
55 TreeIter iter = store.AppendValues (padre, s.TipoDocumento.ToString (), s.NroDocumento, s.Nombre, s.Apellido);
59 public void OnAfiliar (object o, EventArgs args)
63 TreeSelection sel = lista.Selection;
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);
70 AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
71 Afiliado a = c.ExisteAfiliado (tipoDoc, nroDoc);
74 Afiliar (model, iter, c);
76 Console.WriteLine ("Lo borro o lo reactivo!");
83 private void Afiliar (TreeModel model, TreeIter parent, AfiliadoSolicitanteController c)
85 ETipoDocumento tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)model.GetValue (parent, 0), true);
86 int nroDoc = (int)model.GetValue (parent, 1);
89 VBuscarPlan v = new VBuscarPlan ();
90 string plan = v.Run ();
92 /* Afilio el titular */
93 Afiliado AfiTitular = c.AfiliarTitular (tipoDoc, nroDoc, Int32.Parse (plan));
94 Console.WriteLine ("Titular afiliado!! {0} {1}", tipoDoc, nroDoc);
96 /* Obtengo el primer familiar, si es que existe */
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);
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);
107 Console.WriteLine ("Titular familiar!! {0} {1}", tipoDoc, nroDoc);
108 c.AfiliarFamiliar (AfiTitular, tipoDoc, nroDoc, null);
115 Dialog w = (Dialog)xml.GetWidget ("agregar_afiliado");