Accounts_Descriptors.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. [Caption("Configure Accounts Panels")]
  8. public class CanConfigureAccountsPanels : EnabledSecurityDescriptor<AccountsPayableLicense>
  9. {
  10. }
  11. [Caption("Open and Close Purchase Orders")]
  12. public class CanOpenAndClosePurchaseOrders : EnabledSecurityDescriptor<AccountsPayableLicense, Assignment>
  13. {
  14. }
  15. [Caption("Issue Treatment Purchase Orders")]
  16. public class CanIssueTreatmentPurchaseOrders : EnabledSecurityDescriptor<AccountsPayableLicense, PurchaseOrder>
  17. {
  18. }
  19. [Caption("Check Bills")]
  20. public class CanCheckBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>
  21. {
  22. }
  23. [Caption("Approve Bills")]
  24. public class CanApproveBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>
  25. {
  26. }
  27. [Caption("Manage Bill Approvals")]
  28. public class ManageBillApprovals : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>
  29. {
  30. }
  31. }