| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using System.Linq;
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Can Close Requisitions without Photos")]
- public class CanSkipRequisitionPhotos : DisabledSecurityDescriptor<LogisticsLicense, Requisition>
- {
- }
- [Caption("Can Update Requisition Stock Movements")]
- public class CanUpdateRequisitionStockMovements : DisabledSecurityDescriptor<LogisticsLicense, Requisition>
- {
- }
- [Caption("Can Archive Requisitions")]
- public class CanArchiveRequisitions : DisabledSecurityDescriptor<LogisticsLicense, Requisition>
- {
- }
- [Caption("Can Complete Deliveries")]
- public class CanCompleteDeliveries : DisabledSecurityDescriptor<LogisticsLicense, Delivery>
- {
- }
- [Caption("Can Complete Deliveries without Photos")]
- public class CanSkipDeliveryPhotos : DisabledSecurityDescriptor<LogisticsLicense, Delivery>
- {
- }
- [Caption("Can Archive Deliveries")]
- public class CanArchiveDeliveries : EnabledSecurityDescriptor<LogisticsLicense, Delivery>
- {
- }
- [Caption("View Delivery Dock")]
- public class CanViewDeliveryDock : EnabledSecurityDescriptor<LogisticsLicense, Delivery>
- {
- }
- [Caption("View Logistics Ready-To-Go Module")]
- public class CanViewLogisticsReadyToGo : EnabledSecurityDescriptor<LogisticsLicense, DeliveryItem>
- {
- }
- [Caption("View Delivered On Site Module")]
- public class CanViewDeliveredOnSite : EnabledSecurityDescriptor<LogisticsLicense, DeliveryItem>
- {
- }
- [Caption("View Consignments Dock")]
- public class CanViewConsignmentDock : EnabledSecurityDescriptor<LogisticsLicense, Consignment>
- {
- }
- [Caption("Close Consignments")]
- public class CanCloseConsignments : DisabledSecurityDescriptor<LogisticsLicense, Consignment>
- {
- }
- [Caption("Receive Consignments")]
- public class CanReceiveConsignments : DisabledSecurityDescriptor<LogisticsLicense, Consignment>
- {
- }
- [Caption("View Deliveries Module")]
- public class CanViewDeliveriesModule : EnabledSecurityDescriptor<LogisticsLicense, Delivery>
- {
- }
- }
|