4 using System.Collections;
\r
6 using System.Xml.Schema;
\r
7 using System.Globalization;
\r
9 using System.Configuration;
\r
11 using System.Reflection;
\r
19 /// Clase que representa un archivo de Información de Prestaciones Realizadas enviado por el
\r
22 public class InfoPrestacionesReport
\r
24 #region Constructores
\r
26 public InfoPrestacionesReport( string pathNombreArchivo )
\r
28 this._pathArchivo = pathNombreArchivo;
\r
31 #endregion Constructores
\r
33 #region Campos Privados
\r
35 private string _pathArchivo = string.Empty;
\r
36 private string _cuitPrestador;
\r
37 private DateTime _fechaEnvio;
\r
39 private LineaInfoPrestacionesReport[] _lineas = null;
\r
41 #endregion Campos Privados
\r
43 #region Propiedades Públicas
\r
45 public string PathArchivo
\r
47 get { return this._pathArchivo; }
\r
48 set { this._pathArchivo = value; }
\r
51 public string CuitPrestador
\r
53 get { return this._cuitPrestador; }
\r
54 set { this._cuitPrestador = value; }
\r
57 public DateTime FechaEnvio
\r
59 get { return this._fechaEnvio; }
\r
60 set { this._fechaEnvio = value; }
\r
63 public LineaInfoPrestacionesReport[] Lineas
\r
65 get { return this._lineas; }
\r
66 set { this._lineas = value; }
\r
69 #endregion Propiedades Públicas
\r
71 #region Métodos públicos
\r
73 public bool ValidarFormato()
\r
75 XmlDocument xmlDoc = new System.Xml.XmlDocument();
\r
78 xmlDoc.Load( this._pathArchivo );
\r
80 catch ( XmlException xmlEx )
\r
82 #warning Ver como mostrar los errores
\r
86 if ( this.ValidarContraSchema( xmlDoc ) )
\r
88 this.CargarXml( xmlDoc );
\r
92 //Mostrar error y retornar
\r
99 public void ValidarLineas( Dominio.Autorizaciones.Prestador prestador )
\r
101 foreach ( LineaInfoPrestacionesReport linea in this._lineas )
\r
103 linea.Validar( prestador );
\r
107 #endregion Métodos públicos
\r
109 #region Métodos privados
\r
111 private ArrayList _validationErrors = new ArrayList();
\r
113 private void valReader_ValidationEventHandler(object sender, ValidationEventArgs e)
\r
115 this._validationErrors.Add( e.Message );
\r
118 private string _xsdPathNombre = null;
\r
119 private string XsdPathNombre
\r
123 if ( this._xsdPathNombre == null )
\r
125 string currentDir = Directory.GetCurrentDirectory();
\r
126 string xsdPath = Path.Combine( currentDir, ConfigurationSettings.AppSettings["DirectorioRecursos"] );
\r
127 if ( ! Directory.Exists(xsdPath) )
\r
129 Directory.CreateDirectory( xsdPath );
\r
132 return ( Path.Combine( xsdPath, "infoPrestaciones_schema.xsd" ) );
\r
135 return this._xsdPathNombre;
\r
139 private bool ValidarContraSchema( XmlDocument xmlDoc )
\r
141 this._validationErrors.Clear();
\r
143 NameTable nt = new NameTable();
\r
144 XmlNamespaceManager nm = new XmlNamespaceManager( nt );
\r
145 XmlParserContext pc = new XmlParserContext( null, nm, null, XmlSpace.None );
\r
147 XmlValidatingReader valReader = new XmlValidatingReader( xmlDoc.OuterXml, XmlNodeType.Element, pc );
\r
149 valReader.Schemas.Add( string.Empty, this.XsdPathNombre );
\r
150 valReader.ValidationType = ValidationType.Schema;
\r
152 valReader.ValidationEventHandler += new ValidationEventHandler(valReader_ValidationEventHandler);
\r
154 while (valReader.Read()) { }
\r
158 return (this._validationErrors.Count == 0) ;
\r
162 /// Toma un xmlDoc valido contra el schema
\r
164 /// <param name="xmlDoc"></param>
\r
165 private void CargarXml( XmlDocument xmlDoc )
\r
167 XmlNode root = xmlDoc["infoPrestaciones"];
\r
169 this.FechaEnvio = DateTime.Parse( root.Attributes["fechaEnvio"].InnerText );
\r
171 XmlElement prestador = root["prestador"];
\r
172 this.CuitPrestador = prestador["CUIT"].InnerText;
\r
174 XmlElement lineasXml = root["lineas"];
\r
175 if ( lineasXml.HasChildNodes )
\r
177 this._lineas = new LineaInfoPrestacionesReport[ lineasXml.ChildNodes.Count ];
\r
179 XmlNode node; int cod; string tipoAut; int codAfiliado; string codPrestacion;
\r
180 DateTime fechaRealizacion; float porcentajeCobertura;
\r
182 NumberFormatInfo nfi = new NumberFormatInfo();
\r
183 nfi.NumberDecimalDigits = 2;
\r
184 nfi.NumberDecimalSeparator = ".";
\r
185 nfi.NumberGroupSeparator = ",";
\r
187 for ( int i = 0; i < lineasXml.ChildNodes.Count; i++ )
\r
189 node = lineasXml.ChildNodes[i];
\r
190 cod = int.Parse( node.Attributes["codigoAutorizacion"].InnerText );
\r
191 tipoAut = node["tipoAutorizacion"].InnerText;
\r
192 codAfiliado = int.Parse( node["codigoAfiliado"].InnerText );
\r
193 codPrestacion = node["codigoPrestacion"].InnerText;
\r
194 fechaRealizacion = DateTime.Parse( node["fechaRealizacion"].InnerText );
\r
196 porcentajeCobertura = float.Parse( node["porcentajeCobertura"].InnerText.Trim(), nfi );
\r
198 this._lineas[i] = new LineaInfoPrestacionesReport( cod, tipoAut, codAfiliado, codPrestacion,
\r
199 fechaRealizacion, porcentajeCobertura );
\r
204 #endregion Métodos privados
\r