From bddbd79b8f46bb24a6372073ddb17d7917171853 Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Mon, 23 Apr 2018 16:17:04 +0530 Subject: [PATCH] student fees status changes done --- Apollo/api/application/controllers/Fees_Status_Controller.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Apollo/api/application/controllers/Fees_Status_Controller.php b/Apollo/api/application/controllers/Fees_Status_Controller.php index 22ca5714..9ba9d7f1 100755 --- a/Apollo/api/application/controllers/Fees_Status_Controller.php +++ b/Apollo/api/application/controllers/Fees_Status_Controller.php @@ -169,7 +169,9 @@ class Fees_Status_Controller extends REST_Controller { * */ public function getUniversityCourseForFees_post() { - $getUnivDetails = $this->Fees_model->getUniversityDetails(); + $requestedBy = $this->post('requestedBy'); + $requestedBranch = $this->post('branchCode'); + $getUnivDetails = $this->Fees_model->getUniversityDetails($requestedBy,$requestedBranch); if ($getUnivDetails) { $getUnivDetails['status'] = REST_Controller::HTTP_OK;