module.exports = Self => { Self.remoteMethodCtx('new', { description: 'Creates a new invoiceIn due day', accessType: 'WRITE', accepts: { arg: 'id', type: 'number', required: true, description: 'The invoiceIn id', }, http: { path: '/new', verb: 'POST' } }); Self.new = async(ctx, id, options) => { let tx; const myOptions = {userId: ctx.req.accessToken.userId}; if (typeof options == 'object') Object.assign(myOptions, options); if (!myOptions.transaction) { tx = await Self.beginTransaction({}); myOptions.transaction = tx; } try { await Self.rawSql(`CALL vn.invoiceInDueDay_calculate(?)`, [id], myOptions); if (tx) await tx.commit(); } catch (e) { if (tx) await tx.rollback(); throw e; } }; };