123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Configure Manufacturing Panels")]
- public class CanConfigureManufacturingPanels : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("View Factory Status Module")]
- public class CanViewFactoryStatus : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("View Factory Allocation Module")]
- public class CanViewFactoryAllocation : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Distribute Packets")]
- public class CanDistributePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Hold or Release Manufacturing Packets")]
- public class CanManagePacketHolds : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("View Factory Floor Module")]
- public class CanViewFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Configure Factory Floor")]
- public class CanConfigureFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Manage Pending Packets")]
- public class CanManagePendingPackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("View Ready-To-Go Module")]
- public class CanViewFactoryReadyToGo : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket, DeliveryItem>
- {
- }
- [Caption("Manage Factory Configuration")]
- public class CanViewFactorySettings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingFactory>
- {
- }
- [Caption("Track Manufacturing History")]
- public class CanTrackManufacturingHistory : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingHistory>
- {
- }
- [Caption("Print Drawings from Factory Floor Screen")]
- [Obsolete("Direct Printing replaved by Save Function launching external file viewer", true)]
- public class CanPrintFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Save Drawings from Factory Floor Screen")]
- public class CanSaveFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Can Issue Packets To Factory")]
- public class CanIssuePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- [Caption("Can View Manufacturing Module On Mobile")]
- public class CanViewManufacturingOnMobile : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
- {
- }
- }
|