Added Action Taken on Task

This commit is contained in:
2026-02-21 15:44:12 +08:00
parent d2f1bcf9b3
commit 1478667bbf
5 changed files with 224 additions and 2 deletions
+4
View File
@@ -38,6 +38,7 @@ class FakeTasksController extends TasksController {
String? requestedBy,
String? notedBy,
String? receivedBy,
String? actionTaken,
}) async {
final m = <String, dynamic>{};
if (requestType != null) {
@@ -58,6 +59,9 @@ class FakeTasksController extends TasksController {
if (receivedBy != null) {
m['receivedBy'] = receivedBy;
}
if (actionTaken != null) {
m['actionTaken'] = actionTaken;
}
if (status != null) {
m['status'] = status;
}