]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Vistas/IngresarSolicitud.cs
* Ahi ya va queriendo, ya se afilia el titular
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / IngresarSolicitud.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 VIngresarSolicitud 
12 {
13         Dialog wIngresarSolicitud;
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         public VIngresarSolicitud ()
35         {
36                 xml = new Glade.XML (null, "ingresar_solicitud.glade", "ingresarSolicitud", null);
37                 xml.Autoconnect (this);
38         }
39
40         public void OnDialogResponse (object o, ResponseArgs args)
41         {
42                 TreeIter iter;
43                 if (args.ResponseId == ResponseType.Cancel)
44                         return; 
45
46                 ETipoDocumento _tipoDoc;
47                 int _nroDoc;
48                 string _nombre;
49                 string _apellido;
50                 string _email;
51                 ESexo _sexo;
52                 DateTime _fechaNac;
53                 string _calle;
54                 int _numero;
55                 int _piso;
56                 string _dpto;
57                 EProvincia _provincia;
58                 string _disponibilidad;
59                 string _telefono;
60                 int _familiares;
61                 string _observaciones;
62
63                 /* Acept presionado, guardo */
64                 AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
65                 
66                 tipoDoc.GetActiveIter (out iter);
67                 _tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)tipoDoc.Model.GetValue (iter, 0), true);
68                 _nroDoc = Int32.Parse (nroDoc.Text);
69
70                 if (c.ExisteSolicitante (_tipoDoc, _nroDoc) == true) {
71                         /* TODO : Mostrar alerta y cancelar cerrado de dialogo! */
72                         return;
73                 }
74
75                 _nombre = nombre.Text;
76                 _apellido = apellido.Text;
77                 _email = email.Text;
78                 if (sexom.Active == true)
79                         _sexo = ESexo.M;
80                 else
81                         _sexo = ESexo.F;
82                 _fechaNac = DateTime.Parse (fechaNac.Text);
83                 _calle = calle.Text;
84                 _numero = Int32.Parse (numero.Text);
85                 _piso = Int32.Parse (piso.Text);
86                 _dpto = dpto.Text;
87                 provincia.GetActiveIter (out iter);
88                 //_provincia= (EProvincia)Enum.Parse (typeof (EProvincia), (string)provincia.Model.GetValue (iter, 0), true);
89                 //_provincia 
90                 _telefono = telefono.Text;
91                 _disponibilidad = disponibilidad.Text;
92                 _familiares = familiares.ValueAsInt;
93                 _observaciones = observaciones.Buffer.Text;
94         
95                 c.AgregarSolicitante (
96                         _tipoDoc, _nroDoc, _nombre, _apellido, _email,
97                         _fechaNac, _calle, _numero, _piso,  _dpto, _telefono, 
98                         _sexo, _disponibilidad, _familiares, _observaciones);
99
100                 c.Dispose ();
101         }
102
103         public void OnSeleccionarFechaClicked (object o, EventArgs args)
104         {
105                 
106                 CalendarDialog d;
107                 if (fechaNac.Text.Equals (""))
108                         d = new CalendarDialog ();
109                 else
110                         d = new CalendarDialog (fechaNac.Text);
111                 
112                 int response;
113                 
114                 response = d.Run();
115                 if (response == -3)
116                         fechaNac.Text = d.Date.ToLongDateString ();
117                 d.Destroy ();
118         }
119
120         public void Run ()
121         {
122                 Dialog w = (Dialog)xml.GetWidget ("ingresarSolicitud");
123                 w.Run ();
124                 w.Destroy ();
125         }
126 }
127