Пример #1
0
 public static DataTable GetPurStatByPurchaser(string CompanyCD, string Purchaser, string StartDate, string EndDate, string OrderBy)
 {
     try
     {
         return PurchaseOrderDBHelper.GetPurStatByPurchaser(CompanyCD, Purchaser, StartDate, EndDate, OrderBy);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Пример #2
0
 //采购查询统计--按照采购员
 public static DataTable GetPurStatByPurchaser(string CompanyCD, string Purchaser, string StartDate, string EndDate, int pageIndex, int pageCount, string OrderBy, ref int totalCount)
 {
     try
     {
         return PurchaseOrderDBHelper.GetPurStatByPurchaser(CompanyCD, Purchaser, StartDate, EndDate, pageIndex, pageCount, OrderBy, ref totalCount);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }