public static Boolean corregirIntegridad() { try { BODetalleFactura bo = new BODetalleFactura(); DataSet ds = bo.GetByN("Consistencia", ""); int y, j; if (ds.Tables[0].Rows.Count == 0) return true; // la tabla de usuarios está vacía. Int32 nVerificacion = 0; Int32 nSuma = 0; string sCadena = ""; j = 0; foreach (DataRow dr in ds.Tables[0].Rows) { nVerificacion = 0; sCadena = ""; for (int i = 0; i <= ds.Tables[0].Columns.Count - 2; i++) { // Armo un string largo con todos los campos de la tabla. if (typeof(DateTime) == dr[i].GetType()) { sCadena = String.Concat(sCadena, Convert.ToDateTime(dr[i]).Ticks); } else { sCadena = String.Concat(sCadena, Convert.ToString(dr[i])); } } for (int i2 = 0; i2 <= sCadena.Length - 1; i2++) { // Obtengo el valor en int de cada caracter del string largo char sPos = Convert.ToChar(sCadena.Substring(i2, 1)); nVerificacion = nVerificacion + Convert.ToInt32(sPos); } bo.UpdateBy("Verificacion", dr[0], nVerificacion); y = Convert.ToInt32(ds.Tables[0].Rows[j]["Verificacion"]); nSuma = nSuma + nVerificacion; j = j + 1; } // Fin Recorro todas las filas de la tabla Int32 nIntVertical = BRDVVertical.consistenciaVertical("TransArte_DetalleFactura"); if (!nIntVertical.Equals(nSuma)) { BRDVVertical.actualizarDetalleFactura("TransArte_DetalleFactura"); BRBitacora.registrarEvento("Rev. Consist. Vertical Tabla TransArte_DetalleFactura:OK!", BeanException.Critico); } BRBitacora.registrarEvento("Rev. Consist. Horizontal Tabla TransArte_DetalleFactura:OK!", BeanException.Critico); return true; } catch (Exception ex) { throw; } }
public static Boolean validarIntegridadHorizontal(BeanUsuario usuario) { try { BODetalleFactura bo = new BODetalleFactura(); DataSet ds = bo.GetByN("Consistencia", ""); String identificador = ""; if (ds.Tables[0].Rows.Count == 0) return true; // la tabla de bitacora está vacía. Int32 nVerificacion = 0; Int32 nSuma = 0; string sCadena = ""; int j, y; j = 0; foreach (DataRow dr in ds.Tables[0].Rows) { nVerificacion = 0; sCadena = ""; for (int i = 0; i <= ds.Tables[0].Columns.Count - 2; i++) { // Armo un string largo con todos los campos de la tabla. if (i == 0) { identificador = String.Concat(sCadena, Convert.ToString(dr[i])); } if (typeof(DateTime) == dr[i].GetType()) { sCadena = String.Concat(sCadena, Convert.ToDateTime(dr[i]).Ticks); } else { sCadena = String.Concat(sCadena, Convert.ToString(dr[i])); } } for (int i2 = 0; i2 <= sCadena.Length - 1; i2++) { // Obtengo el valor en int de cada caracter del string largo char sPos = Convert.ToChar(sCadena.Substring(i2, 1)); nVerificacion = nVerificacion + Convert.ToInt32(sPos); } y = Convert.ToInt32(ds.Tables[0].Rows[j]["Verificacion"]); if (nVerificacion != y) { //La suma de verificación Horizontal no corresponde. BRBitacora.registrarEvento("Consist. Horizontal incorrecta en Tabla: DetalleFactura id = " + ds.Tables[0].Rows[j]["id"], BeanException.Critico); usuario.addIntegridad(new BeanIntegridad(identificador, "TransArte_DetalleFactura ")); } nSuma = nSuma + nVerificacion; j = j + 1; } // Fin Recorro todas las filas de la tabla Int32 nIntVertical = BRDVVertical.consistenciaVertical("TransArte_DetalleFactura"); if (!nIntVertical.Equals(nSuma)) { BRBitacora.registrarEvento("Consist. Vertical incorrecta en Tabla: TransArte_DetalleFactura ", BeanException.Critico); usuario.addIntegridad(new BeanIntegridad("", "TransArte_DetalleFactura")); return false; } else return true; } catch (Exception ex) { throw; } }
/*public static int agregarDetalleFactura(int idEncabezadoFactura, string detalleFactura, string cantidad, string precioUnitario) { try { BODetalleFactura bo = new BODetalleFactura(); int id = bo.Add("", ""); BRBitacora.registrarEvento(String.Format("Alta de DetalleFactura {0}", "")); Int32 nVerificacion = calcularDVH(id); actualizarDVH(id, nVerificacion); BRDVVertical.actualizarDetalleFactura("TransArte_DetalleFactura"); return id; } catch (Exception ex) { throw; } }*/ /*public static void eliminarDetalleFactura(int idDetalleFactura) { try { BODetalleFactura bo = new BODetalleFactura(); bo.Delete(idDetalleFactura); Int32 nValor = calcularDVH(idDetalleFactura); actualizarDVH(idDetalleFactura, nValor); BRDVVertical.actualizarDetalleFactura("TransArte_DetalleFactura"); BRBitacora.registrarEvento("Vehiculo (ID): " + Convert.ToString(idDetalleFactura) + " Eliminado."); } catch (Exception ex) { throw; } }*/ /* public static void modificarDetalleFactura(int id, int idEncabezadoFactura, string detalleFactura, string cantidad, string precioUnitario) { try { BODetalleFactura bo = new BODetalleFactura(); bo.Update("", ""); Int32 nValor = calcularDVH(id); actualizarDVH(id, nValor); BRDVVertical.actualizarDetalleFactura("TransArte_DetalleFactura"); } catch (Exception ex) { throw; } } public static DataSet buscarPorFactura(int idEncabezadoFactura) { try { return new DataSet(); } catch (Exception ex) { throw; } } public static DataSet buscarPorId(int id) { try { return new DataSet(); } catch (Exception ex) { throw; } } public static DataSet buscarTodos() { try { return new DataSet(); } catch (Exception ex) { throw; } }*/ private static Int32 calcularDVH(int id) { // Calcula el valor numerico de la suma de todos los caracteres de los campos. try { Int32 nVerificacion = 0; BODetalleFactura bo = new BODetalleFactura(); DataSet ds = bo.GetByN("id", id); if (ds.Tables[0].Rows.Count != 0) { string sCadena = ""; int nCantColumnas = ds.Tables[0].Columns.Count - 2; for (int i = 0; i <= nCantColumnas; i++) { if (typeof(DateTime) == ds.Tables[0].Rows[0][i].GetType()) { sCadena = String.Concat(sCadena, Convert.ToDateTime(ds.Tables[0].Rows[0][i]).Ticks); } else { sCadena = String.Concat(sCadena, Convert.ToString(ds.Tables[0].Rows[0][i])); } } for (int i2 = 0; i2 <= sCadena.Length - 1; i2++) { char sPos = Convert.ToChar(sCadena.Substring(i2, 1)); nVerificacion = nVerificacion + Convert.ToInt32(sPos); } } return nVerificacion; } catch (Exception ex) { throw; } }