<br> fix given
This commit is contained in:
parent
5cdefcfbd3
commit
9e4f1bdd4f
@ -431,6 +431,26 @@ function GetPOType($ReqNo)
|
|||||||
return $query->result();
|
return $query->result();
|
||||||
// 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
|
* This function is used to get the Employee List
|
||||||
* @return array $result : This is result of the query
|
* @return array $result : This is result of the query
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user