Attendance issues fixed

This commit is contained in:
gandhimathi 2017-12-28 08:00:10 +00:00
parent d7cedfe621
commit 9d0a98e010

View File

@ -122,6 +122,7 @@ class monthlypay_model extends CI_Model
$this->db->from('T_Attendance');
$this->db->join('T_Employee_Details','T_Attendance.EmpID=T_Employee_Details.EmpID');
$this->db->where('Month_Year',$current);
$this->db->where('T_Employee_Details.IsActive',1);
$query = $this->db->get();