24 lines
668 B
JavaScript
24 lines
668 B
JavaScript
module.exports = Self => {
|
|
Self.remoteMethod('getAvailablePda', {
|
|
description: 'returns devices without user',
|
|
accessType: 'READ',
|
|
accepts: [],
|
|
returns: {
|
|
type: 'array',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/getAvailablePda`,
|
|
verb: 'GET'
|
|
}
|
|
});
|
|
Self.getAvailablePda = async() => {
|
|
return Self.app.models.DeviceProduction.rawSql(
|
|
`SELECT d.*
|
|
FROM deviceProduction d
|
|
LEFT JOIN deviceProductionUser du ON du.deviceProductionFk = d.id
|
|
WHERE du.deviceProductionFk IS NULL`
|
|
);
|
|
};
|
|
};
|