filterchanges

This commit is contained in:
gayathri1990 2018-10-04 12:58:17 +05:30
parent 6ee00692c5
commit 24fa2c1aa1

View File

@ -976,7 +976,7 @@ from T_Lead_Tracking_Followup as ltf
";
}
if ($ass != ''){
$sql.=" and sd.StaffID >= '".$ass."'
$sql.=" and sd.StaffID = '".$ass."'
";
}
if ($from != ''){
@ -1304,7 +1304,7 @@ if($feeDetails)
//staff Name
$sql_staf = "select StaffID,concat(Firstname,Lastname) as staff_name from T_StaffDetails where BranchCode = '".$br."'";
$sql_staf = "select StaffID,Firstname as staff_name from T_StaffDetails where BranchCode = '".$br."'";
$staff=$this->db->query($sql_staf);
$staff_list = $staff->result();