public static DataTable GetStockStructAnalysis(StockAccountModel model, string ordercolumn, string ordertype) { try { return(StockAccountDBHelper.GetStockStructAnalysis(model, ordercolumn, ordertype)); } catch (Exception) { throw; } }
public static DataTable GetProductStockTotalPrice(StockAccountModel model, int pageIndex, int pageCount, string ord, ref int TotalCount, bool iflist) { try { return(StockAccountDBHelper.GetProductStockTotalPrice(model, pageIndex, pageCount, ord, ref TotalCount, iflist)); } catch (Exception ex) { throw ex; } }
public static DataTable GetProductInOutInfo(StockAccountModel model) { try { return(StockAccountDBHelper.GetProductInOutInfo(model)); } catch (Exception) { throw; } }
/// <summary> /// 产品入库信息(采购入库) /// </summary> /// <param name="model"></param> /// <returns></returns> public static DataTable GetInfoByInPurchase(StockAccountModel model, int pageIndex, int pageCount, string ord, ref int TotalCount, bool iflist) { try { return(StockAccountDBHelper.GetInfoByInPurchase(model, pageIndex, pageCount, ord, ref TotalCount, iflist)); } catch (Exception) { throw; } }
//获取物品的销售和购进数量、总额、金额、税额 public static DataTable GetProdcutSellandPurchaseInfo(StockAccountModel model) { try { return(StockAccountDBHelper.GetProdcutSellandPurchaseInfo(model)); } catch (Exception) { throw; } }