]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Vistas/AgregarFamiliar.cs
* Ya se peuden agregar Coberturas a un Plan (no persistente)
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / AgregarFamiliar.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 VAgregarFamiliar
12 {
13         Dialog wAgregarFamiliar;
14         Glade.XML xml;
15
16         [Widget] ComboBox tipoDoc;
17         [Widget] Entry nroDoc;
18         [Widget] Entry nombre;
19         [Widget] Entry apellido;
20         [Widget] Entry email;
21         [Widget] RadioButton sexom;
22         [Widget] Entry fechaNac;
23         [Widget] Entry calle;
24         [Widget] Entry numero;
25         [Widget] Entry piso;
26         [Widget] Entry dpto;
27         [Widget] ComboBox provincia;
28         [Widget] Entry disponibilidad;
29         [Widget] Entry codigopostal;
30         [Widget] Entry telefono;
31         [Widget] SpinButton familiares;
32         [Widget] TextView observaciones;
33
34         int actual;
35         int total;
36
37         public VAgregarFamiliar(int n, int t)
38         {
39                 xml = new Glade.XML (null, "registrar_visitas.glade", "agregar_familiar", null);
40                 xml.Autoconnect (this);
41                 actual = n;
42                 total = t;
43         }
44
45         public void OnDialogResponse (object o, ResponseArgs args)
46         {
47                 TreeIter iter;
48                 if (args.ResponseId == ResponseType.Cancel)
49                         return; 
50
51                 ETipoDocumento _tipoDoc;
52                 int _nroDoc;
53                 string _nombre;
54                 string _apellido;
55                 string _email;
56                 ESexo _sexo;
57                 DateTime _fechaNac;
58                 string _calle;
59                 int _numero;
60                 int _piso;
61                 string _dpto;
62                 EProvincia _provincia;
63                 string _telefono;
64
65                 /* Acept presionado, guardo */
66                 AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
67                 
68                 tipoDoc.GetActiveIter (out iter);
69                 _tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)tipoDoc.Model.GetValue (iter, 0), true);
70                 _nroDoc = Int32.Parse (nroDoc.Text);
71
72                 if (c.ExisteSolicitante (_tipoDoc, _nroDoc) == true) {
73                         /* TODO : Mostrar alerta y cancelar cerrado de dialogo! */
74                         return;
75                 }
76
77                 _nombre = nombre.Text;
78                 _apellido = apellido.Text;
79                 _email = email.Text;
80                 if (sexom.Active == true)
81                         _sexo = ESexo.M;
82                 else
83                         _sexo = ESexo.F;
84                 _fechaNac = DateTime.Parse (fechaNac.Text);
85                 _calle = calle.Text;
86                 _numero = Int32.Parse (numero.Text);
87                 _piso = Int32.Parse (piso.Text);
88                 _dpto = dpto.Text;
89                 provincia.GetActiveIter (out iter);
90                 //_provincia= (EProvincia)Enum.Parse (typeof (EProvincia), (string)provincia.Model.GetValue (iter, 0), true);
91                 //_provincia 
92                 _telefono = telefono.Text;
93         
94                 /*c.AgregarSolicitante (
95                         _tipoDoc, _nroDoc, _nombre, _apellido, _email,
96                         _fechaNac, _calle, _numero, _piso,  _dpto, _telefono, 
97                         _sexo, _disponibilidad, _familiares, _observaciones);
98                 */
99                 c.Dispose ();
100         }
101
102         public void OnSeleccionarFechaClicked (object o, EventArgs args)
103         {
104                 
105                 CalendarDialog d;
106                 if (fechaNac.Text.Equals (""))
107                         d = new CalendarDialog ();
108                 else
109                         d = new CalendarDialog (fechaNac.Text);
110                 
111                 int response;
112                 
113                 response = d.Run();
114                 if (response == -3)
115                         fechaNac.Text = d.Date.ToLongDateString ();
116                 d.Destroy ();
117         }
118
119         public void Run ()
120         {
121                 Dialog w = (Dialog)xml.GetWidget ("agregar_familiar");
122                 w.Title = String.Format ("Agregar Familiar {0} de {1}", actual, total);
123                 w.Run ();
124                 w.Destroy ();
125         }
126 }
127