PO Screen desing

This commit is contained in:
gandhimathi Bharathirajan 2017-04-27 19:48:53 +05:30
parent 91d22743ca
commit 413ba29a9a

View File

@ -107,65 +107,58 @@ class purchaseorder_model extends CI_Model
{
$this->db->select('MaterialCode, MaterialName');
$this->db->from('T_RawMaterialDetailsN');
$this->db->from('T_MaterialMaster');
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Unit of Measure information
* This function is used to get the Cost center information
* @return array $result : This is result of the query
*/
function getUOM()
function getCostCenter()
{
$ConfigID = 'C001';
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
$this->db->select('CostName, Description');
$this->db->from('T_CostCentre');
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Config value from configuration table
* @return array $result : This is result of the query
*/
function getConfigValue($ConfigID ,$ConfigValue = '')
{
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
if($ConfigValue != '')
{
$this->db->where('ConfigValue != ',$ConfigValue );
}
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Purchase order Type
* @return array $result : This is result of the query
*/
function getPOType()
function getAllEmployees()
{
$ConfigID = 'C004';
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Purchase order Type
* @return array $result : This is result of the query
*/
function getPurchasingCategory()
{
$ConfigID = 'C007';
$this->db->select('ConfigValue');
$this->db->from('T_ConfigDetails');
$this->db->where('Config_id ',$ConfigID );
$query = $this->db->get();
return $query->result();
}
/**
* This function is used to get the Purchase order Type
* @return array $result : This is result of the query
*/
function getEmployeeList()
{
$this->db->select('EmpID,FirstName,LastName,Role,DepartmentName');
$this->db->from('T_EmployeeDetails');
$this->db->select('EmpID,FirstName,LastName');
$this->db->from('T_Employee_Details');
$query = $this->db->get();
return $query->result();