Example #1
0
 public static DataTable GetStockStructAnalysis(StockAccountModel model, string ordercolumn, string ordertype)
 {
     try
     {
         return(StockAccountDBHelper.GetStockStructAnalysis(model, ordercolumn, ordertype));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 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;
     }
 }
Example #3
0
 public static DataTable GetProductInOutInfo(StockAccountModel model)
 {
     try
     {
         return(StockAccountDBHelper.GetProductInOutInfo(model));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #4
0
 /// <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;
     }
 }
Example #5
0
 //获取物品的销售和购进数量、总额、金额、税额
 public static DataTable GetProdcutSellandPurchaseInfo(StockAccountModel model)
 {
     try
     {
         return(StockAccountDBHelper.GetProdcutSellandPurchaseInfo(model));
     }
     catch (Exception)
     {
         throw;
     }
 }