12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("View Jobs Dock Panel")]
- public class CanViewJobDock : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Create Jobs from Imported Emails")]
- public class CanCreateJobsFromEmails : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Approve Bills of Materials")]
- public class CanApproveBillsOfMaterials : EnabledSecurityDescriptor<ProjectManagementLicense, JobBillOfMaterials>
- {
- }
-
- [Caption("Approve Job Requisitions")]
- public class CanApproveJobRequisitions : EnabledSecurityDescriptor<ProjectManagementLicense, JobRequisition>
- {
- }
-
- [Caption("Change Dates on Document MileStones")]
- public class CanEditJobDocumentSetMileStoneDates : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("View Web General Documents from App")]
- public class CanViewGeneralJobDocuments : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("View Job Documents Mile Stone Files")]
- public class CanViewJobDocumentMileStoneFiles : EnabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("View All Jobs (Not Restricted to Jobs Employee is Assigned to")]
- public class CanViewAllJobs : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Open Mobile Native PDF Viewer")]
- public class CanOpenMobileNativePDFViewer : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("Can Approve Setouts")]
- public class CanApproveSetouts : DisabledSecurityDescriptor<ProjectManagementLicense, Setout>
- {
- }
- [Caption("Can Mark Up Setouts")]
- public class CanMarkUpSetouts : DisabledSecurityDescriptor<ProjectManagementLicense, Setout>
- {
- }
- [Caption("Can approve setouts with no group")]
- public class CanApproveSetoutsWithoutGroup : DisabledSecurityDescriptor<ProjectManagementLicense, Setout>
- {
- }
- [Caption("Can cancel all job requisitions")]
- public class CanCancelAllJobRequisitions : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Can release all job reserves")]
- public class CanReleaseJobReserves : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Can edit allocated job requisitions")]
- public class CanEditAllocatedJobRequisitions : DisabledSecurityDescriptor<ProjectManagementLicense, JobRequisitionItem>
- {
- }
- }
|