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 NombreArchivo
\r
53 get { return this.PathArchivo.Substring(this.PathArchivo.LastIndexOf(Path.DirectorySeparatorChar) + 1); }
\r
56 public string CuitPrestador
\r
58 get { return this._cuitPrestador; }
\r
59 set { this._cuitPrestador = value; }
\r
62 public DateTime FechaEnvio
\r
64 get { return this._fechaEnvio; }
\r
65 set { this._fechaEnvio = value; }
\r
68 public LineaInfoPrestacionesReport[] Lineas
\r
70 get { return this._lineas; }
\r
71 set { this._lineas = value; }
\r
74 #endregion Propiedades Públicas
\r
76 #region Métodos públicos
\r
78 public bool ValidarFormato()
\r
80 XmlDocument xmlDoc = new System.Xml.XmlDocument();
\r
83 xmlDoc.Load( this._pathArchivo );
\r
85 catch ( XmlException xmlEx )
\r
87 #warning Ver como mostrar los errores
\r
91 if ( this.ValidarContraSchema( xmlDoc ) )
\r
93 this.CargarXml( xmlDoc );
\r
97 //Mostrar error y retornar
\r
104 public void ValidarLineas( Dominio.Autorizaciones.Prestador prestador )
\r
106 foreach ( LineaInfoPrestacionesReport linea in this._lineas )
\r
108 linea.Validar( prestador );
\r
112 #endregion Métodos públicos
\r
114 #region Métodos privados
\r
116 private ArrayList _validationErrors = new ArrayList();
\r
118 private void valReader_ValidationEventHandler(object sender, ValidationEventArgs e)
\r
120 this._validationErrors.Add( e.Message );
\r
123 private string _xsdPathNombre = null;
\r
124 private string XsdPathNombre
\r
128 if ( this._xsdPathNombre == null )
\r
130 string currentDir = Directory.GetCurrentDirectory();
\r
131 string xsdPath = Path.Combine( currentDir, ConfigurationSettings.AppSettings["DirectorioRecursos"] );
\r
132 if ( ! Directory.Exists(xsdPath) )
\r
134 Directory.CreateDirectory( xsdPath );
\r
137 return ( Path.Combine( xsdPath, "infoPrestaciones_schema.xsd" ) );
\r
140 return this._xsdPathNombre;
\r
144 private bool ValidarContraSchema( XmlDocument xmlDoc )
\r
146 this._validationErrors.Clear();
\r
148 NameTable nt = new NameTable();
\r
149 XmlNamespaceManager nm = new XmlNamespaceManager( nt );
\r
150 XmlParserContext pc = new XmlParserContext( null, nm, null, XmlSpace.None );
\r
152 XmlValidatingReader valReader = new XmlValidatingReader( xmlDoc.OuterXml, XmlNodeType.Element, pc );
\r
154 valReader.Schemas.Add( string.Empty, this.XsdPathNombre );
\r
155 valReader.ValidationType = ValidationType.Schema;
\r
157 valReader.ValidationEventHandler += new ValidationEventHandler(valReader_ValidationEventHandler);
\r
159 while (valReader.Read()) { }
\r
163 return (this._validationErrors.Count == 0) ;
\r
167 /// Toma un xmlDoc valido contra el schema
\r
169 /// <param name="xmlDoc"></param>
\r
170 private void CargarXml( XmlDocument xmlDoc )
\r
172 XmlNode root = xmlDoc["infoPrestaciones"];
\r
174 this.FechaEnvio = DateTime.Parse( root.Attributes["fechaEnvio"].InnerText );
\r
176 XmlElement prestador = root["prestador"];
\r
177 this.CuitPrestador = prestador["CUIT"].InnerText;
\r
179 XmlElement lineasXml = root["lineas"];
\r
180 if ( lineasXml.HasChildNodes )
\r
182 this._lineas = new LineaInfoPrestacionesReport[ lineasXml.ChildNodes.Count ];
\r
184 XmlNode node; int cod; string tipoAut; int codAfiliado; string codPrestacion;
\r
185 DateTime fechaRealizacion; float porcentajeCobertura;
\r
187 NumberFormatInfo nfi = new NumberFormatInfo();
\r
188 nfi.NumberDecimalDigits = 2;
\r
189 nfi.NumberDecimalSeparator = ".";
\r
190 nfi.NumberGroupSeparator = ",";
\r
192 for ( int i = 0; i < lineasXml.ChildNodes.Count; i++ )
\r
194 node = lineasXml.ChildNodes[i];
\r
195 cod = int.Parse( node.Attributes["codigoAutorizacion"].InnerText );
\r
196 tipoAut = node["tipoAutorizacion"].InnerText;
\r
197 codAfiliado = int.Parse( node["codigoAfiliado"].InnerText );
\r
198 codPrestacion = node["codigoPrestacion"].InnerText;
\r
199 fechaRealizacion = DateTime.Parse( node["fechaRealizacion"].InnerText );
\r
201 porcentajeCobertura = float.Parse( node["porcentajeCobertura"].InnerText.Trim(), nfi );
\r
203 this._lineas[i] = new LineaInfoPrestacionesReport( cod, tipoAut, codAfiliado, codPrestacion,
\r
204 fechaRealizacion, porcentajeCobertura );
\r
209 #endregion Métodos privados
\r