salix/modules/ticket/back/methods/ticket-tracking/changeState.js

49 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-12-27 11:54:16 +00:00
const UserError = require('vn-loopback/util/user-error');
module.exports = Self => {
Self.remoteMethodCtx('changeState', {
description: 'Change the state of a ticket',
accessType: 'WRITE',
2019-01-29 20:00:27 +00:00
accepts: [
{
arg: 'data',
description: 'Model instance data',
type: 'Object',
required: true,
http: {source: 'body'}
}
],
returns: {
type: 'string',
root: true
},
http: {
path: `/changeState`,
2019-01-29 15:37:59 +00:00
verb: 'POST'
}
});
2019-01-29 20:00:27 +00:00
Self.changeState = async(ctx, data) => {
2019-01-29 15:37:59 +00:00
let userId = ctx.req.accessToken.userId;
let models = Self.app.models;
2019-01-29 15:37:59 +00:00
2019-01-29 20:00:27 +00:00
let isEditable = await models.Ticket.isEditable(data.ticketFk);
2019-01-29 15:37:59 +00:00
let assignedState = await models.State.findOne({where: {code: 'PICKER_DESIGNED'}});
2019-01-29 20:00:27 +00:00
let isAssigned = assignedState.id === data.stateFk;
2019-01-29 15:37:59 +00:00
let isProduction = await models.Account.hasRole(userId, 'production');
let isSalesPerson = await models.Account.hasRole(userId, 'salesPerson');
let isAllowed = isProduction || isSalesPerson && isEditable && isAssigned;
2019-01-29 15:37:59 +00:00
if (!isAllowed)
throw new UserError(`You don't have enough privileges`, 'ACCESS_DENIED');
2019-01-22 09:04:42 +00:00
if (!isAssigned) {
2019-01-29 15:37:59 +00:00
let worker = await models.Worker.findOne({where: {userFk: userId}});
2019-01-29 20:00:27 +00:00
data.workerFk = worker.id;
2019-01-22 09:04:42 +00:00
}
2019-01-29 20:00:27 +00:00
return await models.TicketTracking.create(data);
};
};