Add assignedBy to ticket
This commit is contained in:
parent
6be05bebfe
commit
17c5607ce7
@ -42,6 +42,7 @@ class Ticket extends \BaseClass {
|
|||||||
$ticket->numberOfReplies = intval($row['replies']);
|
$ticket->numberOfReplies = intval($row['replies']);
|
||||||
$ticket->numberOfStaffReplies = intval($row['staffreplies']);
|
$ticket->numberOfStaffReplies = intval($row['staffreplies']);
|
||||||
$ticket->ownerId = intval($row['owner']);
|
$ticket->ownerId = intval($row['owner']);
|
||||||
|
$ticket->assignedBy = $row['assigned_by'] === null ? null : intval($row['assigned_by']);
|
||||||
$ticket->timeWorked = $row['time_worked'];
|
$ticket->timeWorked = $row['time_worked'];
|
||||||
$ticket->lastReplyBy = intval($row['lastreplier']);
|
$ticket->lastReplyBy = intval($row['lastreplier']);
|
||||||
$ticket->lastReplier = $row['replierid'] === null ? null : intval($row['replierid']);
|
$ticket->lastReplier = $row['replierid'] === null ? null : intval($row['replierid']);
|
||||||
@ -258,6 +259,11 @@ class Ticket extends \BaseClass {
|
|||||||
*/
|
*/
|
||||||
public $ownerId;
|
public $ownerId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int|null
|
||||||
|
*/
|
||||||
|
public $assignedBy;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user