Product_Descriptors.cs 860 B

123456789101112131415161718192021222324252627282930
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [Caption("Configure Products Panels")]
  5. public class CanConfigureProductsPanels : EnabledSecurityDescriptor<ProductManagementLicense, Product>
  6. {
  7. }
  8. [Caption("Change Product GL Codes")]
  9. public class CanChangeProductGLCodes : EnabledSecurityDescriptor<ProductManagementLicense, Product>
  10. {
  11. }
  12. [Caption("View Product Lookup Dock")]
  13. public class CanViewProductDock : EnabledSecurityDescriptor<ProductManagementLicense, Product>
  14. {
  15. }
  16. [Caption("Create Treatment POs")]
  17. public class CanCreateTreatmentPO : EnabledSecurityDescriptor<ProductManagementLicense, Product>
  18. {
  19. }
  20. [Caption("Bypass Photos and Notes on StockTakes")]
  21. public class CanBypassStockTakePhotos : DisabledSecurityDescriptor<WarehouseLicense, StockHolding>
  22. {
  23. }
  24. }