From 02758727eac691bd2f6ea6d5cedfc247ce4f12ba Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Mon, 12 Mar 2018 17:40:59 +0530 Subject: [PATCH] student view changes done --- Apollo/api/application/models/Studentview_model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Apollo/api/application/models/Studentview_model.php b/Apollo/api/application/models/Studentview_model.php index defd93a0..5487cef7 100755 --- a/Apollo/api/application/models/Studentview_model.php +++ b/Apollo/api/application/models/Studentview_model.php @@ -170,7 +170,7 @@ class Studentview_model extends CI_Model $storePaidDetails['BatchDate'] = $feeRow->BatchDate; // for get paid bill details - $this->db->select('ifnull(SUM((BillAmount)),0) as BillAmount,BillNO,BillDate,ModeOfPayment'); + $this->db->select('ifnull(SUM((BillAmount)),0) as BillAmount,BillNO,BillDate,ModeOfPayment,ReceiptNo'); $this->db->where('FeesId',$feeRow->FeesID); $this->db->order_by('ID',"ASC"); $this->db->group_by('BillNO'); @@ -252,7 +252,7 @@ class Studentview_model extends CI_Model $storePaidDetails['BatchDate'] = ""; // for get paid bill details - $this->db->select('ifnull(SUM((BillAmount)),0) as BillAmount,BillNO,BillDate,ModeOfPayment'); + $this->db->select('ifnull(SUM((BillAmount)),0) as BillAmount,BillNO,BillDate,ModeOfPayment,ReceiptNo'); $this->db->where('FeesId',$feeRow->FeesID); $this->db->order_by('ID',"ASC"); $this->db->group_by('BillNO');