public string VoucherNoMax(decimal decVoucherTypeId)
 {
     PurchaseOrderMasterSP SPPurchaseOrderMaster = new PurchaseOrderMasterSP();
      string max = "0";
      try
      {
         max= SPPurchaseOrderMaster.VoucherNoMax(decVoucherTypeId);
      }
      catch (Exception ex)
      {
          MessageBox.Show("PoBll 20:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
      }
      return max;
 }