public DataTable Listar() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); dt = bd.ExecuteDataSet("GETTIPODOCUMENTO"); return dt.Tables[0]; } catch (Exception) { throw; } }
public void Eliminar() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idcategoria", idcategoria); bd.AddParameter("@opcion", "UPD02"); bd.ExecuteNonQuery("SETCATEGORIA"); } catch (Exception) { throw; } }
public void Insertar() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idfactura", idfactura); bd.AddParameter("@idguia", idguia); bd.ExecuteNonQuery("SETFACTURAGUIA"); } catch (Exception) { throw; } }
public DataTable ListarCategoria() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); dt = bd.ExecuteDataSet("GETCATEGORIA"); return dt.Tables[0]; } catch (Exception) { throw; } }
public static DataTable ListarTipopago() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); dt = bd.ExecuteDataSet("GETTIPOPAGO"); return dt.Tables[0]; } catch (Exception) { throw; } }
public void Eliminar() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idenvase", idenvase); bd.AddParameter("@opcion", "UPD02"); bd.ExecuteNonQuery("SETENVASE"); } catch (Exception) { throw; } }
public DataTable ListarEnvase() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); dt = bd.ExecuteDataSet("GETENVASE"); return dt.Tables[0]; } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idcategoria", idcategoria); bd.AddParameter("@descripcion",descripcion ); bd.AddParameter("@opcion", "UPD01"); bd.ExecuteNonQuery("SETCATEGORIA"); } catch (Exception) { throw; } }
public DataTable ListarComprobantes() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); dt = bd.ExecuteDataSet("GETCOMPROBANTE"); return dt.Tables[0]; } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idmedida", idmedida); bd.AddParameter("@descripcion", descripcion); bd.AddParameter("@alias", alias); bd.ExecuteNonQuery("SETMEDIDA"); } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idcomprobante", idcomprobante); bd.AddParameter("@descripcion",descripcion); bd.AddParameter("@flgeli", flgelitipo); bd.ExecuteNonQuery("SETCOMPROBANTE"); } catch (Exception) { throw; } }
public DataTable ListarUnidadMedida() { try { BDAcces bd= new BDAcces(); DataSet dt = new DataSet(); dt = bd.ExecuteDataSet("GETMEDIDAD"); return dt.Tables[0]; } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idenvase", idenvase); bd.AddParameter("@descripcion", descripcion); bd.AddParameter("@opcion", "UPD01"); bd.ExecuteNonQuery("SETENVASE"); } catch (Exception) { throw; } }
public static DataTable ListarComprobantes2() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); bd.AddParameter("@opcion", "QUERY02"); dt = bd.ExecuteDataSet("GETCOMPROBANTE"); return dt.Tables[0]; } catch (Exception) { throw; } }
public DataSet LiquidacionDiaria(DateTime pfecha) { try { DataSet dt = new DataSet(); BDAcces bd = new BDAcces(); bd.AddParameter("@fecha",Convert.ToDateTime( pfecha.ToShortDateString())); dt = bd.ExecuteDataSet("LIQUIDACION_DIARIA"); return dt; } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idtransporte", idtransporte); bd.AddParameter("@idpersonal", idpersonal); bd.AddParameter("@marca", marca); bd.AddParameter("@placa", placa); bd.AddParameter("@n_constancia", n_costancia); bd.AddParameter("@n_licencia", n_licencia); bd.ExecuteNonQuery("SETTRANSPORTE"); } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@id", idmestro); bd.AddParameter("@idcomprobante", idcomprobante); bd.AddParameter("@serie", serie); bd.AddParameter("@n_inicio",numero_inicio); bd.AddParameter("@n_fin", numero_fin); bd.AddParameter("@usr", Environment.UserName); bd.AddParameter("@popcion", "UPD01"); bd.ExecuteNonQuery("SETMAESTROCODIGO"); } catch (Exception) { throw; } }
public static string[] GETCODIGO() { try { string[] val=new String[2]; BDAcces bd = new BDAcces(); bd.AddParameter("@opcion", "UPD03"); SqlDataReader leer = (SqlDataReader)bd.ExecuteReader("GETCODIGO"); while (leer.Read()) { val[0] = leer[0].ToString(); val[1] = leer[1].ToString(); } return val; } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idproveedor", codigo); bd.AddParameter("@razonsocial",razon_social); bd.AddParameter("@ruc", ruc); bd.AddParameter("@direccion", direccion); bd.AddParameter("@referencia", referencia); bd.AddParameter("@telefono", telefono); bd.AddParameter("@email", email); bd.AddParameter("@opcion", "UPD01"); bd.ExecuteNonQuery("SETPROVEEDOR"); } catch (Exception) { throw; } }
public void Insertar() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@cod_cliente", cod_cliente); bd.AddParameter("@cod_vendedor", cod_vendedor); bd.AddParameter("@serie", serie); bd.AddParameter("@numero", numero); bd.AddParameter("@envases", cantidad); bd.AddParameter("@fech_dev", fech_dev); bd.AddParameter("@cod_producto", cod_producto); bd.AddParameter("@saldo",pendiente); bd.ExecuteNonQuery("SETDEVOLUCION"); } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@id", idhistorial); bd.AddParameter("@iddocumento", iddocumento); bd.AddParameter("@idcontrol", idcontrol); bd.AddParameter("@fech_pago", fech_pago); bd.AddParameter("@monto", monto); bd.AddParameter("@opcion","UPD01"); bd.AddParameter("@serie", serie); bd.AddParameter("@numero", numero); bd.AddParameter("@idhijo",idhijo); bd.ExecuteNonQuery("SETHISTORIA_PAGO"); } catch (Exception) { throw; } }
public static ArrayList IgvActivo() { try { ArrayList lista = new ArrayList(); BDAcces bd = new BDAcces(); SqlDataReader leer = (SqlDataReader)bd.ExecuteReader("GETIGV"); if (leer.Read()) { lista.Add(leer[0]); lista.Add(leer[1]); lista.Add(leer[2]); lista.Add(leer[3]); } return lista; } catch (Exception) { throw; } }
public static EUnidadMedida ListarById(int id) { try { BDAcces bd = new BDAcces(); EUnidadMedida ounidad = new EUnidadMedida(); bd.AddParameter("@opcion", "QUERY02"); bd.AddParameter("@idmedida",id); SqlDataReader leer = (SqlDataReader)bd.ExecuteReader("GETMEDIDAD"); if (leer.Read()) { ounidad.idmedida = Convert.ToInt32(leer[0].ToString()); ounidad.descripcion = leer[1].ToString(); ounidad.alias = leer[2].ToString(); } return ounidad; } catch (Exception) { throw; } }
public List<EBuscador> ListaProducto() { try { List<EBuscador> lista = new List<EBuscador>(); BDAcces bd = new BDAcces(); bd.AddParameter("@opcion", "QUERY02"); SqlDataReader read = (SqlDataReader)bd.ExecuteReader("GETPRODUCTO"); while (read.Read()) { EBuscador obuscador = new EBuscador(); obuscador.campo1 = read[0].ToString(); obuscador.campo2 = read[1].ToString(); lista.Add(obuscador); } return lista; } catch (Exception) { throw; } }
public void SETREGISTRO() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idgasto", idgasto); bd.AddParameter("@idcomprobante", idcomprobante); bd.AddParameter("@serie", serie); bd.AddParameter("@numero", numero); bd.AddParameter("@descripcion", descripcion); bd.AddParameter("@monto", monto); bd.AddParameter("@idproveedor", cod_proveedor); bd.AddParameter("@usr", Environment.UserName); bd.AddParameter("@opcion", "UPD01"); bd.AddParameter("@fecha", fecha); bd.ExecuteNonQuery("SETGASTO"); } catch (Exception) { throw; } }
public List<EGasto> ListarAllGasto() { try { BDAcces bd = new BDAcces(); List<EGasto> lista = new List<EGasto>(); SqlDataReader leer = (SqlDataReader)bd.ExecuteReader("GETGASTO"); while (leer.Read()) { EGasto ogasto = new EGasto(); ogasto.Idgasto =Convert.ToInt32(leer[0].ToString()); ogasto.Idcomprobante = Convert.ToInt32(leer[1].ToString()); ogasto.Serie = leer[2].ToString(); ogasto.Numero = leer[3].ToString(); ogasto.Descripcion = leer[4].ToString(); ogasto.Monto = Convert.ToDecimal(leer[5].ToString()); ogasto.Cod_proveedor = leer[6].ToString(); ogasto.Razonsocial = leer[7].ToString(); ogasto.Comprobante = leer[8].ToString(); ogasto.Fecha =Convert.ToDateTime(leer[9].ToString()); lista.Add(ogasto); } return lista; } catch (Exception) { throw; } }
public DataSet ReporteGasto() { try { BDAcces bd = new BDAcces(); DataSet dt = new DataSet(); bd.AddParameter("@opcion", ofiltro.Valor[0].ToString()); bd.AddParameter("@anno", (int)ofiltro.Valor[1]); bd.AddParameter("@mes", (int)ofiltro.Valor[2]); bd.AddParameter("@fecha", Convert.ToDateTime(ofiltro.Valor[3])); dt = bd.ExecuteDataSet("GETGASTO"); return dt; } catch (Exception) { throw; } }
public void Eliminar() { try { BDAcces bd = new BDAcces(); bd.AddParameter("@idgasto", idgasto); bd.AddParameter("@opcion", "UPD02"); bd.ExecuteNonQuery("SETGASTO"); } catch (Exception) { throw; } }
public DataSet Rpt_VendedorCreditoById(string codigo) { try { DataSet dt = new DataSet(); BDAcces bd = new BDAcces(); bd.AddParameter("@cod_vendedor", codigo); dt = bd.ExecuteDataSet("RPT_VENDEDORCREDITOBYID"); return dt; } catch (Exception) { throw; } }
public DataSet Rpt_VendedorCredito() { try { DataSet dt = new DataSet(); BDAcces bd = new BDAcces(); dt = bd.ExecuteDataSet("RPT_VENDEDORCREDITO"); return dt; } catch (Exception) { throw; } }