3 using System.Collections;
7 using Controlador.Afiliacion;
8 using Dominio.Afiliados;
11 public class VIngresarSolicitud
13 Dialog wIngresarSolicitud;
16 [Widget] ComboBox tipoDoc;
17 [Widget] Entry nroDoc;
18 [Widget] Entry nombre;
19 [Widget] Entry apellido;
21 [Widget] RadioButton sexom;
22 [Widget] Entry fechaNac;
24 [Widget] Entry numero;
27 [Widget] ComboBox provincia;
28 [Widget] Entry disponibilidad;
29 [Widget] Entry codigopostal;
30 [Widget] Entry telefono;
31 [Widget] SpinButton familiares;
32 [Widget] TextView observaciones;
34 public VIngresarSolicitud ()
36 xml = new Glade.XML (null, "ingresar_solicitud.glade", "ingresarSolicitud", null);
37 xml.Autoconnect (this);
40 public void OnDialogResponse (object o, ResponseArgs args)
43 if (args.ResponseId == ResponseType.Cancel)
46 ETipoDocumento _tipoDoc;
57 EProvincia _provincia;
58 string _disponibilidad;
61 string _observaciones;
63 /* Acept presionado, guardo */
64 AfiliadoSolicitanteController c = new AfiliadoSolicitanteController ();
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);
70 if (c.ExisteSolicitante (_tipoDoc, _nroDoc) == true) {
71 /* TODO : Mostrar alerta y cancelar cerrado de dialogo! */
75 _nombre = nombre.Text;
76 _apellido = apellido.Text;
78 if (sexom.Active == true)
82 _fechaNac = DateTime.Parse (fechaNac.Text);
84 _numero = Int32.Parse (numero.Text);
85 _piso = Int32.Parse (piso.Text);
87 provincia.GetActiveIter (out iter);
88 //_provincia= (EProvincia)Enum.Parse (typeof (EProvincia), (string)provincia.Model.GetValue (iter, 0), true);
90 _telefono = telefono.Text;
91 _disponibilidad = disponibilidad.Text;
92 _familiares = familiares.ValueAsInt;
93 _observaciones = observaciones.Buffer.Text;
95 c.AgregarSolicitante (
96 _tipoDoc, _nroDoc, _nombre, _apellido, _email,
97 _fechaNac, _calle, _numero, _piso, _dpto, _telefono,
98 _sexo, _disponibilidad, _familiares, _observaciones);
103 public void OnSeleccionarFechaClicked (object o, EventArgs args)
107 if (fechaNac.Text.Equals (""))
108 d = new CalendarDialog ();
110 d = new CalendarDialog (fechaNac.Text);
116 fechaNac.Text = d.Date.ToLongDateString ();
122 Dialog w = (Dialog)xml.GetWidget ("ingresarSolicitud");