public DataSet PurchaseOrderReportPrinting(decimal decCompanyId, string strInvoiceNo, decimal decLedgerId, decimal decVouchertypeId, DateTime FromDate, DateTime ToDate, string strStatus)
 {
     DataSet ds = new DataSet();
      PurchaseOrderMasterSP SPPurchaseOrderMaster = new PurchaseOrderMasterSP();
      try
      {
          ds = SPPurchaseOrderMaster.PurchaseOrderReportPrinting(decCompanyId,strInvoiceNo, decLedgerId, decVouchertypeId,FromDate, ToDate, strStatus);
      }
      catch (Exception ex)
      {
          MessageBox.Show("PoBll 24:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
      }
      return ds;
 }