batch options in fees screen changes done

This commit is contained in:
gandhimathi 2018-04-18 16:36:55 +05:30
parent 6067413d8e
commit 0f8bb5485c

View File

@ -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();