X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/17758e264340c8e5114a9509a9d10f2aa185c091..afbf89745cac12021bfe71bc6739dbd9459cacc0:/demo/src/Controlador/RecibirPrestacionesController.cs diff --git a/demo/src/Controlador/RecibirPrestacionesController.cs b/demo/src/Controlador/RecibirPrestacionesController.cs index 2549b4a..838c82e 100644 --- a/demo/src/Controlador/RecibirPrestacionesController.cs +++ b/demo/src/Controlador/RecibirPrestacionesController.cs @@ -7,6 +7,8 @@ using Dominio; using Dominio.Autorizaciones; using Reportes; +using com.db4o; + #endregion Usings namespace Controlador @@ -27,13 +29,58 @@ namespace Controlador #region Campos Privados - private ConsumoAfiliadosReport _reporteConsumo = null; - private PrestacionesRealizadasReport _reporteAprobaciones = null; + private ConsumoAfiliadosReport _reporteConsumo = new ConsumoAfiliadosReport(); + private PrestacionesRealizadasReport _reporteAprobaciones = new PrestacionesRealizadasReport(); #endregion Campos Privados + #region Creacion de Datos en la BD + public void InsertarDatosNecesarios() + { + //PRESTADOR + Prestador pre = new Prestador(); + pre.Cuit = "30-12345678-1"; + ObjectSet os = this.Db.get( pre ); + if ( (os == null) || (os.size() == 0) ) + { + Dominio.SDireccion dir; + dir.Calle = "Gaona"; dir.CodigoPostal = "AB1504"; dir.Departamento = ""; + dir.Numero = 1234; dir.Piso = 0; dir.Provincia = Dominio.EProvincia.CAPITAL_FEDERAL; + dir.Telefono = "5056-4567"; + pre.Direccion = dir; + pre.Email = @"roberto@sancamilo.com"; + pre.FechaBaja = DateTime.MinValue; + pre.Nombre = "Clinica San Camilo"; + pre.Password = "camilo"; + pre.Zona = new SZona( "Caballito", "Zona de Caballito" ); + this.Db.set( pre ); + } + + //AUTORIZACIONES + AutorizacionAutomatica a = new AutorizacionAutomatica(); + a.Codigo = 123; + os = this.Db.get( a ); + if ( (os == null) || (os.size() == 0) ) + { + a.Afiliado = new Dominio.Afiliados.Afiliado( 987 ); + a.Prestacion = new Prestacion( "B01AC06" ); + a.Prestador = pre; + a.FechaSolicitud = new DateTime( 2005, 5, 20 ); // 20 de mayo + a.FechaRealizacion = DateTime.MinValue; + a.FechaVencimiento = a.FechaSolicitud.AddMonths( 2 ); // 20 de julio, aprox + a.Aprobada = true; + a.PorcentajeCobertura = 12.5F; + this.Db.set( a ); + } + } + + #endregion Creacion de Datos en la BD + #region Métodos Públicos + /// + /// Dispara el proceso de recepción y procesamiento de la info recibida de los Presadores + /// public void procesarInfoRecibida() { try @@ -59,10 +106,10 @@ namespace Controlador //Recorro informe por informe foreach ( InfoPrestacionesReport ip in informes ) { - if ( (ip.ValidarFormato()) && ( ip.Cuit == p.Cuit ) ) + if ( (ip.ValidarFormato()) && ( ip.CuitPrestador == p.Cuit ) ) { //OK ip.ValidarLineas( p ); //Las marca como aprobadas/rechazadas - this.ProcesarLineas( ip ); + this.ProcesarLineas( p, ip ); ipAdmin.MoverArchivoAceptado( ip ); this.NotificarPrestador( NotificacionPrestador.Tipo.ProcesoExitoso, ip ); } @@ -86,6 +133,7 @@ namespace Controlador catch ( Exception e ) { Console.WriteLine( e.Message ); + Console.Read(); } } @@ -99,9 +147,23 @@ namespace Controlador /// A todas las lineas las agrega al Informe de Aprobaciones/rechazos de Prestaciones Realizadas. /// /// Reporte del cual se porcesarán las lineas - private void ProcesarLineas( InfoPrestacionesReport ip ) + private void ProcesarLineas( Prestador p, InfoPrestacionesReport ip ) { - //this._reporteAprobaciones = new + foreach ( LineaInfoPrestacionesReport linea in ip.Lineas ) + { + this._reporteAprobaciones.AgregarInfo( p, ip.FechaEnvio, linea ); + + if ( linea.Aprobada ) + { + //actualizo en el sistema + Autorizacion a = this.getAutorizacion( linea.CodigoAutorizacion ); + a.FechaRealizacion = linea.FechaRealizacion; + this.Db.set( a ); + + //agego info al reporte de consumo + this._reporteConsumo.AgregarInfo( p, linea ); + } + } } private void NotificarPrestador( NotificacionPrestador.Tipo tipoNotif, InfoPrestacionesReport ip ) @@ -114,6 +176,23 @@ namespace Controlador } + + private Autorizacion getAutorizacion( int codigo ) + { + ArrayList al = new ArrayList(); + + al = this.ObjectSetToArrayList( this.Db.get( new AutorizacionManual(codigo) ) ); + Autorizacion a = ( (al.Count == 0)? null : al[0] ) as AutorizacionManual; + + if ( a == null ) + { + al = this.ObjectSetToArrayList( this.Db.get( new AutorizacionAutomatica(codigo) ) ); + a = ( (al.Count == 0)? null : al[0] ) as AutorizacionAutomatica; + } + + return a; + } + #endregion Métodos Privados }