public static Producto[] getListadoPorWhere(string where) { try { string[] arrString = where.Split('='); Query query = new Query("select", "producto"); query.AddWhere(arrString[0], arrString[1]); query.AddSelect("*"); DataSet dataset = FachadaProducto.getListado(query); Producto[] arrproducto = new Producto[dataset.Tables[0].Rows.Count]; int contador = 0; if (dataset != null) { foreach (DataRow fila in dataset.Tables[0].Rows) { Producto objeto = new Producto(fila); arrproducto[contador] = objeto; contador++; } } return(arrproducto); } catch (Exception ex) { Utils.EscribeLog(ex); return(null); } }
public static Producto getProducto(int id) { try { Query query = new Query("select", "producto"); query.AddWhere("ID", id.ToString()); query.AddSelect("*"); Producto objeto = new Producto(); DataSet dataset = FachadaProducto.getListado(query); int contador = 0; if (dataset != null) { foreach (DataRow fila in dataset.Tables[0].Rows) { objeto = new Producto(fila); contador++; } } return(objeto); } catch (Exception ex) { Utils.EscribeLog(ex); return(null); } }
public static Producto[] getListado(Query query) { try { //query.AddWhereExacto(ST_Producto.estado_vigente, "vigente"); DataSet dataset = FachadaProducto.getListado(query); Producto[] arrproducto = new Producto[dataset.Tables[0].Rows.Count]; int contador = 0; if (dataset != null) { foreach (DataRow fila in dataset.Tables[0].Rows) { Producto objeto = new Producto(fila); if (dataset.Tables[0].Columns["nombreCategoria"] != null) { objeto.fnombreCategoria = fila["nombreCategoria"].ToString(); } arrproducto[contador] = objeto; contador++; } } return(arrproducto); } catch (Exception ex) { Utils.EscribeLog(ex); return(null); } }
public static void aumentarStock(int bodega_ID, int producto_ID, double cantidadDevolucion) { FachadaProducto.AumentarStock(bodega_ID, producto_ID, cantidadDevolucion); Producto producto = getProducto(producto_ID); producto.fstock_actual = producto.fstock_actual + cantidadDevolucion; actualizar(producto); }
public static void ejecutaSin_retorno(Query query) { try { FachadaProducto.ejecutaSin_retorno(query); } catch (Exception ex) { Utils.EscribeLog(ex); } }
public static void eliminar(Query query) { try { FachadaProducto.eliminar(query); } catch (Exception ex) { Utils.EscribeLog(ex); } }
public static void actualizarJSON(ProductoJSON objeto) { try { FachadaProducto.actualizarJSON(objeto); } catch (Exception ex) { Utils.EscribeLog(ex); } }
public static int guardarJSON(ProductoJSON objeto) { try { return(FachadaProducto.guardarJSON(objeto)); } catch (Exception ex) { Utils.EscribeLog(ex); return(0); } }
public static void eliminar(int ID) { try { Query query = new Query("delete", "producto"); query.AddWhere("ID", ID.ToString()); FachadaProducto.eliminar(query); } catch (Exception ex) { Utils.EscribeLog(ex); } }
public static Producto[] getListado(string query) { try { DataSet dataset = FachadaProducto.getListado(query); Producto[] arrproducto = new Producto[dataset.Tables[0].Rows.Count]; int contador = 0; if (dataset != null) { foreach (DataRow fila in dataset.Tables[0].Rows) { Producto objeto = new Producto(fila); arrproducto[contador] = objeto; contador++; } } return(arrproducto); } catch (Exception ex) { Utils.EscribeLog(ex); return(null); } }