41 lines
1011 B
JavaScript
41 lines
1011 B
JavaScript
module.exports = Self => {
|
|
Self.remoteMethod('isLocked', {
|
|
description: 'Check if a ticket is invoiced or deleted',
|
|
accessType: 'READ',
|
|
accepts: [{
|
|
arg: 'id',
|
|
type: 'number',
|
|
required: true,
|
|
description: 'the ticket id',
|
|
http: {source: 'path'}
|
|
}],
|
|
returns: {
|
|
type: 'boolean',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/:id/isLocked`,
|
|
verb: 'get'
|
|
}
|
|
});
|
|
|
|
Self.isLocked = async(id, options) => {
|
|
const myOptions = {};
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const ticket = await Self.findById(id, {
|
|
fields: ['isDeleted', 'refFk']
|
|
}, myOptions);
|
|
|
|
const isDeleted = ticket && ticket.isDeleted;
|
|
const isInvoiced = ticket && ticket.refFk;
|
|
|
|
if (!ticket || isInvoiced || isDeleted)
|
|
return true;
|
|
|
|
return false;
|
|
};
|
|
};
|