2018-05-04 09:46:03 +00:00
|
|
|
module.exports = Self => {
|
2018-03-28 13:07:48 +00:00
|
|
|
Self.remoteMethod('createWithInsurance', {
|
|
|
|
description: 'Creates both classification and one insurance',
|
2018-04-20 13:16:03 +00:00
|
|
|
accepts: [{
|
2018-03-28 13:07:48 +00:00
|
|
|
arg: 'data',
|
|
|
|
type: 'object',
|
|
|
|
http: {source: 'body'}
|
2018-04-20 13:16:03 +00:00
|
|
|
}, {
|
|
|
|
arg: 'context',
|
|
|
|
type: 'object',
|
|
|
|
http: function(ctx) {
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
}],
|
2018-03-28 13:07:48 +00:00
|
|
|
returns: {
|
|
|
|
root: true,
|
|
|
|
type: 'boolean'
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
verb: 'post',
|
|
|
|
path: '/createWithInsurance'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-06-12 15:31:45 +00:00
|
|
|
Self.createWithInsurance = async(data, ctx) => {
|
|
|
|
let tx = await Self.beginTransaction({});
|
2018-03-28 13:07:48 +00:00
|
|
|
|
|
|
|
try {
|
2019-06-12 15:31:45 +00:00
|
|
|
let options = {transaction: tx};
|
|
|
|
|
2018-03-28 13:07:48 +00:00
|
|
|
let classificationSchema = {client: data.clientFk, started: data.started};
|
2019-06-12 15:31:45 +00:00
|
|
|
let newClassification = await Self.create(classificationSchema, options);
|
2018-04-20 13:16:03 +00:00
|
|
|
let CreditInsurance = Self.app.models.CreditInsurance;
|
2018-03-28 13:07:48 +00:00
|
|
|
let insuranceSchema = {
|
|
|
|
creditClassification: newClassification.id,
|
|
|
|
credit: data.credit,
|
|
|
|
grade: data.grade
|
|
|
|
};
|
|
|
|
|
2019-06-12 15:31:45 +00:00
|
|
|
let newCreditInsurance = await CreditInsurance.create(insuranceSchema, options);
|
|
|
|
await tx.commit();
|
2018-04-20 13:16:03 +00:00
|
|
|
await CreditInsurance.messageSend(newCreditInsurance, ctx.req.accessToken);
|
|
|
|
|
2018-03-28 13:07:48 +00:00
|
|
|
return newClassification;
|
|
|
|
} catch (e) {
|
2019-06-12 15:31:45 +00:00
|
|
|
await tx.rollback();
|
2018-03-28 13:07:48 +00:00
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|