Exemplo n.º 1
0
 public static DataTable GetPurchasePrice(string CompanyCD, string ProductID, string StartDate, string EndDate, int pageIndex, int pageCount, string OrderBy, ref int totalCount)
 {
     try
     {
         return PurchaseOrderDBHelper.GetPurchasePrice(CompanyCD, ProductID, StartDate, EndDate, pageIndex, pageCount, OrderBy, ref totalCount);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 //采购价格查询
 public static DataTable GetPurchasePrice(string CompanyCD, string OrderBy, string ProductID, string StartDate, string EndDate)
 {
     try
     {
         return PurchaseOrderDBHelper.GetPurchasePrice(CompanyCD, OrderBy, ProductID, StartDate, EndDate);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }