feat: refs #7356 added new filter field
This commit is contained in:
parent
97b07ea561
commit
b642147d82
|
@ -76,7 +76,8 @@ module.exports = Self => {
|
|||
{
|
||||
arg: 'myTeam',
|
||||
type: 'boolean',
|
||||
description: `Whether to show only tickets for the current logged user team (For now it shows only the current user tickets)`
|
||||
description: `Whether to show only tickets for the current logged user team
|
||||
(For now it shows only the current user tickets)`
|
||||
},
|
||||
{
|
||||
arg: 'problems',
|
||||
|
@ -258,7 +259,8 @@ module.exports = Self => {
|
|||
MINUTE(z.hour) zoneMinute,
|
||||
z.name zoneName,
|
||||
z.id zoneFk,
|
||||
CAST(z.hour AS CHAR) hour
|
||||
CAST(z.hour AS CHAR) hour,
|
||||
a.nickname addressNickname
|
||||
FROM ticket t
|
||||
LEFT JOIN invoiceOut io ON t.refFk = io.ref
|
||||
LEFT JOIN zone z ON z.id = t.zoneFk
|
||||
|
|
Loading…
Reference in New Issue