- Updated ReimbursementBottomSheet to use BaseBottomSheet for consistent styling and functionality. - Improved input field decorations and added spacing helpers for better layout. - Simplified the employee selection process and integrated it into the new design. - Refactored ExpenseDetailScreen to utilize controller initialization method. - Enhanced ExpenseFilterBottomSheet with a cleaner structure and improved field handling. - Removed unnecessary wrapper for ExpenseFilterBottomSheet and integrated it directly into the expense screen.
26 lines
1.7 KiB
Dart
26 lines
1.7 KiB
Dart
class Permissions {
|
|
static const String manageMaster = "588a8824-f924-4955-82d8-fc51956cf323";
|
|
static const String manageProject = "172fc9b6-755b-4f62-ab26-55c34a330614";
|
|
static const String viewProjects = "6ea44136-987e-44ba-9e5d-1cf8f5837ebc";
|
|
static const String manageEmployees = "a97d366a-c2bb-448d-be93-402bd2324566";
|
|
static const String manageProjectInfra = "f2aee20a-b754-4537-8166-f9507b44585b";
|
|
static const String viewProjectInfra = "c7b68e33-72f0-474f-bd96-77636427ecc8";
|
|
static const String regularizeAttendance = "57802c4a-00aa-4a1f-a048-fd2f70dd44b6";
|
|
static const String assignToProject = "fbd213e0-0250-46f1-9f5f-4b2a1e6e76a3";
|
|
static const String infrastructure = "9666de86-d7c7-4d3d-acaa-fcd6d6b81f3c";
|
|
static const String manageTask = "08752f33-3b29-4816-b76b-ea8a968ed3c5";
|
|
static const String viewTask = "9fcc5f87-25e3-4846-90ac-67a71ab92e3c";
|
|
static const String assignReportTask = "6a32379b-8b3f-49a6-8c48-4b7ac1b55dc2";
|
|
static const String directoryAdmin = "4286a13b-bb40-4879-8c6d-18e9e393beda";
|
|
static const String directoryManager = "62668630-13ce-4f52-a0f0-db38af2230c5";
|
|
|
|
// Expense Permissions
|
|
static const String expenseViewSelf = "385be49f-8fde-440e-bdbc-3dffeb8dd116";
|
|
static const String expenseViewAll = "01e06444-9ca7-4df4-b900-8c3fa051b92f";
|
|
static const String expenseUpload = "0f57885d-bcb2-4711-ac95-d841ace6d5a7";
|
|
static const String expenseReview = "1f4bda08-1873-449a-bb66-3e8222bd871b";
|
|
static const String expenseApprove = "eaafdd76-8aac-45f9-a530-315589c6deca";
|
|
static const String expenseProcess = "ea5a1529-4ee8-4828-80ea-0e23c9d4dd11";
|
|
static const String expenseManage = "bdee29a2-b73b-402d-8dd1-c4b1f81ccbc3";
|
|
}
|