3 using System.Collections;
6 using Dominio.Afiliados;
8 using Dominio.Autorizaciones;
14 Dialog wConsultarAfiliado;
21 private static void EjecutarTests()
23 Tests.TestsAutorizacion.Instancia.EjecutarTodos();
27 Controlador.RecibirPrestacionesController rpc = new Controlador.RecibirPrestacionesController();
30 rpc.InsertarDatosNecesarios();
32 rpc.procesarInfoRecibida();
35 //Acá pueden agregar más, si quieren
42 static public void Main (string[] args)
44 if ( args.Length > 0) {
45 if (args[0].Equals ("--test")) {
49 Console.WriteLine ("Parametro no válido");
55 #endregion Entry Point
62 gxml = new Glade.XML (null, "main.glade", "main", null);
63 gxml.Autoconnect (this);
65 #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
66 logo.FromFile = "logo.png";
71 private void InitDemo ()
73 /* Algunas categorias */
74 Categoria c1 = new Categoria ();
76 c1.Nombre = "Odontologia";
78 Categoria c2 = new Categoria ();
80 c2.Nombre = "Traumatologia";
82 Prestacion p1 = new Prestacion ();
84 p1.Nombre = "Extracion Muelas de Juicio";
87 Prestacion p2 = new Prestacion ();
89 p2.Nombre = "Aplique de Fluor";
92 Prestacion p3 = new Prestacion ();
94 p3.Nombre = "Yeso parcial";
97 Prestacion p4 = new Prestacion ();
99 p4.Nombre = "Aplique clavos fractura multiple";
102 Plan plan = new Plan (1.0f);
103 plan.Descripcion = "Plan Basico";
104 plan.PermanenciaMinima = 2;
107 Cobertura cob = new Cobertura (p1, 1.0f, 15.0f);
108 plan.AgregarCobertura (cob);
110 /* Inicio afiliados */
111 Afiliado afil = new Afiliado (987);
112 afil.TipoDocumento = ETipoDocumento.DNI;
113 afil.NroDocumento = 27000193;
114 afil.PlanActual = plan;
116 Afiliado afil2 = new Afiliado (666);
117 afil.TipoDocumento = ETipoDocumento.DNI;
118 afil.NroDocumento = 27000193;
119 afil.PlanActual = plan;
120 /* Inicio prestadores */
121 Prestador prestador = new Prestador ("30-12345678-1");
122 prestador.Nombre = "DePrueba";
123 prestador.Email = "DePrueba@mail.com";
125 p1.AgregarPrestador (prestador);
126 p2.AgregarPrestador (prestador);
127 p3.AgregarPrestador (prestador);
128 p4.AgregarPrestador (prestador);
131 AutorizacionManual auth1 = new AutorizacionManual (new DateTime(2005, 7, 1));
132 auth1.FechaVencimiento = auth1.FechaSolicitud.AddDays (60);
133 auth1.FechaResolucion = auth1.FechaSolicitud.AddDays (1);
134 auth1.PorcentajeCobertura = 12.5f;
135 auth1.Prestador = prestador;
136 auth1.Prestacion = p1;
137 auth1.Afiliado = afil;
138 auth1.Aprobada = true;
142 AutorizacionManual auth2 = new AutorizacionManual (new DateTime(2005, 5, 1));
143 auth2.FechaVencimiento = auth2.FechaSolicitud.AddDays (60);
144 auth1.FechaResolucion = auth2.FechaSolicitud.AddDays (1);
145 auth2.Aprobada = true;
146 auth2.PorcentajeCobertura = 90.0f;
147 auth2.Prestador = prestador;
148 auth2.Prestacion = p3;
149 auth2.Afiliado = afil2;
152 AutorizacionAutomatica auth3 = new AutorizacionAutomatica(new DateTime (2005, 6, 28));
153 auth3.FechaVencimiento = auth3.FechaSolicitud.AddDays (60);
154 auth3.Aprobada = true;
155 auth3.PorcentajeCobertura = 12.5f;
156 auth3.Prestador = prestador;
157 auth3.Prestacion = p1;
158 auth3.Afiliado = afil;
161 AutorizacionAutomatica auth4 = new AutorizacionAutomatica(new DateTime (2005, 6, 28));
162 auth4.FechaVencimiento = auth4.FechaSolicitud.AddDays (60);
163 auth4.Aprobada = true;
164 auth4.PorcentajeCobertura = 20.0f;
165 auth4.Prestador = prestador;
166 auth4.Prestacion = p2;
167 auth4.Afiliado = afil;
171 db = Db4o.openFile("os.yap");
185 public void OnSalirActivate (object o, EventArgs args)
190 public void OnDeleteEvent(object o, DeleteEventArgs args)
195 public void OnIngresarSolicitud(object o, EventArgs args)
197 VIngresarSolicitud v = new VIngresarSolicitud ();
201 public void OnEmitirHojaDeRuta (object o, EventArgs args)
203 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
207 public void OnAgregarAfiliado (object o, EventArgs args)
209 VAgregarAfiliado v = new VAgregarAfiliado ();
213 public void OnMantenerPlanes (object o, EventArgs args)
215 VMantenerPlanes v = new VMantenerPlanes ();
219 public void OnMantenerPrestaciones (object o, EventArgs args)
221 VMantenerPrestaciones v = new VMantenerPrestaciones ();
225 public void OnMantenerPrestadores (object o, EventArgs args)
227 VMantenerPrestadores v = new VMantenerPrestadores ();
231 public void OnRegistrarVisitas (object o, EventArgs args)
233 VRegistrarVisitas v = new VRegistrarVisitas ();
237 public void OnPedidoAutorizacionManual (object o, EventArgs args)
239 VPedidoAutorizacionManual v = new VPedidoAutorizacionManual ();
243 public void OnActualizarAutorizaciones (object o, EventArgs args)
245 VRevisarAutorizacionManual v = new VRevisarAutorizacionManual ();
249 public void OnConsultarAfiliado (object o, EventArgs args)
251 VConsultarAfiliado v = new VConsultarAfiliado ();
255 public void OnConsultarAutorizaciones (object o, EventArgs args)
257 VConsultarAutorizaciones v = new VConsultarAutorizaciones ();
261 public void OnPedidoAutorizacionAutomatica (object o, EventArgs args)
265 ProgressBar progreso;
267 public void OnProcesarInformes (object o, EventArgs args)
269 /* Recibir y Cotejar */
270 Dialog dialog = new Dialog ("Espere por favor ...", (Window)gxml.GetWidget ("main"), Gtk.DialogFlags.DestroyWithParent);
273 progreso = new ProgressBar ();
274 dialog.VBox.PackStart (new Label ("Procesando ..."), false, false, 12);
275 dialog.VBox.PackStart (progreso, false, false, 12);
277 Controlador.RecibirPrestacionesController rpc = new Controlador.RecibirPrestacionesController();
280 //rpc.InsertarDatosNecesarios();
281 rpc.procesarInfoRecibida(this);
285 MessageDialog md = new MessageDialog ((Window)gxml.GetWidget ("main"),
286 DialogFlags.DestroyWithParent,
288 ButtonsType.Close, "El proceso terminó satisfactoriamente.");
290 int result = md.Run ();
295 public void UpdateIdle ()
298 while (Gtk.Global.EventsPending)
299 Gtk.Main.IterationDo (false);