\r
using Dominio;\r
using Dominio.Autorizaciones;\r
+using Reportes;\r
\r
#endregion Usings\r
\r
\r
#endregion Constructores\r
\r
+ #region Campos Privados \r
+ \r
+ private ConsumoAfiliadosReport _reporteConsumo = null;\r
+ private PrestacionesRealizadasReport _reporteAprobaciones = null;\r
+ \r
+ #endregion Campos Privados\r
+\r
#region Métodos Públicos\r
\r
public void procesarInfoRecibida()\r
{\r
- //1. Obtener todos los prestadores\r
- ArrayList prestadores = this.ObjectSetToArrayList( this.Db.get(new Prestador()) );\r
-\r
- //2. recorrer los prestadores\r
- foreach ( Prestador p in prestadores )\r
+ try\r
{\r
- //Obtener archivos enviados del prestador\r
+ //1. Obtener todos los prestadores\r
+ ArrayList prestadores = this.ObjectSetToArrayList( this.Db.get(new Prestador()) );\r
\r
- }\r
+ InfoPrestacionesAdmin ipAdmin = new InfoPrestacionesAdmin();\r
+\r
+ //2. recorrer los prestadores\r
+ foreach ( Prestador p in prestadores )\r
+ {\r
+ //Obtener archivos enviados del prestador\r
+ InfoPrestacionesReport[] informes = ipAdmin.ObtenerInfoPendiente( p );\r
\r
+ if ( informes.Length <= 0 )\r
+ {\r
+ this.NotificarPrestador( NotificacionPrestador.Tipo.InfoNoRecibida, null );\r
+ this.NotificarPagos( "Archivos no recibidos", "Prestador=" + p.Nombre + "\n" + "CUIT=" + p.Cuit );\r
+ }\r
+ else\r
+ {\r
+ //Recorro informe por informe\r
+ foreach ( InfoPrestacionesReport ip in informes )\r
+ {\r
+ if ( (ip.ValidarFormato()) && ( ip.Cuit == p.Cuit ) )\r
+ { //OK\r
+ ip.ValidarLineas(); //Las marca como aprobadas/rechazadas\r
+ this.ProcesarLineas( ip );\r
+ ipAdmin.MoverArchivoAceptado( ip );\r
+ this.NotificarPrestador( NotificacionPrestador.Tipo.ProcesoExitoso, ip );\r
+ }\r
+ else\r
+ {\r
+ //ERROR. \r
+ // 1. Mover el archivo a "rechazados"\r
+ ipAdmin.MoverArchivoRechazado( ip );\r
+ // 2. Enviar mail al Prestador y a Pagos\r
+ this.NotificarPrestador( NotificacionPrestador.Tipo.ErrorGrave, ip );\r
+ this.NotificarPagos( "Error al procesar archivo", "Nombre=" + ip.PathArchivo );\r
+ }\r
+ } //foreach informes\r
+ } //else\r
+ } // foreach prestadores\r
\r
+ //Envío los reportes creados:\r
+ ipAdmin.EnviarReporte( this._reporteAprobaciones );\r
+ ipAdmin.EnviarReporte( this._reporteConsumo );\r
+ }\r
+ catch ( Exception e )\r
+ {\r
+ Console.WriteLine( e.Message );\r
+ }\r
}\r
\r
#endregion Métodos Públicos\r
+\r
+ #region Métodos Privados\r
+\r
+ /// <summary>\r
+ /// Procesa las lineas del reporte una vez que el mismo ha sido validado:\r
+ /// Si está aprobada, la registra en el sistema y la agrega al reporte de Consumo de los Afiliados. \r
+ /// A todas las lineas las agrega al Informe de Aprobaciones/rechazos de Prestaciones Realizadas.\r
+ /// </summary>\r
+ /// <param name="ip">Reporte del cual se porcesarán las lineas</param>\r
+ private void ProcesarLineas( InfoPrestacionesReport ip )\r
+ {\r
+ //this._reporteAprobaciones = new \r
+ }\r
+\r
+ private void NotificarPrestador( NotificacionPrestador.Tipo tipoNotif, InfoPrestacionesReport ip )\r
+ {\r
+ //NotificacionesAdmin.\r
+ }\r
+\r
+ private void NotificarPagos( string titulo, string contenido )\r
+ {\r
+ \r
+ }\r
+\r
+ #endregion Métodos Privados\r
+\r
}\r
}\r