]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Vistas/AgregarFamiliar.cs
* Pasos finales ... la pucha que esta query me hace renegar :D
[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         ETipoDocumento tipoTitular;
38         int nroTitular;
39
40         public VAgregarFamiliar(int n, int t, ETipoDocumento td_titular, int doc_titular)
41         {
42                 xml = new Glade.XML (null, "registrar_visitas.glade", "agregar_familiar", null);
43                 xml.Autoconnect (this);
44                 actual = n;
45                 total = t;
46                 tipoTitular = td_titular;
47                 nroTitular = doc_titular;
48         }
49
50         public void OnDialogResponse (object o, ResponseArgs args)
51         {
52                 TreeIter iter;
53                 if (args.ResponseId == ResponseType.Cancel)
54                         return; 
55
56                 ETipoDocumento _tipoDoc;
57                 int _nroDoc;
58                 string _nombre;
59                 string _apellido;
60                 string _email;
61                 ESexo _sexo;
62                 DateTime _fechaNac;
63                 string _calle;
64                 int _numero;
65                 int _piso;
66                 string _dpto;
67                 EProvincia _provincia;
68                 string _telefono;
69
70                 /* Acept presionado, guardo */
71                 RegistrarVisitasController c = new RegistrarVisitasController (null);
72
73                 tipoDoc.GetActiveIter (out iter);
74                 _tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)tipoDoc.Model.GetValue (iter, 0), true);
75                 _nroDoc = Int32.Parse (nroDoc.Text);
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.CargarFamiliar (
95                         tipoTitular, nroTitular, _tipoDoc, _nroDoc, _nombre, _apellido, _email,
96                         _fechaNac, _calle, _numero, _piso,  _dpto, _telefono, 
97                         _sexo);
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