add workstation enable text
This commit is contained in:
parent
82f8097337
commit
a907fb675e
@ -23,7 +23,11 @@ class WorkstationModel extends BaseModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function getWorkstation($WorkstationID) {
|
public function getWorkstation($WorkstationID) {
|
||||||
$rows = $this->select('workstation.*, department.DepartmentName, wst1.WorkstationName as LinkToName')
|
$rows = $this->select("workstation.*, department.DepartmentName, wst1.WorkstationName as LinkToName,
|
||||||
|
CASE
|
||||||
|
WHEN workstation.Enable = 1 THEN 'Enabled'
|
||||||
|
ELSE 'Disabled'
|
||||||
|
END AS EnableText")
|
||||||
->join('workstation wst1', 'workstation.LinkTo=wst1.WorkstationID', 'left')
|
->join('workstation wst1', 'workstation.LinkTo=wst1.WorkstationID', 'left')
|
||||||
->join('department', 'department.DepartmentID=workstation.DepartmentID', 'left')
|
->join('department', 'department.DepartmentID=workstation.DepartmentID', 'left')
|
||||||
->where('workstation.WorkstationID', $WorkstationID)
|
->where('workstation.WorkstationID', $WorkstationID)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user