From e7b7ca1515f9a17729ace61daa39536811db434a Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Mon, 15 Jun 2026 14:17:41 +0530 Subject: [PATCH] FIX_EMPLOYEE_LIST_IN_GPA_CLAIM_CREATE --- app/Controllers/ClientController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Controllers/ClientController.php b/app/Controllers/ClientController.php index 8879cda2..299f17d3 100755 --- a/app/Controllers/ClientController.php +++ b/app/Controllers/ClientController.php @@ -7822,8 +7822,8 @@ class ClientController extends AdminController ->join('employees', 'clients.id = employees.client_id', 'left') ->join('employee_polices', 'employees.id = employee_polices.employee_id', 'left') ->where('client_policy.is_active', 1) - ->where('insurers.is_active', 1) - ->where('tpa.is_active', 1) + // ->where('insurers.is_active', 1) + // ->where('tpa.is_active', 1) ->where('employees.is_active', 1) ->where('employees.relationship', "Self") ->where('employee_polices.is_active', 1)