Manufacturing_Descriptors.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. [Caption("View Factory Status Module")]
  6. public class CanViewFactoryStatus : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  7. {
  8. }
  9. [Caption("View Factory Allocation Module")]
  10. public class CanViewFactoryAllocation : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  11. {
  12. }
  13. [Caption("Distribute Packets")]
  14. public class CanDistributePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  15. {
  16. }
  17. [Caption("Hold or Release Manufacturing Packets")]
  18. public class CanManagePacketHolds : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  19. {
  20. }
  21. [Caption("View Factory Floor Module")]
  22. public class CanViewFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  23. {
  24. }
  25. [Caption("Configure Factory Floor")]
  26. public class CanConfigureFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  27. {
  28. }
  29. [Caption("Manage Pending Packets")]
  30. public class CanManagePendingPackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  31. {
  32. }
  33. [Caption("View Ready-To-Go Module")]
  34. public class CanViewFactoryReadyToGo : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket, DeliveryItem>
  35. {
  36. }
  37. [Caption("Manage Factory Configuration")]
  38. public class CanViewFactorySettings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingFactory>
  39. {
  40. }
  41. [Caption("Track Manufacturing History")]
  42. public class CanTrackManufacturingHistory : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingHistory>
  43. {
  44. }
  45. [Caption("Print Drawings from Factory Floor Screen")]
  46. [Obsolete("Direct Printing replaved by Save Function launching external file viewer", true)]
  47. public class CanPrintFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  48. {
  49. }
  50. [Caption("Save Drawings from Factory Floor Screen")]
  51. public class CanSaveFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  52. {
  53. }
  54. [Caption("Can Issue Packets To Factory")]
  55. public class CanIssuePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  56. {
  57. }
  58. [Caption("Can View Manufacturing Module On Mobile")]
  59. public class CanViewManufacturingOnMobile : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  60. {
  61. }
  62. }