45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
const ParameterizedSQL = require('loopback-connector').ParameterizedSQL;
|
|
const mergeFilters = require('vn-loopback/util/filter').mergeFilters;
|
|
|
|
module.exports = Self => {
|
|
Self.remoteMethod('activeBuyers', {
|
|
description: 'Returns a list of buyers for the given item type',
|
|
accepts: [{
|
|
arg: 'filter',
|
|
type: 'object',
|
|
description: `Filter defining where, order, offset, and limit - must be a JSON-encoded string`
|
|
}],
|
|
returns: {
|
|
type: ['object'],
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/activeBuyers`,
|
|
verb: 'GET'
|
|
}
|
|
});
|
|
|
|
Self.activeBuyers = async(filter, options) => {
|
|
const conn = Self.dataSource.connector;
|
|
const where = {isActive: true};
|
|
const myOptions = {};
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
filter = mergeFilters(filter, {where});
|
|
|
|
let stmt = new ParameterizedSQL(
|
|
`SELECT DISTINCT w.id workerFk, w.firstName, w.lastName, u.name, u.nickname
|
|
FROM worker w
|
|
JOIN itemType it ON it.workerFk = w.id
|
|
JOIN account.user u ON u.id = w.id
|
|
JOIN item i ON i.typeFk = it.id`,
|
|
null, myOptions);
|
|
|
|
stmt.merge(conn.makeSuffix(filter));
|
|
|
|
return conn.executeStmt(stmt);
|
|
};
|
|
};
|