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.new_value,
|
||||
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
|
||||
old_status.claim_status as old_status_value,
|
||||
new_status.claim_status as new_status_value,
|
||||
@ -1094,6 +1094,7 @@ class TicketController extends BaseController
|
||||
ORDER BY
|
||||
th.created_at DESC";
|
||||
$data = $this->ticketHistoryModel->query($sql)->getResultArray();
|
||||
// dd(db_connect()->getLastQuery());
|
||||
$priorityType = $this->priorityType;
|
||||
$relationshipType = $this->relationshipType;
|
||||
$modeOFIntimate = $this->modeOFIntimate;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user