mirror of
https://github.com/opensupports/opensupports.git
synced 2025-10-29 10:34:04 +01:00
* Adds first_closed_at and last_closed_at to Ticket * Fixes ticket isClosed function * Adds reopened column to Ticket table * Adds stats path * Adds stats for instant tickets * Adds basic connection with frontend * Creates cards to display ticketData * Adds tooltips with descriptions and i18n * Adds date range filter to backend * Adds DateRange filter on frontend * Documents and better structures code * Makes $dateRange local * Adds departments filter on backend * Adds stats path to menu * Adds first UI for departments filter in stats * Implements departments filter on frontend * Improves styling by adding bootstrap rows * Improves structure of dynamics queries * Adds tags filter on backend * Adding TagFilter for statistics WIP * Adds missing `id` to propTypes TagSelector * Removes console.warns * Adapts form to pass tagnames as value as FormField * Sends tags to API too * Makes tag-selector change form with tagnames only * Fixes tag-selector from ticket-viewer * Removes console.warn * Removes logs * Adds owner filter on backend * Connects owners frontend with backend for stats * Style changes for date-selector * Adds tickets by hours stat to /system/stats path * Adds chart for tickets created on each hour * Adds better wrap for ticketdata cards * Adds getAverageFirstReply to backend stats path * Adds getNumberOfCreatedTicketsByWeekday to backend * Adds created tickets by weekday chart * Disables clicking on the legend to toggle data * Adds base functions for efficiency stats * Adds getAverageFirstClosed to backend stats * Adds getAverageLastClosed to backend stats * Adds table, filters, and groupBy variables to queries * Adds response structure with mocks * Adds totalOwners and totalDepartments * Adds SQL queries to get department/staff hops of a ticket * Changes incorrect name * Rolls back addition of near useless function * Improves tag array management from redux store * Fix bug in autocomplete filters. * Sets default date range to current month. improves date.js. * Adds i18n * wip * Add media query in admin-panel-stats.scss * Updates date handling in search-ticket-utils * Makes tooltip open on hover of the entire block * Fix date range mobile style. * Add Loading * Add submit button and clear button in admin panel stats * Adds tests for stats and comments old ones * Add test for stats after a ticket has been created * Makes default dateRange for stats go to the end of the day * Factors out function to create ticket and adds test * Adds instant ticket test * Adds reopened test * Commit to save technique to test created_by_hour but is prohibitively slow. * Updates test of created_by_hour to be more lightweight * Adds test for created_by_weekday * Fixes default date and renames a function * Fixes hover bug by extracting card-stat to its own component * Fix drawbacks with previous change in style - mobile Co-authored-by: LautaroCesso <lautaro_cesso@hotmail.com> * Set up 0 as a minimum number for bar chart * Moves styles from stats cards to the component * Removes old /system/get-stats path * Changes name from /system/stats to /system/get-stats * Restore getCurrentDate in date transformer Co-authored-by: LautaroCesso <lautaro_cesso@hotmail.com> Co-authored-by: Ivan Diaz <ivan@opensupports.com>
96 lines
2.8 KiB
PHP
Executable File
96 lines
2.8 KiB
PHP
Executable File
<?php
|
|
use Respect\Validation\Validator as DataValidator;
|
|
DataValidator::with('CustomValidations', true);
|
|
|
|
/**
|
|
* @api {post} /staff/assign-ticket Assign ticket
|
|
* @apiVersion 4.8.0
|
|
*
|
|
* @apiName Assign ticket
|
|
*
|
|
* @apiGroup Staff
|
|
*
|
|
* @apiDescription This path assigns a ticket to a staff member.
|
|
*
|
|
* @apiPermission staff1
|
|
*
|
|
* @apiParam {Number} ticketNumber The number of the ticket to assign.
|
|
* @apiParam {Number} staffId The id of the staff.
|
|
*
|
|
* @apiUse NO_PERMISSION
|
|
* @apiUse INVALID_TICKET
|
|
* @apiUse TICKET_ALREADY_ASSIGNED
|
|
* @apiUse INVALID_DEPARTMENT
|
|
*
|
|
* @apiSuccess {Object} data Empty object
|
|
*
|
|
*/
|
|
|
|
class AssignStaffController extends Controller {
|
|
const PATH = '/assign-ticket';
|
|
const METHOD = 'POST';
|
|
|
|
private $ticket;
|
|
private $staffToAssign;
|
|
|
|
public function validations() {
|
|
return [
|
|
'permission' => 'staff_1',
|
|
'requestData' => [
|
|
'ticketNumber' => [
|
|
'validation' => DataValidator::validTicketNumber(),
|
|
'error' => ERRORS::INVALID_TICKET
|
|
]
|
|
]
|
|
];
|
|
}
|
|
|
|
public function handler() {
|
|
$ticketNumber = Controller::request('ticketNumber');
|
|
$staffId = Controller::request('staffId');
|
|
$this->ticket = Ticket::getByTicketNumber($ticketNumber);
|
|
$user = Controller::getLoggedUser();
|
|
|
|
if($staffId) {
|
|
$this->staffToAssign = Staff::getDataStore($staffId, 'id');
|
|
|
|
if($this->staffToAssign->isNull()) {
|
|
throw new RequestException(ERRORS::INVALID_STAFF);
|
|
}
|
|
|
|
if(!$this->staffToAssign->sharedDepartmentList->includesId($this->ticket->department->id)) {
|
|
throw new RequestException(ERRORS::INVALID_DEPARTMENT);
|
|
}
|
|
} else {
|
|
$this->staffToAssign = Controller::getLoggedUser();
|
|
}
|
|
|
|
if($this->ticket->owner) {
|
|
throw new RequestException(ERRORS::TICKET_ALREADY_ASSIGNED);
|
|
}
|
|
|
|
if(!$user->canManageTicket($this->ticket)) {
|
|
throw new RequestException(ERRORS::NO_PERMISSION);
|
|
} else {
|
|
$this->staffToAssign->sharedTicketList->add($this->ticket);
|
|
$this->ticket->owner = $this->staffToAssign;
|
|
$this->ticket->totalOwners++;
|
|
$this->ticket->unread = !$this->ticket->isAuthor($this->staffToAssign);
|
|
$event = Ticketevent::getEvent(Ticketevent::ASSIGN);
|
|
$event->setProperties(array(
|
|
'authorStaff' => Controller::getLoggedUser(),
|
|
'date' => Date::getCurrentDate(),
|
|
'content' => $this->staffToAssign->name,
|
|
));
|
|
$this->ticket->addEvent($event);
|
|
|
|
$this->ticket->store();
|
|
$this->staffToAssign->store();
|
|
|
|
Response::respondSuccess();
|
|
}
|
|
|
|
}
|
|
|
|
}
|