X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/4763f9f35aed5629241308415a4fca4794b3dadf..e3ef49aebf88034b0185f8c8a67b5e1fe7b1241c:/demo/src/Controlador/RecibirPrestacionesController.cs?ds=inline
diff --git a/demo/src/Controlador/RecibirPrestacionesController.cs b/demo/src/Controlador/RecibirPrestacionesController.cs
index a86e795..f6b1a08 100644
--- a/demo/src/Controlador/RecibirPrestacionesController.cs
+++ b/demo/src/Controlador/RecibirPrestacionesController.cs
@@ -5,8 +5,14 @@ using System.Collections;
using Dominio;
using Dominio.Autorizaciones;
+using Dominio.Afiliados;
+using Dominio.Planes;
using Reportes;
+using System.IO;
+
+using com.db4o;
+
#endregion Usings
namespace Controlador
@@ -27,23 +33,20 @@ 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 Métodos Públicos
-
- ///
- /// Dispara el proceso de recepción y procesamiento de la info recibida de los Presadores
- ///
- public void procesarInfoRecibida()
+ #region Creacion de Datos en la BD
+ public void InsertarDatosNecesarios()
{
- try
+ //PRESTADOR
+ Prestador pre = new Prestador();
+ pre.Cuit = "30-12345678-1";
+ ObjectSet os = this.Db.get( pre );
+ if ( (os == null) || (os.size() == 0) )
{
- //Para test:
- Prestador pre = new Prestador();
- pre.Cuit = "30-12345678-1";
Dominio.SDireccion dir;
dir.Calle = "Gaona"; dir.CodigoPostal = "AB1504"; dir.Departamento = "";
dir.Numero = 1234; dir.Piso = 0; dir.Provincia = Dominio.EProvincia.CAPITAL_FEDERAL;
@@ -55,8 +58,48 @@ namespace Controlador
pre.Password = "camilo";
pre.Zona = new SZona( "Caballito", "Zona de Caballito" );
this.Db.set( pre );
- //Para test
+ }
+ //AUTORIZACIONES
+ AutorizacionAutomatica a = new AutorizacionAutomatica();
+ a.Codigo = 123;
+ os = this.Db.get( a );
+ if ( (os == null) || (os.size() == 0) )
+ {
+ Solicitante sol = new Solicitante( ETipoDocumento.DNI, 28123456, "Jorge", "Drexler" );
+ Plan plan = new Plan( 10F ); plan.Codigo = 3;
+ Afiliado afil = new Afiliado( sol, plan, new DateTime(2004, 4, 30 ) );
+ afil.Codigo = 987;
+ a.Afiliado = afil;
+ a.Prestacion = new Prestacion( "B01AC06", "Acido acetilsalicílico" );
+ 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 );
+ }
+ else
+ {
+ Autorizacion aut = (ObjectSetToArrayList( os )[0] as Autorizacion );
+ aut.FechaRealizacion = DateTime.MinValue;
+ this.Db.set( aut );
+ }
+
+ }
+
+ #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
+ {
//1. Obtener todos los prestadores
ArrayList prestadores = this.ObjectSetToArrayList( this.Db.get(new Prestador()) );
@@ -70,8 +113,8 @@ namespace Controlador
if ( informes.Length <= 0 )
{
- this.NotificarPrestador( NotificacionPrestador.Tipo.InfoNoRecibida, null );
- this.NotificarPagos( "Archivos no recibidos", "Prestador=" + p.Nombre + "\n" + "CUIT=" + p.Cuit );
+ this.NotificarPrestador( p, NotificacionPrestador.Tipo.InfoNoRecibida, null );
+ this.NotificarPagos( "NORECIBIDO " + p.Cuit.Trim() + " " + DateTime.Now.ToString("yyyy-MM-dd") );
}
else
{
@@ -81,9 +124,9 @@ namespace Controlador
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 );
+ this.NotificarPrestador( p, NotificacionPrestador.Tipo.ProcesoExitoso, ip );
}
else
{
@@ -91,8 +134,8 @@ namespace Controlador
// 1. Mover el archivo a "rechazados"
ipAdmin.MoverArchivoRechazado( ip );
// 2. Enviar mail al Prestador y a Pagos
- this.NotificarPrestador( NotificacionPrestador.Tipo.ErrorGrave, ip );
- this.NotificarPagos( "Error al procesar archivo", "Nombre=" + ip.PathArchivo );
+ this.NotificarPrestador( p, NotificacionPrestador.Tipo.ErrorGrave, ip );
+ this.NotificarPagos( "ERROR " + p.Cuit.Trim() + " " + ip.NombreArchivo );
}
} //foreach informes
} //else
@@ -105,6 +148,7 @@ namespace Controlador
catch ( Exception e )
{
Console.WriteLine( e.Message );
+ Console.Read();
}
}
@@ -117,20 +161,50 @@ namespace Controlador
/// Si está aprobada, la registra en el sistema y la agrega al reporte de Consumo de los Afiliados.
/// 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 );
+
+ //agrego info al reporte de consumo
+ this._reporteConsumo.AgregarInfo( p, linea );
+ }
+ }
}
- private void NotificarPrestador( NotificacionPrestador.Tipo tipoNotif, InfoPrestacionesReport ip )
+ private void NotificarPrestador( Prestador p, NotificacionPrestador.Tipo tipoNotif, InfoPrestacionesReport ip )
{
- //NotificacionesAdmin.
+ NotificacionesAdmin.Instancia.EnviarAlPrestador( p, tipoNotif, ip );
}
- private void NotificarPagos( string titulo, string contenido )
+ private void NotificarPagos( string mensaje )
{
-
+ NotificacionesAdmin.Instancia.EnviarAPagos( mensaje );
+ }
+
+
+ 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