GWM : POS added in the flow

This commit is contained in:
Gowtham M 2025-12-17 15:10:43 +05:30
parent 6253e420a0
commit ab875a9ab6

View File

@ -359,8 +359,9 @@ class MasterController extends ResourceController
{
$is_active = $this->request->getGet('is_active');
$manager_id = $this->request->getGet('manager_id');
$data = $this->PartnerPosModel->where('is_active', $is_active)->findAll();
$data = $this->PartnerPosModel->where('is_active', $is_active)->where('manager_id', $manager_id)->findAll();
return $this->respond(['status' => 200,'message' => 'success','data' => $data]);
}