X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/aeb71279fa96dfc8e3832d04ae25d68c6853d39f..889da6ee2b0237902b33b5d719a8d2fa55a1a8c2:/demo/src/Controlador/RecibirPrestacionesController.cs
diff --git a/demo/src/Controlador/RecibirPrestacionesController.cs b/demo/src/Controlador/RecibirPrestacionesController.cs
index 2c64432..5789ac4 100644
--- a/demo/src/Controlador/RecibirPrestacionesController.cs
+++ b/demo/src/Controlador/RecibirPrestacionesController.cs
@@ -5,6 +5,7 @@ using System.Collections;
using Dominio;
using Dominio.Autorizaciones;
+using Reportes;
#endregion Usings
@@ -24,23 +25,96 @@ namespace Controlador
#endregion Constructores
+ #region Campos Privados
+
+ private ConsumoAfiliadosReport _reporteConsumo = null;
+ private PrestacionesRealizadasReport _reporteAprobaciones = null;
+
+ #endregion Campos Privados
+
#region Métodos Públicos
public void procesarInfoRecibida()
{
- //1. Obtener todos los prestadores
- ArrayList prestadores = this.ObjectSetToArrayList( this.Db.get(new Prestador()) );
-
- //2. recorrer los prestadores
- foreach ( Prestador p in prestadores )
+ try
{
- //Obtener archivos enviados del prestador
+ //1. Obtener todos los prestadores
+ ArrayList prestadores = this.ObjectSetToArrayList( this.Db.get(new Prestador()) );
- }
+ InfoPrestacionesAdmin ipAdmin = new InfoPrestacionesAdmin();
+
+ //2. recorrer los prestadores
+ foreach ( Prestador p in prestadores )
+ {
+ //Obtener archivos enviados del prestador
+ InfoPrestacionesReport[] informes = ipAdmin.ObtenerInfoPendiente( p );
+ if ( informes.Length <= 0 )
+ {
+ this.NotificarPrestador( NotificacionPrestador.Tipo.InfoNoRecibida, null );
+ this.NotificarPagos( "Archivos no recibidos", "Prestador=" + p.Nombre + "\n" + "CUIT=" + p.Cuit );
+ }
+ else
+ {
+ //Recorro informe por informe
+ foreach ( InfoPrestacionesReport ip in informes )
+ {
+ if ( (ip.ValidarFormato()) && ( ip.Cuit == p.Cuit ) )
+ { //OK
+ ip.ValidarLineas(); //Las marca como aprobadas/rechazadas
+ this.ProcesarLineas( ip );
+ ipAdmin.MoverArchivoAceptado( ip );
+ this.NotificarPrestador( NotificacionPrestador.Tipo.ProcesoExitoso, ip );
+ }
+ else
+ {
+ //ERROR.
+ // 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 );
+ }
+ } //foreach informes
+ } //else
+ } // foreach prestadores
+ //Envío los reportes creados:
+ ipAdmin.EnviarReporte( this._reporteAprobaciones );
+ ipAdmin.EnviarReporte( this._reporteConsumo );
+ }
+ catch ( Exception e )
+ {
+ Console.WriteLine( e.Message );
+ }
}
#endregion Métodos Públicos
+
+ #region Métodos Privados
+
+ ///
+ /// Procesa las lineas del reporte una vez que el mismo ha sido validado:
+ /// 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 )
+ {
+ //this._reporteAprobaciones = new
+ }
+
+ private void NotificarPrestador( NotificacionPrestador.Tipo tipoNotif, InfoPrestacionesReport ip )
+ {
+ //NotificacionesAdmin.
+ }
+
+ private void NotificarPagos( string titulo, string contenido )
+ {
+
+ }
+
+ #endregion Métodos Privados
+
}
}