From 0f8bb5485c4870b79e3271f193e7795000d71d61 Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Wed, 18 Apr 2018 16:36:55 +0530 Subject: [PATCH] batch options in fees screen changes done --- Apollo/api/application/models/Fees_status_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apollo/api/application/models/Fees_status_model.php b/Apollo/api/application/models/Fees_status_model.php index a264d4a1..521078b4 100755 --- a/Apollo/api/application/models/Fees_status_model.php +++ b/Apollo/api/application/models/Fees_status_model.php @@ -326,7 +326,7 @@ class Fees_status_model extends CI_Model $this->db->join(LOGIN.' as LO','LO.ID = SFP.CreatedBy'); $this->db->join(STAFF.' as STF','STF.StaffID = LO.StaffID'); $this->db->where('SFP.FeesId',$feeRow->FeesID); - $this->db->where('IsActive','1'); + $this->db->where('SFP.IsActive','1'); $this->db->order_by('SFP.ID',"ASC"); $this->db->group_by('SFP.BillNO'); $storePaidDetails['paidDetails']=$this->db->get()->result();