diff --git a/app/Controllers/ThzController.php b/app/Controllers/ThzController.php index 71e4c78e..e6703a0e 100644 --- a/app/Controllers/ThzController.php +++ b/app/Controllers/ThzController.php @@ -81,6 +81,9 @@ class ThzController extends BaseController $data = $this->request->getGet(); + if ($returnType === 'web' && in_array(get_role_id(), [2,3,4])) { + $data['assign_to'] = $data['assign_to'] ?? get_session_userid(); + } $tickets = $this->fetchTicketsBasedOnrole($data); diff --git a/app/Views/layout/header.php b/app/Views/layout/header.php index 6624b4c0..b1ca7453 100755 --- a/app/Views/layout/header.php +++ b/app/Views/layout/header.php @@ -529,8 +529,9 @@ rgba(0, 153, 158, 0.5) (transparent) background-color: #ECECEC !important; } -.app-font-family { - font-family: 'Poppins' !important; +.app-font-family, +.app-font-family *:not(.mdi):not(.fa):not(.material-icons) { + font-family: 'Poppins' !important; } .app-title { font-size: 18px; } diff --git a/app/Views/thz_list.php b/app/Views/thz_list.php index 0c17c4c0..eaead156 100644 --- a/app/Views/thz_list.php +++ b/app/Views/thz_list.php @@ -254,13 +254,13 @@ table thead th {
| Ticket No | -Name | +Ticket ID | +Name | Policy Number | Ticket Type | Subject | Status | -Assign To | +Assign To | Created At | Updated At |
format('d/m/Y') . " " . $cdt->format('h:i a') . ""; + echo $cdt->format('d/m/Y') . " " . $cdt->format('h:i a') . ""; endif; ?> |
format('d/m/Y') . " " . $udt->format('h:i a') . ""; + echo $udt->format('d/m/Y') . " " . $udt->format('h:i a') . ""; endif; ?> |
@@ -318,7 +318,7 @@ table thead th {
-
|---|