FIX_USER_NAME_NULL : RV
This commit is contained in:
parent
c928f238ef
commit
374b382bfa
@ -1034,7 +1034,7 @@ class TicketController extends BaseController
|
|||||||
th.old_value,
|
th.old_value,
|
||||||
th.new_value,
|
th.new_value,
|
||||||
th.created_at,
|
th.created_at,
|
||||||
CONCAT(creator.first_name, ' ', creator.last_name) as modified_by,
|
CONCAT_WS(' ', creator.first_name, creator.last_name) AS modified_by,
|
||||||
-- Claim Status
|
-- Claim Status
|
||||||
old_status.claim_status as old_status_value,
|
old_status.claim_status as old_status_value,
|
||||||
new_status.claim_status as new_status_value,
|
new_status.claim_status as new_status_value,
|
||||||
@ -1094,6 +1094,7 @@ class TicketController extends BaseController
|
|||||||
ORDER BY
|
ORDER BY
|
||||||
th.created_at DESC";
|
th.created_at DESC";
|
||||||
$data = $this->ticketHistoryModel->query($sql)->getResultArray();
|
$data = $this->ticketHistoryModel->query($sql)->getResultArray();
|
||||||
|
// dd(db_connect()->getLastQuery());
|
||||||
$priorityType = $this->priorityType;
|
$priorityType = $this->priorityType;
|
||||||
$relationshipType = $this->relationshipType;
|
$relationshipType = $this->relationshipType;
|
||||||
$modeOFIntimate = $this->modeOFIntimate;
|
$modeOFIntimate = $this->modeOFIntimate;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user