<br> fix given

This commit is contained in:
gandhimathi Bharathirajan 2017-09-20 16:48:22 +05:30
parent 5cdefcfbd3
commit 9e4f1bdd4f

View File

@ -431,6 +431,26 @@ function GetPOType($ReqNo)
return $query->result();
// return $query->result();
}
/**
* This function is used to get the Company information from T_Company_Details table
* @return array $result : This is result of the query
*/
function getCompanyInformationforPDF()
{
$subQuery = "select CompanyName,Address,GSTNO,PAN,ContactNumber,EmailAddress,AlternateContactNumber,companyWebsite,StateCode
from T_Company_Details ";
$query = $this->db->query($subQuery);
//print_r($this->db->last_query());
return $query->result();
// return $query->result();
}
/**
* This function is used to get the Employee List
* @return array $result : This is result of the query