module.exports = Self => {
    Self.remoteMethod('sumAmount', {
        description: 'Returns the sum of greuge for a client',
        accessType: 'READ',
        accepts: [{
            arg: 'id',
            type: 'number',
            required: true,
            description: 'clientFk',
            http: {source: 'path'}
        }],
        returns: {
            arg: 'sumAmount'
        },
        http: {
            path: `/:id/sumAmount`,
            verb: 'get'
        }
    });

    Self.sumAmount = async clientFk => {
        let query = `SELECT SUM(amount) AS sumAmount FROM vn.greuge WHERE clientFk = ?`;
        try {
            let [response] = await Self.rawSql(query, [clientFk]);

            return response ? response.sumAmount : 0;
        } catch (e) {
            throw new Error(e);
        }
    };
};