Merge branch 'dev' into 2940-invoiceInTax-section
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
commit
c509509963
|
@ -21,8 +21,9 @@ module.exports = Self => {
|
|||
});
|
||||
|
||||
Self.removeFile = async(ctx, id, options) => {
|
||||
const models = Self.app.models;
|
||||
let tx;
|
||||
let myOptions = {};
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
@ -33,7 +34,6 @@ module.exports = Self => {
|
|||
}
|
||||
|
||||
try {
|
||||
const models = Self.app.models;
|
||||
const dms = await models.Dms.findById(id, null, myOptions);
|
||||
const trashDmsType = await models.DmsType.findOne({
|
||||
where: {code: 'trash'}
|
||||
|
|
|
@ -12,18 +12,22 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getUserConfig = async ctx => {
|
||||
Self.getUserConfig = async(ctx, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
let userConfig = await models.UserConfig.findOne({
|
||||
where: {userFk: ctx.req.accessToken.userId}
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
const companyFilter = {where: {code: 'VNL'}};
|
||||
const company = await models.Company.findOne(companyFilter);
|
||||
const company = await models.Company.findOne(companyFilter, myOptions);
|
||||
|
||||
const warehouseFilter = {where: {code: 'ALG'}};
|
||||
const warehouse = await models.Warehouse.findOne(warehouseFilter);
|
||||
const warehouse = await models.Warehouse.findOne(warehouseFilter, myOptions);
|
||||
|
||||
if (!userConfig) {
|
||||
let newConfig = {
|
||||
|
@ -32,7 +36,7 @@ module.exports = function(Self) {
|
|||
userFk: ctx.req.accessToken.userId
|
||||
};
|
||||
|
||||
userConfig = await models.UserConfig.create(newConfig);
|
||||
userConfig = await models.UserConfig.create(newConfig, myOptions);
|
||||
}
|
||||
return userConfig;
|
||||
};
|
||||
|
|
|
@ -1,10 +1,21 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('userConfig getUserConfig()', () => {
|
||||
it(`should return the configuration data of a given user`, async() => {
|
||||
const result = await app.models.UserConfig.getUserConfig({req: {accessToken: {userId: 9}}});
|
||||
const tx = await models.Item.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const ctx = {req: {accessToken: {userId: 9}}};
|
||||
const result = await models.UserConfig.getUserConfig(ctx, options);
|
||||
|
||||
expect(result.warehouseFk).toEqual(1);
|
||||
expect(result.companyFk).toEqual(442);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -25,8 +25,9 @@ module.exports = Self => {
|
|||
});
|
||||
|
||||
Self.createFromSales = async(ctx, ticketId, sales, options) => {
|
||||
const models = Self.app.models;
|
||||
let tx;
|
||||
let myOptions = {};
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
@ -35,7 +36,6 @@ module.exports = Self => {
|
|||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
const models = Self.app.models;
|
||||
const userId = ctx.req.accessToken.userId;
|
||||
|
||||
try {
|
||||
|
|
|
@ -79,10 +79,14 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.filter = async(ctx, filter) => {
|
||||
let conn = Self.dataSource.connector;
|
||||
Self.filter = async(ctx, filter, options) => {
|
||||
const conn = Self.dataSource.connector;
|
||||
const myOptions = {};
|
||||
|
||||
let where = buildFilter(ctx.args, (param, value) => {
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const where = buildFilter(ctx.args, (param, value) => {
|
||||
switch (param) {
|
||||
case 'search':
|
||||
return /^\d+$/.test(value)
|
||||
|
@ -111,10 +115,9 @@ module.exports = Self => {
|
|||
|
||||
filter = mergeFilters(ctx.args.filter, {where});
|
||||
|
||||
let stmts = [];
|
||||
let stmt;
|
||||
const stmts = [];
|
||||
|
||||
stmt = new ParameterizedSQL(
|
||||
const stmt = new ParameterizedSQL(
|
||||
`SELECT cl.id, c.name, cl.clientFk, cl.workerFk, u.name AS userName, cs.description, cl.created
|
||||
FROM claim cl
|
||||
LEFT JOIN client c ON c.id = cl.clientFk
|
||||
|
@ -124,10 +127,11 @@ module.exports = Self => {
|
|||
);
|
||||
|
||||
stmt.merge(conn.makeSuffix(filter));
|
||||
let itemsIndex = stmts.push(stmt) - 1;
|
||||
const itemsIndex = stmts.push(stmt) - 1;
|
||||
|
||||
const sql = ParameterizedSQL.join(stmts, ';');
|
||||
const result = await conn.executeStmt(sql, myOptions);
|
||||
|
||||
let sql = ParameterizedSQL.join(stmts, ';');
|
||||
let result = await conn.executeStmt(sql);
|
||||
return itemsIndex === 0 ? result : result[itemsIndex];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -19,12 +19,16 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getSummary = async id => {
|
||||
let promises = [];
|
||||
let summary = {};
|
||||
Self.getSummary = async(id, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const promises = [];
|
||||
const summary = {};
|
||||
|
||||
// Claim
|
||||
|
||||
let filter = {
|
||||
where: {id: id},
|
||||
include: [
|
||||
|
@ -61,13 +65,14 @@ module.exports = Self => {
|
|||
]
|
||||
};
|
||||
|
||||
promises.push(Self.app.models.Claim.find(filter));
|
||||
promises.push(Self.app.models.Claim.find(filter, myOptions));
|
||||
|
||||
// Claim detail
|
||||
filter = {
|
||||
where: {claimFk: id},
|
||||
include: [
|
||||
{relation: 'sale',
|
||||
{
|
||||
relation: 'sale',
|
||||
scope: {
|
||||
fields: ['concept', 'ticketFk', 'price', 'quantity', 'discount', 'itemFk'],
|
||||
include: {
|
||||
|
@ -77,7 +82,7 @@ module.exports = Self => {
|
|||
}
|
||||
]
|
||||
};
|
||||
promises.push(Self.app.models.ClaimBeginning.find(filter));
|
||||
promises.push(Self.app.models.ClaimBeginning.find(filter, myOptions));
|
||||
|
||||
// Claim developments
|
||||
filter = {
|
||||
|
@ -109,7 +114,7 @@ module.exports = Self => {
|
|||
}
|
||||
]
|
||||
};
|
||||
promises.push(Self.app.models.ClaimDevelopment.find(filter));
|
||||
promises.push(Self.app.models.ClaimDevelopment.find(filter, myOptions));
|
||||
|
||||
// Claim action
|
||||
filter = {
|
||||
|
@ -126,9 +131,9 @@ module.exports = Self => {
|
|||
{relation: 'claimBeggining'}
|
||||
]
|
||||
};
|
||||
promises.push(Self.app.models.ClaimEnd.find(filter));
|
||||
promises.push(Self.app.models.ClaimEnd.find(filter, myOptions));
|
||||
|
||||
let res = await Promise.all(promises);
|
||||
const res = await Promise.all(promises);
|
||||
|
||||
[summary.claim] = res[0];
|
||||
summary.salesClaimed = res[1];
|
||||
|
|
|
@ -19,15 +19,21 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.isEditable = async(ctx, id) => {
|
||||
Self.isEditable = async(ctx, id, options) => {
|
||||
const userId = ctx.req.accessToken.userId;
|
||||
const isClaimManager = await Self.app.models.Account.hasRole(userId, 'claimManager');
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const isClaimManager = await Self.app.models.Account.hasRole(userId, 'claimManager', myOptions);
|
||||
|
||||
const claim = await Self.app.models.Claim.findById(id, {
|
||||
fields: ['claimStateFk'],
|
||||
include: [{
|
||||
relation: 'claimState'
|
||||
}]
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
const isClaimResolved = claim && claim.claimState().code == 'resolved';
|
||||
|
||||
|
|
|
@ -2,26 +2,59 @@ const app = require('vn-loopback/server/server');
|
|||
|
||||
describe('claim filter()', () => {
|
||||
it('should return 1 result filtering by id', async() => {
|
||||
let result = await app.models.Claim.filter({args: {filter: {}, search: 1}});
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await app.models.Claim.filter({args: {filter: {}, search: 1}}, null, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].id).toEqual(1);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should return 1 result filtering by string', async() => {
|
||||
let result = await app.models.Claim.filter({args: {filter: {}, search: 'Tony Stark'}});
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await app.models.Claim.filter({args: {filter: {}, search: 'Tony Stark'}}, null, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].id).toEqual(4);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should return 4 results filtering by worker id', async() => {
|
||||
let result = await app.models.Claim.filter({args: {filter: {}, workerFk: 18}});
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await app.models.Claim.filter({args: {filter: {}, workerFk: 18}}, null, options);
|
||||
|
||||
expect(result.length).toEqual(4);
|
||||
expect(result[0].id).toEqual(1);
|
||||
expect(result[1].id).toEqual(2);
|
||||
expect(result[2].id).toEqual(3);
|
||||
expect(result[3].id).toEqual(4);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -2,12 +2,23 @@ const app = require('vn-loopback/server/server');
|
|||
|
||||
describe('claim getSummary()', () => {
|
||||
it('should return summary with claim, salesClaimed, developments and actions defined ', async() => {
|
||||
let result = await app.models.Claim.getSummary(1);
|
||||
let keys = Object.keys(result);
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await app.models.Claim.getSummary(1, options);
|
||||
const keys = Object.keys(result);
|
||||
|
||||
expect(keys).toContain('claim');
|
||||
expect(keys).toContain('salesClaimed');
|
||||
expect(keys).toContain('developments');
|
||||
expect(keys).toContain('actions');
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -4,30 +4,74 @@ describe('claim isEditable()', () => {
|
|||
const salesPerdonId = 18;
|
||||
const claimManagerId = 72;
|
||||
it('should return false if the given claim does not exist', async() => {
|
||||
let ctx = {req: {accessToken: {userId: claimManagerId}}};
|
||||
let result = await app.models.Claim.isEditable(ctx, 99999);
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: claimManagerId}}};
|
||||
const result = await app.models.Claim.isEditable(ctx, 99999, options);
|
||||
|
||||
expect(result).toEqual(false);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should not be able to edit a resolved claim for a salesPerson', async() => {
|
||||
let ctx = {req: {accessToken: {userId: salesPerdonId}}};
|
||||
let result = await app.models.Claim.isEditable(ctx, 4);
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: salesPerdonId}}};
|
||||
const result = await app.models.Claim.isEditable(ctx, 4, options);
|
||||
|
||||
expect(result).toEqual(false);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should be able to edit a resolved claim for a claimManager', async() => {
|
||||
let ctx = {req: {accessToken: {userId: claimManagerId}}};
|
||||
let result = await app.models.Claim.isEditable(ctx, 4);
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: claimManagerId}}};
|
||||
const result = await app.models.Claim.isEditable(ctx, 4, options);
|
||||
|
||||
expect(result).toEqual(true);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should be able to edit a claim for a claimManager', async() => {
|
||||
let ctx = {req: {accessToken: {userId: salesPerdonId}}};
|
||||
let result = await app.models.Claim.isEditable(ctx, 1);
|
||||
const tx = await app.models.Claim.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: salesPerdonId}}};
|
||||
const result = await app.models.Claim.isEditable(ctx, 1, options);
|
||||
|
||||
expect(result).toEqual(true);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -4,12 +4,12 @@ module.exports = Self => {
|
|||
accessType: 'WRITE',
|
||||
accepts: {
|
||||
arg: 'id',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The document id',
|
||||
http: {source: 'path'}
|
||||
},
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -18,13 +18,33 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.removeFile = async(ctx, id) => {
|
||||
Self.removeFile = async(ctx, id, options) => {
|
||||
const models = Self.app.models;
|
||||
const clientDms = await Self.findById(id);
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
await models.Dms.removeFile(ctx, clientDms.dmsFk);
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
return clientDms.destroy();
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
const clientDms = await Self.findById(id, null, myOptions);
|
||||
|
||||
await models.Dms.removeFile(ctx, clientDms.dmsFk, myOptions);
|
||||
|
||||
const destroyedClient = await clientDms.destroy(myOptions);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return destroyedClient;
|
||||
} catch (e) {
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1,17 +1,24 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('ClientDms removeFile()', () => {
|
||||
const clientDmsFk = 3;
|
||||
it(`should return an error for a user without enough privileges`, async() => {
|
||||
let clientId = 1101;
|
||||
let ctx = {req: {accessToken: {userId: clientId}}};
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
await app.models.ClientDms.removeFile(ctx, clientDmsFk).catch(e => {
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const clientDmsFk = 3;
|
||||
const clientId = 1101;
|
||||
const ctx = {req: {accessToken: {userId: clientId}}};
|
||||
|
||||
await models.ClientDms.removeFile(ctx, clientDmsFk, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}).finally(() => {
|
||||
expect(error.message).toEqual(`You don't have enough privileges`);
|
||||
});
|
||||
}
|
||||
|
||||
expect(error).toBeDefined();
|
||||
});
|
||||
|
|
|
@ -12,7 +12,7 @@ module.exports = function(Self) {
|
|||
},
|
||||
{
|
||||
arg: 'data',
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
required: true,
|
||||
description: 'data with new value',
|
||||
http: {source: 'body'}
|
||||
|
@ -29,12 +29,21 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.addressesPropagateRe = async(id, data) => {
|
||||
if (data.hasOwnProperty('isEqualizated')) {
|
||||
let client = await Self.app.models.Client.findById(id);
|
||||
Self.addressesPropagateRe = async(id, data, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const isEqualizated = Object.prototype.hasOwnProperty.call(data, 'isEqualizated');
|
||||
if (isEqualizated) {
|
||||
const client = await models.Client.findById(id, null, myOptions);
|
||||
|
||||
if (client) {
|
||||
await Self.app.models.Address.updateAll({clientFk: id}, data);
|
||||
await client.updateAttributes({hasToInvoiceByAddress: false});
|
||||
await models.Address.updateAll({clientFk: id}, data, myOptions);
|
||||
await client.updateAttributes({hasToInvoiceByAddress: false}, myOptions);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,8 +20,15 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.canCreateTicket = async id => {
|
||||
const client = await Self.app.models.Client.findById(id);
|
||||
Self.canCreateTicket = async(id, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const client = await models.Client.findById(id, null, myOptions);
|
||||
|
||||
const canCreateTicket = client && client.isActive;
|
||||
if (!canCreateTicket)
|
||||
return false;
|
||||
|
|
|
@ -9,7 +9,7 @@ module.exports = Self => {
|
|||
description: 'Transaction id'
|
||||
}],
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -18,23 +18,32 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.confirmTransaction = async(ctx, id) => {
|
||||
let userId = ctx.req.accessToken.userId;
|
||||
let tx = await Self.beginTransaction({});
|
||||
Self.confirmTransaction = async(ctx, id, options) => {
|
||||
const models = Self.app.models;
|
||||
const userId = ctx.req.accessToken.userId;
|
||||
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
let options = {transaction: tx};
|
||||
const oldTpvTransaction = await models.TpvTransaction.findById(id, null, myOptions);
|
||||
|
||||
let oldTpvTransaction = await Self.app.models.TpvTransaction.findById(id, null, options);
|
||||
const confirm = await Self.rawSql('CALL hedera.tpvTransaction_confirmById(?)', [id], myOptions);
|
||||
|
||||
let confirm = await Self.rawSql('CALL hedera.tpvTransaction_confirmById(?)', [id], options);
|
||||
const tpvTransaction = await models.TpvTransaction.findById(id, null, myOptions);
|
||||
|
||||
let tpvTransaction = await Self.app.models.TpvTransaction.findById(id, null, options);
|
||||
const oldInstance = {status: oldTpvTransaction.status};
|
||||
const newInstance = {status: tpvTransaction.status};
|
||||
|
||||
let oldInstance = {status: oldTpvTransaction.status};
|
||||
let newInstance = {status: tpvTransaction.status};
|
||||
|
||||
let logRecord = {
|
||||
const logRecord = {
|
||||
originFk: tpvTransaction.clientFk,
|
||||
userFk: userId,
|
||||
action: 'update',
|
||||
|
@ -44,12 +53,13 @@ module.exports = Self => {
|
|||
newInstance: newInstance
|
||||
};
|
||||
|
||||
await Self.app.models.ClientLog.create(logRecord, options);
|
||||
await models.ClientLog.create(logRecord, myOptions);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
await tx.commit();
|
||||
return confirm;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -10,44 +10,52 @@ module.exports = Self => {
|
|||
accepts: [
|
||||
{
|
||||
arg: 'filter',
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
description: 'Filter defining where, order, offset, and limit - must be a JSON-encoded string'
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'search',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
description: `If it's and integer searchs by id, otherwise it searchs by name`
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'itemId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'Item id'
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'categoryId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'Category id'
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'typeId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'Item type id',
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'buyerId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'Buyer id'
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'from',
|
||||
type: 'Date',
|
||||
type: 'date',
|
||||
description: `The from date filter`
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'to',
|
||||
type: 'Date',
|
||||
type: 'date',
|
||||
description: `The to date filter`
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'grouped',
|
||||
type: 'Boolean',
|
||||
type: 'boolean',
|
||||
description: 'Group by item'
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -56,7 +64,12 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.consumption = async(ctx, filter) => {
|
||||
Self.consumption = async(ctx, filter, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const conn = Self.dataSource.connector;
|
||||
const args = ctx.args;
|
||||
const where = buildFilter(ctx.args, (param, value) => {
|
||||
|
@ -83,7 +96,7 @@ module.exports = Self => {
|
|||
});
|
||||
filter = mergeFilters(filter, {where});
|
||||
|
||||
let stmt = new ParameterizedSQL('SELECT');
|
||||
const stmt = new ParameterizedSQL('SELECT');
|
||||
if (args.grouped)
|
||||
stmt.merge(`SUM(s.quantity) AS quantity,`);
|
||||
else
|
||||
|
@ -121,6 +134,6 @@ module.exports = Self => {
|
|||
|
||||
stmt.merge(conn.makePagination(filter));
|
||||
|
||||
return conn.executeStmt(stmt);
|
||||
return conn.executeStmt(stmt, myOptions);
|
||||
};
|
||||
};
|
||||
|
|
|
@ -62,7 +62,7 @@ module.exports = function(Self) {
|
|||
}],
|
||||
returns: {
|
||||
root: true,
|
||||
type: 'Object'
|
||||
type: 'object'
|
||||
},
|
||||
http: {
|
||||
verb: 'post',
|
||||
|
@ -70,18 +70,26 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.createAddress = async(ctx, clientFk) => {
|
||||
Self.createAddress = async(ctx, clientFk, options) => {
|
||||
const models = Self.app.models;
|
||||
const args = ctx.args;
|
||||
const tx = await models.Address.beginTransaction({});
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const province = await models.Province.findById(args.provinceFk, {
|
||||
include: {
|
||||
relation: 'country'
|
||||
}
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
const isUeeMember = province.country().isUeeMember;
|
||||
if (!isUeeMember && !args.incotermsFk)
|
||||
|
@ -91,19 +99,20 @@ module.exports = function(Self) {
|
|||
throw new UserError(`Customs agent is required for a non UEE member`);
|
||||
|
||||
delete args.ctx; // Remove unwanted properties
|
||||
const newAddress = await models.Address.create(args, options);
|
||||
const client = await Self.findById(clientFk, null, options);
|
||||
const newAddress = await models.Address.create(args, myOptions);
|
||||
const client = await Self.findById(clientFk, null, myOptions);
|
||||
|
||||
if (args.isDefaultAddress) {
|
||||
await client.updateAttributes({
|
||||
defaultAddressFk: newAddress.id
|
||||
}, options);
|
||||
}, myOptions);
|
||||
}
|
||||
|
||||
await tx.commit();
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return newAddress;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -48,19 +48,26 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.createReceipt = async ctx => {
|
||||
Self.createReceipt = async(ctx, options) => {
|
||||
const models = Self.app.models;
|
||||
const args = ctx.args;
|
||||
const tx = await models.Address.beginTransaction({});
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
delete args.ctx; // Remove unwanted properties
|
||||
const newReceipt = await models.Receipt.create(args, options);
|
||||
const clientOriginal = await models.Client.findById(args.clientFk);
|
||||
const bank = await models.Bank.findById(args.bankFk);
|
||||
const accountingType = await models.AccountingType.findById(bank.accountingTypeFk);
|
||||
const newReceipt = await models.Receipt.create(args, myOptions);
|
||||
const originalClient = await models.Client.findById(args.clientFk, null, myOptions);
|
||||
const bank = await models.Bank.findById(args.bankFk, null, myOptions);
|
||||
const accountingType = await models.AccountingType.findById(bank.accountingTypeFk, null, myOptions);
|
||||
|
||||
if (accountingType.code == 'compensation') {
|
||||
if (!args.compensationAccount)
|
||||
|
@ -70,14 +77,16 @@ module.exports = function(Self) {
|
|||
where: {
|
||||
account: args.compensationAccount
|
||||
}
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
let clientCompensation = {};
|
||||
|
||||
if (!supplierCompensation) {
|
||||
clientCompensation = await models.Client.findOne({
|
||||
where: {
|
||||
accountingAccount: args.compensationAccount
|
||||
}
|
||||
});
|
||||
}, myOptions);
|
||||
}
|
||||
if (!supplierCompensation && !clientCompensation)
|
||||
throw new UserError('Invalid account');
|
||||
|
@ -87,20 +96,21 @@ module.exports = function(Self) {
|
|||
[
|
||||
args.compensationAccount,
|
||||
args.bankFk,
|
||||
accountingType.receiptDescription + clientOriginal.accountingAccount,
|
||||
accountingType.receiptDescription + originalClient.accountingAccount,
|
||||
args.amountPaid,
|
||||
args.companyFk,
|
||||
clientOriginal.accountingAccount
|
||||
originalClient.accountingAccount
|
||||
],
|
||||
options);
|
||||
myOptions
|
||||
);
|
||||
} else if (accountingType.isAutoConciliated == true) {
|
||||
const description = `${clientOriginal.id} : ${clientOriginal.socialName} - ${accountingType.receiptDescription}`;
|
||||
const description = `${originalClient.id} : ${originalClient.socialName} - ${accountingType.receiptDescription}`;
|
||||
const [xdiarioNew] = await Self.rawSql(
|
||||
`SELECT xdiario_new(?, CURDATE(), ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ledger;`,
|
||||
[
|
||||
null,
|
||||
bank.account,
|
||||
clientOriginal.accountingAccount,
|
||||
originalClient.accountingAccount,
|
||||
description,
|
||||
args.amountPaid,
|
||||
0,
|
||||
|
@ -112,13 +122,14 @@ module.exports = function(Self) {
|
|||
false,
|
||||
args.companyFk
|
||||
],
|
||||
options);
|
||||
myOptions
|
||||
);
|
||||
|
||||
await Self.rawSql(
|
||||
`SELECT xdiario_new(?, CURDATE(), ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);`,
|
||||
[
|
||||
xdiarioNew.ledger,
|
||||
clientOriginal.accountingAccount,
|
||||
originalClient.accountingAccount,
|
||||
bank.account,
|
||||
description,
|
||||
0,
|
||||
|
@ -131,13 +142,15 @@ module.exports = function(Self) {
|
|||
false,
|
||||
args.companyFk
|
||||
],
|
||||
options);
|
||||
myOptions
|
||||
);
|
||||
}
|
||||
|
||||
await tx.commit();
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return newReceipt;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -16,22 +16,29 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.createWithUser = async data => {
|
||||
let firstEmail = data.email ? data.email.split(',')[0] : null;
|
||||
let user = {
|
||||
Self.createWithUser = async(data, options) => {
|
||||
const models = Self.app.models;
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
const firstEmail = data.email ? data.email.split(',')[0] : null;
|
||||
const user = {
|
||||
name: data.userName,
|
||||
email: firstEmail,
|
||||
password: parseInt(Math.random() * 100000000000000)
|
||||
};
|
||||
const Account = Self.app.models.Account;
|
||||
const Address = Self.app.models.Address;
|
||||
const tx = await Account.beginTransaction({});
|
||||
|
||||
try {
|
||||
let options = {transaction: tx};
|
||||
|
||||
let account = await Account.create(user, options);
|
||||
let client = await Self.create({
|
||||
const account = await models.Account.create(user, myOptions);
|
||||
const client = await Self.create({
|
||||
id: account.id,
|
||||
name: data.name,
|
||||
fi: data.fi,
|
||||
|
@ -44,9 +51,9 @@ module.exports = function(Self) {
|
|||
provinceFk: data.provinceFk,
|
||||
countryFk: data.countryFk,
|
||||
isEqualizated: data.isEqualizated
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
let address = await Address.create({
|
||||
const address = await models.Address.create({
|
||||
clientFk: client.id,
|
||||
nickname: client.name,
|
||||
city: client.city,
|
||||
|
@ -55,16 +62,17 @@ module.exports = function(Self) {
|
|||
provinceFk: client.provinceFk,
|
||||
isEqualizated: client.isEqualizated,
|
||||
isActive: true
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
await client.updateAttributes({
|
||||
defaultAddressFk: address.id
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
await tx.commit();
|
||||
return client;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -19,9 +19,14 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getAverageInvoiced = async clientFk => {
|
||||
let query = `SELECT invoiced FROM vn.annualAverageInvoiced WHERE clientFk = ?`;
|
||||
let [invoiced] = await Self.rawSql(query, [clientFk]);
|
||||
Self.getAverageInvoiced = async(clientFk, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `SELECT invoiced FROM vn.annualAverageInvoiced WHERE clientFk = ?`;
|
||||
const [invoiced] = await Self.rawSql(query, [clientFk], myOptions);
|
||||
|
||||
return invoiced;
|
||||
};
|
||||
|
|
|
@ -9,7 +9,7 @@ module.exports = function(Self) {
|
|||
http: {source: 'path'}
|
||||
},
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -18,8 +18,13 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getCard = async function(id) {
|
||||
let client = await Self.findOne({
|
||||
Self.getCard = async(id, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const client = await Self.findOne({
|
||||
where: {
|
||||
id: id
|
||||
},
|
||||
|
@ -29,38 +34,44 @@ module.exports = function(Self) {
|
|||
scope: {
|
||||
fields: ['id', 'name']
|
||||
}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
relation: 'province',
|
||||
scope: {
|
||||
fields: ['id', 'name']
|
||||
}
|
||||
}, {
|
||||
}, {
|
||||
},
|
||||
{
|
||||
relation: 'salesPersonUser',
|
||||
scope: {
|
||||
fields: ['id', 'name']
|
||||
}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
relation: 'country',
|
||||
scope: {
|
||||
fields: ['id', 'country']
|
||||
}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
relation: 'payMethod',
|
||||
scope: {
|
||||
fields: ['id', 'name']
|
||||
}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
relation: 'account',
|
||||
scope: {
|
||||
fields: ['id', 'name', 'active']
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
let query = `SELECT vn.clientGetDebt(?, CURDATE()) AS debt`;
|
||||
client.debt = (await Self.rawSql(query, [id]))[0].debt;
|
||||
const query = `SELECT vn.clientGetDebt(?, CURDATE()) AS debt`;
|
||||
const data = await Self.rawSql(query, [id], myOptions);
|
||||
|
||||
client.debt = data[0].debt;
|
||||
|
||||
return client;
|
||||
};
|
||||
|
|
|
@ -19,9 +19,14 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getDebt = async clientFk => {
|
||||
let query = `SELECT vn.clientGetDebt(?, CURDATE()) AS debt`;
|
||||
let [debt] = await Self.rawSql(query, [clientFk]);
|
||||
Self.getDebt = async(clientFk, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `SELECT vn.clientGetDebt(?, CURDATE()) AS debt`;
|
||||
const [debt] = await Self.rawSql(query, [clientFk], myOptions);
|
||||
|
||||
return debt;
|
||||
};
|
||||
|
|
|
@ -19,9 +19,14 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getMana = async clientFk => {
|
||||
let query = `SELECT vn.clientGetMana(?) AS mana`;
|
||||
let [mana] = await Self.rawSql(query, [clientFk]);
|
||||
Self.getMana = async(clientFk, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `SELECT vn.clientGetMana(?) AS mana`;
|
||||
const [mana] = await Self.rawSql(query, [clientFk], myOptions);
|
||||
|
||||
return mana;
|
||||
};
|
||||
|
|
|
@ -7,12 +7,12 @@ module.exports = Self => {
|
|||
accessType: 'READ',
|
||||
accepts: [{
|
||||
arg: 'filter',
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
description: 'Filter defining where, order, offset, and limit - must be a JSON-encoded string',
|
||||
http: {source: 'query'}
|
||||
}],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -21,9 +21,14 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getTransactions = async filter => {
|
||||
let conn = Self.dataSource.connector;
|
||||
let stmt = new ParameterizedSQL(`
|
||||
Self.getTransactions = async(filter, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const conn = Self.dataSource.connector;
|
||||
const stmt = new ParameterizedSQL(`
|
||||
SELECT
|
||||
t.id,
|
||||
t.clientFk,
|
||||
|
@ -39,6 +44,6 @@ module.exports = Self => {
|
|||
|
||||
stmt.merge(conn.makeSuffix(filter, 't'));
|
||||
|
||||
return await Self.rawStmt(stmt);
|
||||
return Self.rawStmt(stmt, myOptions);
|
||||
};
|
||||
};
|
||||
|
|
|
@ -2,23 +2,13 @@ module.exports = Self => {
|
|||
Self.remoteMethod('hasCustomerRole', {
|
||||
description: 'Comprueba si un usuario tiene el rol de cliente',
|
||||
accessType: 'READ',
|
||||
accepts: [
|
||||
{
|
||||
accepts: [{
|
||||
arg: 'id',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'The user id',
|
||||
http: {source: 'path'}
|
||||
}, {
|
||||
arg: 'context',
|
||||
type: 'object',
|
||||
required: true,
|
||||
description: 'Filter defining where',
|
||||
http: function(context) {
|
||||
return context.req.query;
|
||||
}
|
||||
}
|
||||
],
|
||||
}],
|
||||
returns: {
|
||||
type: 'boolean',
|
||||
root: true
|
||||
|
@ -29,17 +19,19 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.hasCustomerRole = (id, context, callback) => {
|
||||
let query = `
|
||||
Self.hasCustomerRole = (id, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `
|
||||
SELECT COUNT(*) > 0 isCustomer
|
||||
FROM salix.Account A
|
||||
JOIN salix.Role r ON r.id = A.roleFK
|
||||
WHERE r.name = 'customer'
|
||||
AND A.id IN (?)`;
|
||||
|
||||
Self.rawSql(query, [id]).then(
|
||||
instances => callback(null, instances[0]),
|
||||
err => callback(err)
|
||||
);
|
||||
return Self.rawSql(query, [id], myOptions);
|
||||
};
|
||||
};
|
||||
|
|
|
@ -9,14 +9,6 @@ module.exports = Self => {
|
|||
required: true,
|
||||
description: 'The user id',
|
||||
http: {source: 'path'}
|
||||
}, {
|
||||
arg: 'context',
|
||||
type: 'object',
|
||||
required: true,
|
||||
description: 'Filter defining where',
|
||||
http: function(context) {
|
||||
return context.req.query;
|
||||
}
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
|
@ -29,8 +21,13 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.isValidClient = async id => {
|
||||
let query = `
|
||||
Self.isValidClient = async(id, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `
|
||||
SELECT r.name
|
||||
FROM salix.Account a
|
||||
JOIN vn.client c ON a.id = c.id
|
||||
|
@ -38,9 +35,9 @@ module.exports = Self => {
|
|||
JOIN salix.Role r ON r.id = rm.roleId
|
||||
WHERE a.id = ? AND c.isActive AND c.isTaxDataChecked`;
|
||||
|
||||
let roleNames = await Self.rawSql(query, [id]);
|
||||
const roleNames = await Self.rawSql(query, [id], myOptions);
|
||||
|
||||
let isEmployee = roleNames.findIndex(role => {
|
||||
const isEmployee = roleNames.findIndex(role => {
|
||||
return role.name === 'employee';
|
||||
});
|
||||
|
||||
|
|
|
@ -2,19 +2,22 @@ module.exports = Self => {
|
|||
Self.remoteMethod('lastActiveTickets', {
|
||||
description: 'Returns the last three active tickets of a client',
|
||||
accessType: 'READ',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'id',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
required: true,
|
||||
description: 'Client id',
|
||||
http: {source: 'path'}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'ticketId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
required: true
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -23,8 +26,13 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.lastActiveTickets = async(id, ticketId) => {
|
||||
const ticket = await Self.app.models.Ticket.findById(ticketId);
|
||||
Self.lastActiveTickets = async(id, ticketId, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const ticket = await Self.app.models.Ticket.findById(ticketId, null, myOptions);
|
||||
const query = `
|
||||
SELECT
|
||||
t.id,
|
||||
|
@ -47,7 +55,7 @@ module.exports = Self => {
|
|||
ORDER BY t.shipped
|
||||
LIMIT 10`;
|
||||
|
||||
return Self.rawSql(query, [id, ticketId, ticket.warehouseFk]);
|
||||
return Self.rawSql(query, [id, ticketId, ticket.warehouseFk], myOptions);
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -5,23 +5,23 @@ module.exports = Self => {
|
|||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
arg: 'id',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
required: true,
|
||||
description: 'The ticket id',
|
||||
http: {source: 'path'}
|
||||
},
|
||||
{
|
||||
arg: 'destination',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
arg: 'message',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
required: true,
|
||||
}],
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -30,11 +30,17 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.sendSms = async(ctx, id, destination, message) => {
|
||||
Self.sendSms = async(ctx, id, destination, message, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const userId = ctx.req.accessToken.userId;
|
||||
|
||||
let sms = await Self.app.models.Sms.send(ctx, id, destination, message);
|
||||
let logRecord = {
|
||||
const sms = await models.Sms.send(ctx, id, destination, message);
|
||||
const logRecord = {
|
||||
originFk: id,
|
||||
userFk: userId,
|
||||
action: 'insert',
|
||||
|
@ -48,7 +54,7 @@ module.exports = Self => {
|
|||
}
|
||||
};
|
||||
|
||||
const clientLog = await Self.app.models.ClientLog.create(logRecord);
|
||||
const clientLog = await models.ClientLog.create(logRecord, myOptions);
|
||||
|
||||
sms.logId = clientLog.id;
|
||||
|
||||
|
|
|
@ -1,40 +1,30 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client addressesPropagateRe', () => {
|
||||
let client;
|
||||
beforeEach(async() => {
|
||||
client = await app.models.Client.findById(1101);
|
||||
await app.models.Address.update({clientFk: 1101}, {isEqualizated: false});
|
||||
await client.updateAttributes({hasToInvoiceByAddress: true});
|
||||
});
|
||||
|
||||
afterAll(async done => {
|
||||
await app.models.Address.update({clientFk: 1101}, {isEqualizated: false});
|
||||
await client.updateAttributes({hasToInvoiceByAddress: true});
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('should propagate the isEqualizated on both addresses of Mr Wayne and set hasToInvoiceByAddress to false', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
let id = 1101;
|
||||
let data = {
|
||||
isEqualizated: true
|
||||
};
|
||||
|
||||
let resultAddress = await app.models.Address.find({where: {clientFk: id}});
|
||||
let resultClient = await app.models.Client.find({where: {id: id}});
|
||||
await models.Client.addressesPropagateRe(id, data, options);
|
||||
|
||||
expect(resultAddress[0].isEqualizated).toBeFalsy();
|
||||
expect(resultAddress[1].isEqualizated).toBeFalsy();
|
||||
expect(resultClient[0].hasToInvoiceByAddress).toBeTruthy();
|
||||
const addresses = await models.Address.find({where: {clientFk: id}}, options);
|
||||
const client = await models.Client.findById(id, null, options);
|
||||
|
||||
await app.models.Client.addressesPropagateRe(id, data);
|
||||
expect(addresses[0].isEqualizated).toBeTruthy();
|
||||
expect(addresses[1].isEqualizated).toBeTruthy();
|
||||
expect(client.hasToInvoiceByAddress).toBeFalsy();
|
||||
|
||||
resultAddress = await app.models.Address.find({where: {clientFk: id}});
|
||||
resultClient = await app.models.Client.find({where: {id: id}});
|
||||
|
||||
expect(resultAddress[0].isEqualizated).toBeTruthy();
|
||||
expect(resultAddress[1].isEqualizated).toBeTruthy();
|
||||
expect(resultClient[0].hasToInvoiceByAddress).toBeFalsy();
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
const LoopBackContext = require('loopback-context');
|
||||
|
||||
describe('client canBeInvoiced()', () => {
|
||||
|
@ -7,7 +7,6 @@ describe('client canBeInvoiced()', () => {
|
|||
const activeCtx = {
|
||||
accessToken: {userId: userId}
|
||||
};
|
||||
const models = app.models;
|
||||
|
||||
beforeAll(async done => {
|
||||
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||
|
@ -18,7 +17,7 @@ describe('client canBeInvoiced()', () => {
|
|||
});
|
||||
|
||||
it('should return falsy for a client without the data checked', async() => {
|
||||
const tx = await models.Ticket.beginTransaction({});
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
@ -37,7 +36,7 @@ describe('client canBeInvoiced()', () => {
|
|||
});
|
||||
|
||||
it('should return falsy for a client with invoicing disabled', async() => {
|
||||
const tx = await models.Ticket.beginTransaction({});
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
@ -56,8 +55,18 @@ describe('client canBeInvoiced()', () => {
|
|||
});
|
||||
|
||||
it('should return truthy for an invoiceable client', async() => {
|
||||
const canBeInvoiced = await models.Client.canBeInvoiced(clientId);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const canBeInvoiced = await models.Client.canBeInvoiced(clientId, options);
|
||||
|
||||
expect(canBeInvoiced).toEqual(true);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,17 +1,37 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client canCreateTicket', () => {
|
||||
it('should receive true if the client is active', async() => {
|
||||
let id = 1105;
|
||||
let canCreateTicket = await app.models.Client.canCreateTicket(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 1105;
|
||||
const canCreateTicket = await models.Client.canCreateTicket(id, null, options);
|
||||
|
||||
expect(canCreateTicket).toBeTruthy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it(`should receive false if the client isn't active`, async() => {
|
||||
let id = 1106;
|
||||
let canCreateTicket = await app.models.Client.canCreateTicket(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 1106;
|
||||
const canCreateTicket = await models.Client.canCreateTicket(id, null, options);
|
||||
|
||||
expect(canCreateTicket).toBe(false);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,24 +1,26 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client confirmTransaction', () => {
|
||||
it('should call confirmTransaction() method to mark transaction as confirmed', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
const transactionId = 2;
|
||||
|
||||
afterAll(async done => {
|
||||
await app.models.Client.rawSql(`
|
||||
CALL hedera.tpvTransaction_undo(?)`, [transactionId]);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('should call confirmTransaction() method to mark transaction as confirmed', async() => {
|
||||
let ctx = {req: {accessToken: {userId: 1}}};
|
||||
await app.models.Client.confirmTransaction(ctx, transactionId);
|
||||
await models.Client.confirmTransaction(ctx, transactionId, options);
|
||||
|
||||
let [receipt] = await app.models.Client.rawSql(
|
||||
let [receipt] = await models.Client.rawSql(
|
||||
`SELECT receiptFk
|
||||
FROM hedera.tpvTransaction
|
||||
WHERE id = ?`, [transactionId]);
|
||||
WHERE id = ?`, [transactionId], options);
|
||||
|
||||
expect(receipt.receiptFk).toBeGreaterThan(0);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('client consumption() filter', () => {
|
||||
it('should return a list of buyed items by ticket', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: 9}}, args: {}};
|
||||
const filter = {
|
||||
where: {
|
||||
|
@ -9,12 +14,22 @@ describe('client consumption() filter', () => {
|
|||
},
|
||||
order: 'itemTypeFk, itemName, itemSize'
|
||||
};
|
||||
const result = await app.models.Client.consumption(ctx, filter);
|
||||
const result = await app.models.Client.consumption(ctx, filter, options);
|
||||
|
||||
expect(result.length).toEqual(10);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a list of tickets grouped by item', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: 9}},
|
||||
args: {
|
||||
grouped: true
|
||||
|
@ -26,7 +41,7 @@ describe('client consumption() filter', () => {
|
|||
},
|
||||
order: 'itemFk'
|
||||
};
|
||||
const result = await app.models.Client.consumption(ctx, filter);
|
||||
const result = await app.models.Client.consumption(ctx, filter, options);
|
||||
|
||||
const firstRow = result[0];
|
||||
const secondRow = result[1];
|
||||
|
@ -36,9 +51,19 @@ describe('client consumption() filter', () => {
|
|||
expect(firstRow.quantity).toEqual(10);
|
||||
expect(secondRow.quantity).toEqual(15);
|
||||
expect(thirdRow.quantity).toEqual(20);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a list of tickets from the item id 4', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {req: {accessToken: {userId: 9}},
|
||||
args: {
|
||||
itemId: 4
|
||||
|
@ -50,11 +75,16 @@ describe('client consumption() filter', () => {
|
|||
},
|
||||
order: 'itemTypeFk, itemName, itemSize'
|
||||
};
|
||||
const result = await app.models.Client.consumption(ctx, filter);
|
||||
const result = await app.models.Client.consumption(ctx, filter, options);
|
||||
|
||||
const expectedItemId = 4;
|
||||
const firstRow = result[0];
|
||||
|
||||
expect(firstRow.itemFk).toEqual(expectedItemId);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Address createAddress', () => {
|
||||
const clientFk = 1101;
|
||||
|
@ -7,6 +7,13 @@ describe('Address createAddress', () => {
|
|||
const customAgentOneId = 1;
|
||||
|
||||
it('should throw a non uee member error if no incoterms is defined', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const expectedResult = 'My edited address';
|
||||
const ctx = {
|
||||
args: {
|
||||
|
@ -18,17 +25,26 @@ describe('Address createAddress', () => {
|
|||
}
|
||||
};
|
||||
|
||||
try {
|
||||
await app.models.Client.createAddress(ctx, clientFk);
|
||||
await models.Client.createAddress(ctx, clientFk, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
err = e;
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
expect(err).toBeDefined();
|
||||
expect(err.message).toEqual('Incoterms is required for a non UEE member');
|
||||
expect(error).toBeDefined();
|
||||
expect(error.message).toEqual('Incoterms is required for a non UEE member');
|
||||
});
|
||||
|
||||
it('should throw a non uee member error if no customsAgent is defined', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const expectedResult = 'My edited address';
|
||||
const ctx = {
|
||||
args: {
|
||||
|
@ -40,23 +56,24 @@ describe('Address createAddress', () => {
|
|||
}
|
||||
};
|
||||
|
||||
try {
|
||||
await app.models.Client.createAddress(ctx, clientFk);
|
||||
await models.Client.createAddress(ctx, clientFk, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
err = e;
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
expect(err).toBeDefined();
|
||||
expect(err.message).toEqual('Customs agent is required for a non UEE member');
|
||||
});
|
||||
|
||||
it('should verify that client defaultAddressFk is untainted', async() => {
|
||||
const client = await app.models.Client.findById(clientFk);
|
||||
|
||||
expect(client.defaultAddressFk).toEqual(1);
|
||||
expect(error).toBeDefined();
|
||||
expect(error.message).toEqual('Customs agent is required for a non UEE member');
|
||||
});
|
||||
|
||||
it('should create a new address and set as a client default address', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {
|
||||
args: {
|
||||
clientFk: 1101,
|
||||
|
@ -74,17 +91,23 @@ describe('Address createAddress', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const address = await app.models.Client.createAddress(ctx, clientFk);
|
||||
const client = await app.models.Client.findById(clientFk);
|
||||
const address = await models.Client.createAddress(ctx, clientFk, options);
|
||||
const client = await models.Client.findById(clientFk, null, options);
|
||||
|
||||
expect(client.defaultAddressFk).toEqual(address.id);
|
||||
|
||||
// restores
|
||||
await client.updateAttributes({defaultAddressFk: 1});
|
||||
await address.destroy();
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should create a new address and set all properties', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const ctx = {
|
||||
args: {
|
||||
clientFk: 1101,
|
||||
|
@ -102,12 +125,13 @@ describe('Address createAddress', () => {
|
|||
}
|
||||
};
|
||||
|
||||
address = await app.models.Client.createAddress(ctx, clientFk);
|
||||
address = await models.Client.createAddress(ctx, clientFk, options);
|
||||
|
||||
expect(address).toEqual(jasmine.objectContaining(ctx.args));
|
||||
// restores
|
||||
const client = await app.models.Client.findById(clientFk);
|
||||
await client.updateAttributes({defaultAddressFk: 1});
|
||||
await address.destroy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
const LoopBackContext = require('loopback-context');
|
||||
|
||||
describe('Client createReceipt', () => {
|
||||
|
@ -27,6 +27,11 @@ describe('Client createReceipt', () => {
|
|||
});
|
||||
|
||||
it('should create a new receipt', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const bankFk = 1;
|
||||
ctx.args = {
|
||||
clientFk: clientFk,
|
||||
|
@ -37,27 +42,26 @@ describe('Client createReceipt', () => {
|
|||
description: description
|
||||
};
|
||||
|
||||
const receipt = await app.models.Client.createReceipt(ctx);
|
||||
const receipt = await models.Client.createReceipt(ctx, options);
|
||||
delete ctx.args.payed;
|
||||
|
||||
const till = await app.models.Till.findOne({
|
||||
where: {
|
||||
bankFk: bankFk,
|
||||
in: amountPaid,
|
||||
number: clientFk
|
||||
}
|
||||
});
|
||||
|
||||
expect(receipt).toEqual(jasmine.objectContaining(ctx.args));
|
||||
|
||||
// restores
|
||||
await receipt.destroy();
|
||||
await till.destroy();
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should throw Compensation account is empty', async() => {
|
||||
const bankFk = 3;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const bankFk = 3;
|
||||
ctx.args = {
|
||||
clientFk: clientFk,
|
||||
payed: payed,
|
||||
|
@ -67,9 +71,11 @@ describe('Client createReceipt', () => {
|
|||
description: description
|
||||
};
|
||||
|
||||
try {
|
||||
await app.models.Client.createReceipt(ctx);
|
||||
await models.Client.createReceipt(ctx, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
|
@ -78,7 +84,13 @@ describe('Client createReceipt', () => {
|
|||
});
|
||||
|
||||
it('should throw Invalid account if compensationAccount does not belongs to a client nor a supplier', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const bankFk = 3;
|
||||
ctx.args = {
|
||||
clientFk: clientFk,
|
||||
|
@ -90,9 +102,11 @@ describe('Client createReceipt', () => {
|
|||
compensationAccount: 'non existing account'
|
||||
};
|
||||
|
||||
try {
|
||||
await app.models.Client.createReceipt(ctx);
|
||||
await models.Client.createReceipt(ctx, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
|
@ -101,6 +115,11 @@ describe('Client createReceipt', () => {
|
|||
});
|
||||
|
||||
it('should create a new receipt with a compensation for a client', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const bankFk = 3;
|
||||
|
||||
ctx.args = {
|
||||
|
@ -112,34 +131,31 @@ describe('Client createReceipt', () => {
|
|||
description: description,
|
||||
compensationAccount: '4300000001'
|
||||
};
|
||||
const receipt = await app.models.Client.createReceipt(ctx);
|
||||
const receiptCompensated = await app.models.Receipt.findOne({
|
||||
const receipt = await models.Client.createReceipt(ctx, options);
|
||||
const receiptCompensated = await models.Receipt.findOne({
|
||||
where: {
|
||||
clientFk: 1,
|
||||
bankFk: ctx.args.bankFk
|
||||
}
|
||||
});
|
||||
|
||||
const till = await app.models.Till.findOne({
|
||||
where: {
|
||||
bankFk: bankFk,
|
||||
in: amountPaid,
|
||||
number: clientFk
|
||||
}
|
||||
});
|
||||
}, options);
|
||||
|
||||
delete ctx.args.payed;
|
||||
|
||||
expect(receipt).toEqual(jasmine.objectContaining(ctx.args));
|
||||
expect(receipt.amountPaid).toEqual(-receiptCompensated.amountPaid);
|
||||
|
||||
// restores
|
||||
await receipt.destroy();
|
||||
await receiptCompensated.destroy();
|
||||
await till.destroy();
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should create a new receipt with a compensation for a supplier', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const bankFk = 3;
|
||||
|
||||
ctx.args = {
|
||||
|
@ -151,24 +167,16 @@ describe('Client createReceipt', () => {
|
|||
description: description,
|
||||
compensationAccount: '4100000001'
|
||||
};
|
||||
const receipt = await app.models.Client.createReceipt(ctx);
|
||||
const receipt = await models.Client.createReceipt(ctx, options);
|
||||
|
||||
const paymentCompensated = await app.models.Payment.findOne({
|
||||
const paymentCompensated = await models.Payment.findOne({
|
||||
where: {
|
||||
clientFk: ctx.args.sale,
|
||||
payed: ctx.args.payed,
|
||||
amountPaid: ctx.args.amountPaid,
|
||||
bankFk: ctx.args.bankFk
|
||||
}
|
||||
});
|
||||
|
||||
const till = await app.models.Till.findOne({
|
||||
where: {
|
||||
bankFk: ctx.args.bankFk,
|
||||
in: amountPaid,
|
||||
number: clientFk
|
||||
}
|
||||
});
|
||||
}, options);
|
||||
|
||||
delete ctx.args.payed;
|
||||
|
||||
|
@ -176,9 +184,9 @@ describe('Client createReceipt', () => {
|
|||
|
||||
expect(paymentCompensated.amountPaid).toEqual(paymentCompensated.amountPaid);
|
||||
|
||||
// restores
|
||||
await receipt.destroy();
|
||||
await paymentCompensated.destroy();
|
||||
await till.destroy();
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,28 +1,7 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client Create', () => {
|
||||
const clientName = 'Wade';
|
||||
const AccountName = 'Deadpool';
|
||||
|
||||
afterEach(async done => {
|
||||
let address = await app.models.Address.findOne({where: {nickname: clientName}});
|
||||
let client = await app.models.Client.findOne({where: {name: clientName}});
|
||||
let account = await app.models.Account.findOne({where: {name: AccountName}});
|
||||
|
||||
if (address && client && account) {
|
||||
try {
|
||||
await app.models.Address.destroyById(address.id);
|
||||
await app.models.Client.destroyById(client.id);
|
||||
await app.models.Account.destroyById(account.id);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
let newAccount = {
|
||||
const newAccount = {
|
||||
userName: 'Deadpool',
|
||||
email: 'Deadpool@marvel.com',
|
||||
fi: '16195279J',
|
||||
|
@ -33,34 +12,66 @@ describe('Client Create', () => {
|
|||
};
|
||||
|
||||
it(`should not find Deadpool as he's not created yet`, async() => {
|
||||
let account = await app.models.Account.findOne({where: {name: newAccount.userName}});
|
||||
let client = await app.models.Client.findOne({where: {name: newAccount.name}});
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const account = await models.Account.findOne({where: {name: newAccount.userName}}, options);
|
||||
const client = await models.Client.findOne({where: {name: newAccount.name}}, options);
|
||||
|
||||
expect(account).toEqual(null);
|
||||
expect(client).toEqual(null);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should create a new account', async() => {
|
||||
let client = await app.models.Client.createWithUser(newAccount);
|
||||
let account = await app.models.Account.findOne({where: {name: newAccount.userName}});
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const client = await models.Client.createWithUser(newAccount, options);
|
||||
const account = await models.Account.findOne({where: {name: newAccount.userName}}, options);
|
||||
|
||||
expect(account.name).toEqual(newAccount.userName);
|
||||
|
||||
expect(client.id).toEqual(account.id);
|
||||
expect(client.name).toEqual(newAccount.name);
|
||||
expect(client.email).toEqual(newAccount.email);
|
||||
expect(client.fi).toEqual(newAccount.fi);
|
||||
expect(client.socialName).toEqual(newAccount.socialName);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should not be able to create a user if exists', async() => {
|
||||
await app.models.Client.createWithUser(newAccount);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
let client = await app.models.Client.createWithUser(newAccount);
|
||||
const options = {transaction: tx};
|
||||
|
||||
await models.Client.createWithUser(newAccount, options);
|
||||
const client = await models.Client.createWithUser(newAccount, options);
|
||||
|
||||
expect(client).toBeNull();
|
||||
} catch (err) {
|
||||
expect(err.details.codes.name[0]).toEqual('uniqueness');
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
const errorName = error.details.codes.name[0];
|
||||
|
||||
expect(errorName).toEqual('uniqueness');
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('client getAverageInvoiced()', () => {
|
||||
it('should call the getAverageInvoiced method', async() => {
|
||||
const {invoiced} = await app.models.Client.getAverageInvoiced(1101);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const {invoiced} = await models.Client.getAverageInvoiced(1101, options);
|
||||
|
||||
expect(invoiced).toEqual(1500);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,12 +1,22 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client getCard()', () => {
|
||||
it('should receive a formated card of Bruce Wayne', async() => {
|
||||
let id = 1101;
|
||||
let result = await app.models.Client.getCard(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 1101;
|
||||
const result = await models.Client.getCard(id, options);
|
||||
|
||||
expect(result.id).toEqual(id);
|
||||
expect(result.name).toEqual('Bruce Wayne');
|
||||
expect(result.debt).toEqual(jasmine.any(Number));
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,10 +1,20 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('client getDebt()', () => {
|
||||
it('should return the client debt', async() => {
|
||||
let result = await app.models.Client.getDebt(1101);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.getDebt(1101, options);
|
||||
|
||||
expect(result.debt).toEqual(jasmine.any(Number));
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('client getMana()', () => {
|
||||
it('should call the getMana method', async() => {
|
||||
let result = await app.models.Client.getMana(1105);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.getMana(1105, options);
|
||||
|
||||
expect(result.mana).toEqual(0.34);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,10 +1,20 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client getTransations', () => {
|
||||
it('should call getTransations() method to receive a list of Web Payments from Bruce Wayne', async() => {
|
||||
let filter = {where: {clientFk: 1101}};
|
||||
let result = await app.models.Client.getTransactions(filter);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const filter = {where: {clientFk: 1101}};
|
||||
const result = await models.Client.getTransactions(filter, options);
|
||||
|
||||
expect(result[1].id).toBeTruthy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,59 +1,74 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client hasCustomerRole', () => {
|
||||
it('should call the hasCustomerRole() method with a customer id', done => {
|
||||
let id = 1101;
|
||||
let params = {};
|
||||
it('should call the hasCustomerRole() method with a customer id', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let callback = (error, result) => {
|
||||
if (error) return done.fail(error);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 1101;
|
||||
|
||||
const [result] = await models.Client.hasCustomerRole(id, options);
|
||||
|
||||
expect(result).toEqual(jasmine.objectContaining({isCustomer: 1}));
|
||||
done();
|
||||
};
|
||||
|
||||
app.models.Client.hasCustomerRole(id, params, callback);
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the hasCustomerRole() method with a non customer id', done => {
|
||||
let id = 8;
|
||||
let params = {};
|
||||
it('should call the hasCustomerRole() method with a non customer id', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let callback = (error, result) => {
|
||||
if (error) return done.fail(error);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 8;
|
||||
const [result] = await models.Client.hasCustomerRole(id, options);
|
||||
|
||||
expect(result).toEqual(jasmine.objectContaining({isCustomer: 0}));
|
||||
done();
|
||||
};
|
||||
|
||||
app.models.Client.hasCustomerRole(id, params, callback);
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the hasCustomerRole() method with an unreal id', done => {
|
||||
let id = 999;
|
||||
let params = {};
|
||||
it('should call the hasCustomerRole() method with an unreal id', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let callback = (error, result) => {
|
||||
if (error) return done.fail(error);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 999;
|
||||
|
||||
const [result] = await models.Client.hasCustomerRole(id, options);
|
||||
|
||||
expect(result).toEqual(jasmine.objectContaining({isCustomer: 0}));
|
||||
done();
|
||||
};
|
||||
|
||||
app.models.Client.hasCustomerRole(id, params, callback);
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the hasCustomerRole() method with an invalid id', done => {
|
||||
let id = 'WRONG!';
|
||||
let params = {};
|
||||
it('should call the hasCustomerRole() method with an invalid id', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let callback = (error, result) => {
|
||||
if (error) return done.fail(error);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 'WRONG!';
|
||||
|
||||
const [result] = await models.Client.hasCustomerRole(id, options);
|
||||
|
||||
expect(result).toEqual(jasmine.objectContaining({isCustomer: 0}));
|
||||
done();
|
||||
};
|
||||
|
||||
app.models.Client.hasCustomerRole(id, params, callback);
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,45 +1,105 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client isValidClient', () => {
|
||||
it('should call the isValidClient() method with a client id and receive true', async() => {
|
||||
let id = 1101;
|
||||
let result = await app.models.Client.isValidClient(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 1101;
|
||||
const result = await models.Client.isValidClient(id, options);
|
||||
|
||||
expect(result).toBeTruthy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the isValidClient() method with an employee id to receive false', async() => {
|
||||
let id = 1;
|
||||
let result = await app.models.Client.isValidClient(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 1;
|
||||
const result = await models.Client.isValidClient(id, options);
|
||||
|
||||
expect(result).toBeFalsy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the isValidClient() method with an unexistant id and receive false', async() => {
|
||||
let id = 999;
|
||||
let result = await app.models.Client.isValidClient(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 999;
|
||||
const result = await models.Client.isValidClient(id, options);
|
||||
|
||||
expect(result).toBeFalsy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the isValidClient() method with an invalid id and receive false', async() => {
|
||||
let id = 'Pepinillos';
|
||||
let result = await app.models.Client.isValidClient(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = 'Pepinillos';
|
||||
const result = await models.Client.isValidClient(id, options);
|
||||
|
||||
expect(result).toBeFalsy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the isValidClient() method with a customer id which isnt active and return false', async() => {
|
||||
let id = '1106';
|
||||
let result = await app.models.Client.isValidClient(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = '1106';
|
||||
const result = await models.Client.isValidClient(id, options);
|
||||
|
||||
expect(result).toBeFalsy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should call the isValidClient() method with a customer id which his data isnt verified and return false', async() => {
|
||||
let id = '110';
|
||||
let result = await app.models.Client.isValidClient(id);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const id = '110';
|
||||
const result = await models.Client.isValidClient(id, options);
|
||||
|
||||
expect(result).toBeFalsy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client last active tickets', () => {
|
||||
it('should receive an array of last active tickets of Bruce Wayne', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ticketId = 22;
|
||||
const clientId = 1109;
|
||||
const warehouseId = 5;
|
||||
const result = await app.models.Client.lastActiveTickets(clientId, ticketId, warehouseId);
|
||||
|
||||
const result = await models.Client.lastActiveTickets(clientId, ticketId, options);
|
||||
|
||||
const length = result.length;
|
||||
const anyResult = result[Math.floor(Math.random() * Math.floor(length))];
|
||||
|
@ -14,5 +18,10 @@ describe('Client last active tickets', () => {
|
|||
|
||||
expect(properties.length).toEqual(9);
|
||||
expect(result.length).toEqual(3);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,29 +1,28 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
const soap = require('soap');
|
||||
|
||||
describe('client sendSms()', () => {
|
||||
let createdLog;
|
||||
|
||||
afterAll(async done => {
|
||||
await app.models.ClientLog.destroyById(createdLog.id);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('should now send a message and log it', async() => {
|
||||
spyOn(soap, 'createClientAsync').and.returnValue('a so fake client');
|
||||
let ctx = {req: {accessToken: {userId: 9}}};
|
||||
let id = 1101;
|
||||
let destination = 222222222;
|
||||
let message = 'this is the message created in a test';
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let sms = await app.models.Client.sendSms(ctx, id, destination, message);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {req: {accessToken: {userId: 9}}};
|
||||
const id = 1101;
|
||||
const destination = 222222222;
|
||||
const message = 'this is the message created in a test';
|
||||
|
||||
logId = sms.logId;
|
||||
const sms = await models.Client.sendSms(ctx, id, destination, message, options);
|
||||
|
||||
createdLog = await app.models.ClientLog.findById(logId);
|
||||
let json = JSON.parse(JSON.stringify(createdLog.newInstance));
|
||||
const createdLog = await models.ClientLog.findById(sms.logId);
|
||||
const json = JSON.parse(JSON.stringify(createdLog.newInstance));
|
||||
|
||||
expect(json.message).toEqual(message);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,46 +1,123 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('client summary()', () => {
|
||||
it('should return a summary object containing data', async() => {
|
||||
let result = await app.models.Client.summary(1101);
|
||||
const clientId = 1101;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
expect(result.id).toEqual(1101);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.id).toEqual(clientId);
|
||||
expect(result.name).toEqual('Bruce Wayne');
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a summary object containing mana', async() => {
|
||||
let result = await app.models.Client.summary(1105);
|
||||
const clientId = 1105;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.mana.mana).toEqual(0.34);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a summary object containing debt', async() => {
|
||||
let result = await app.models.Client.summary(1101);
|
||||
const clientId = 1101;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.debt.debt).toEqual(jasmine.any(Number));
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a summary object containing averageInvoiced', async() => {
|
||||
let result = await app.models.Client.summary(1101);
|
||||
const clientId = 1101;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.averageInvoiced.invoiced).toEqual(1500);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a summary object containing totalGreuge', async() => {
|
||||
let result = await app.models.Client.summary(1101);
|
||||
const clientId = 1101;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.totalGreuge).toEqual(203.71);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a summary object without containing active recoveries', async() => {
|
||||
let result = await app.models.Client.summary(1101);
|
||||
const clientId = 1101;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.recovery).toEqual(null);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return a summary object containing active recoveries', async() => {
|
||||
let result = await app.models.Client.summary(1102);
|
||||
const clientId = 1102;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const result = await models.Client.summary(clientId, options);
|
||||
|
||||
expect(result.recovery.id).toEqual(3);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
|
||||
describe('client lastActiveTickets()', () => {
|
||||
it('should return the last three active tickets', async() => {
|
||||
const clientId = 1109;
|
||||
const ticketId = 19;
|
||||
|
||||
let result = await app.models.Client.lastActiveTickets(clientId, ticketId);
|
||||
|
||||
expect(result.length).toEqual(3);
|
||||
});
|
||||
});
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Address updateAddress', () => {
|
||||
const clientId = 1101;
|
||||
|
@ -8,7 +8,12 @@ describe('Address updateAddress', () => {
|
|||
const customAgentOneId = 1;
|
||||
|
||||
it('should throw the non uee member error if no incoterms is defined', async() => {
|
||||
let err;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {
|
||||
args: {
|
||||
provinceFk: provinceId,
|
||||
|
@ -16,18 +21,25 @@ describe('Address updateAddress', () => {
|
|||
}
|
||||
};
|
||||
|
||||
try {
|
||||
await app.models.Client.updateAddress(ctx, clientId, addressId);
|
||||
await models.Client.updateAddress(ctx, clientId, addressId, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
err = e;
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
expect(err).toBeDefined();
|
||||
expect(err.message).toEqual('Incoterms is required for a non UEE member');
|
||||
expect(error).toBeDefined();
|
||||
expect(error.message).toEqual('Incoterms is required for a non UEE member');
|
||||
});
|
||||
|
||||
it('should throw a non uee member error if no customsAgent is defined', async() => {
|
||||
let err;
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {
|
||||
args: {
|
||||
provinceFk: provinceId,
|
||||
|
@ -35,18 +47,23 @@ describe('Address updateAddress', () => {
|
|||
}
|
||||
};
|
||||
|
||||
try {
|
||||
await app.models.Client.updateAddress(ctx, clientId, addressId);
|
||||
await models.Client.updateAddress(ctx, clientId, addressId, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
err = e;
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
expect(err).toBeDefined();
|
||||
expect(err.message).toEqual('Customs agent is required for a non UEE member');
|
||||
expect(error).toBeDefined();
|
||||
expect(error.message).toEqual('Customs agent is required for a non UEE member');
|
||||
});
|
||||
|
||||
it('should update the adress from a non uee member with no error thrown', async() => {
|
||||
const expectedResult = 'My edited address';
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {
|
||||
args: {
|
||||
provinceFk: provinceId,
|
||||
|
@ -55,46 +72,41 @@ describe('Address updateAddress', () => {
|
|||
customsAgentFk: customAgentOneId
|
||||
}
|
||||
};
|
||||
const expectedResult = 'My edited address';
|
||||
|
||||
let oldAddress = await app.models.Address.findById(addressId);
|
||||
await models.Client.updateAddress(ctx, clientId, addressId, options);
|
||||
|
||||
await app.models.Client.updateAddress(ctx, clientId, addressId);
|
||||
|
||||
let address = await app.models.Address.findById(addressId);
|
||||
const address = await models.Address.findById(addressId, null, options);
|
||||
|
||||
expect(address.nickname).toEqual(expectedResult);
|
||||
|
||||
// restores
|
||||
await address.updateAttributes({
|
||||
nickname: oldAddress.nickname,
|
||||
provinceFk: oldAddress.provinceFk,
|
||||
customsAgentFk: null,
|
||||
incotermsFk: null
|
||||
});
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should update the address', async() => {
|
||||
const expectedResult = 'My second time edited address';
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {
|
||||
args: {
|
||||
nickname: expectedResult
|
||||
}
|
||||
};
|
||||
const expectedResult = 'My second time edited address';
|
||||
|
||||
oldAddress = await app.models.Address.findById(addressId);
|
||||
await models.Client.updateAddress(ctx, clientId, addressId, options);
|
||||
|
||||
await app.models.Client.updateAddress(ctx, clientId, addressId);
|
||||
|
||||
address = await app.models.Address.findById(addressId);
|
||||
const address = await models.Address.findById(addressId, null, options);
|
||||
|
||||
expect(address.nickname).toEqual(expectedResult);
|
||||
|
||||
// restores
|
||||
await address.updateAttributes({
|
||||
nickname: oldAddress.nickname,
|
||||
provinceFk: oldAddress.provinceFk,
|
||||
customsAgentFk: null,
|
||||
incotermsFk: null
|
||||
});
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,61 +1,76 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client updateFiscalData', () => {
|
||||
const clientId = 1101;
|
||||
const employeeId = 1;
|
||||
const salesAssistantId = 21;
|
||||
const administrativeId = 5;
|
||||
afterAll(async done => {
|
||||
const ctx = {req: {accessToken: {userId: administrativeId}}};
|
||||
ctx.args = {postcode: 46460};
|
||||
|
||||
await app.models.Client.updateFiscalData(ctx, clientId);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('should return an error if the user is not salesAssistant and the isTaxDataChecked value is true', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {req: {accessToken: {userId: employeeId}}};
|
||||
ctx.args = {};
|
||||
|
||||
let error;
|
||||
await app.models.Client.updateFiscalData(ctx, clientId)
|
||||
.catch(e => {
|
||||
await models.Client.updateFiscalData(ctx, clientId, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
});
|
||||
}
|
||||
|
||||
expect(error.message).toEqual(`You can't make changes on a client with verified data`);
|
||||
});
|
||||
|
||||
it('should return an error if the salesAssistant did not fill the sage data before checking verified data', async() => {
|
||||
const client = await app.models.Client.findById(clientId);
|
||||
await client.updateAttribute('isTaxDataChecked', false);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const client = await models.Client.findById(clientId, options);
|
||||
await client.updateAttribute('isTaxDataChecked', false, options);
|
||||
|
||||
const ctx = {req: {accessToken: {userId: salesAssistantId}}};
|
||||
ctx.args = {isTaxDataChecked: true};
|
||||
|
||||
let error;
|
||||
await app.models.Client.updateFiscalData(ctx, clientId)
|
||||
.catch(e => {
|
||||
await models.Client.updateFiscalData(ctx, clientId, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
});
|
||||
}
|
||||
|
||||
expect(error.message).toEqual('You need to fill sage information before you check verified data');
|
||||
|
||||
// Restores
|
||||
await client.updateAttribute('isTaxDataChecked', true);
|
||||
});
|
||||
|
||||
it('should update the client fiscal data and return the count if changes made', async() => {
|
||||
it('should update the client fiscal data', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {req: {accessToken: {userId: administrativeId}}};
|
||||
ctx.args = {postcode: 46680};
|
||||
|
||||
const client = await app.models.Client.findById(clientId);
|
||||
const client = await models.Client.findById(clientId, null, options);
|
||||
|
||||
expect(client.postcode).toEqual('46460');
|
||||
|
||||
const result = await app.models.Client.updateFiscalData(ctx, clientId);
|
||||
const result = await models.Client.updateFiscalData(ctx, clientId, options);
|
||||
|
||||
expect(result.postcode).toEqual('46680');
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,19 +1,26 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client uploadFile()', () => {
|
||||
it(`should return an error for a user without enough privileges`, async() => {
|
||||
let clientId = 1101;
|
||||
let currentUserId = 1102;
|
||||
let paymentLawTypeId = 12;
|
||||
let ctx = {req: {accessToken: {userId: currentUserId}}, args: {dmsTypeId: paymentLawTypeId}};
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let error;
|
||||
await app.models.Client.uploadFile(ctx, clientId).catch(e => {
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const clientId = 1101;
|
||||
const currentUserId = 1102;
|
||||
const paymentLawTypeId = 12;
|
||||
const ctx = {req: {accessToken: {userId: currentUserId}}, args: {dmsTypeId: paymentLawTypeId}};
|
||||
|
||||
await models.Client.uploadFile(ctx, clientId, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}).finally(() => {
|
||||
}
|
||||
|
||||
expect(error.message).toEqual(`You don't have enough privileges`);
|
||||
});
|
||||
|
||||
expect(error).toBeDefined();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -19,21 +19,26 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.summary = async clientFk => {
|
||||
let models = Self.app.models;
|
||||
let summaryObj = await getSummary(models.Client, clientFk);
|
||||
Self.summary = async(clientFk, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
summaryObj.mana = await models.Client.getMana(clientFk);
|
||||
summaryObj.debt = await models.Client.getDebt(clientFk);
|
||||
summaryObj.averageInvoiced = await models.Client.getAverageInvoiced(clientFk);
|
||||
summaryObj.totalGreuge = await models.Greuge.sumAmount(clientFk);
|
||||
summaryObj.recovery = await getRecoveries(models.Recovery, clientFk);
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const summaryObj = await getSummary(models.Client, clientFk, myOptions);
|
||||
|
||||
summaryObj.mana = await models.Client.getMana(clientFk, myOptions);
|
||||
summaryObj.debt = await models.Client.getDebt(clientFk, myOptions);
|
||||
summaryObj.averageInvoiced = await models.Client.getAverageInvoiced(clientFk, myOptions);
|
||||
summaryObj.totalGreuge = await models.Greuge.sumAmount(clientFk, myOptions);
|
||||
summaryObj.recovery = await getRecoveries(models.Recovery, clientFk, myOptions);
|
||||
|
||||
return summaryObj;
|
||||
};
|
||||
|
||||
async function getSummary(client, clientId) {
|
||||
let filter = {
|
||||
async function getSummary(clientModel, clientId, options) {
|
||||
const filter = {
|
||||
include: [
|
||||
{
|
||||
relation: 'account',
|
||||
|
@ -115,17 +120,17 @@ module.exports = Self => {
|
|||
where: {id: clientId}
|
||||
};
|
||||
|
||||
return await client.findOne(filter);
|
||||
return clientModel.findOne(filter, options);
|
||||
}
|
||||
|
||||
async function getRecoveries(recovery, clientId) {
|
||||
let filter = {
|
||||
async function getRecoveries(recoveryModel, clientId, options) {
|
||||
const filter = {
|
||||
where: {
|
||||
and: [{clientFk: clientId}, {or: [{finished: null}, {finished: {gt: Date.now()}}]}]
|
||||
},
|
||||
limit: 1
|
||||
};
|
||||
|
||||
return await recovery.findOne(filter);
|
||||
return recoveryModel.findOne(filter, options);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -3,7 +3,8 @@ const UserError = require('vn-loopback/util/user-error');
|
|||
module.exports = function(Self) {
|
||||
Self.remoteMethod('updateAddress', {
|
||||
description: 'Updates a client address updating default address',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'ctx',
|
||||
type: 'object',
|
||||
http: {source: 'context'}
|
||||
|
@ -67,7 +68,8 @@ module.exports = function(Self) {
|
|||
{
|
||||
arg: 'isEqualizated',
|
||||
type: 'boolean'
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
root: true,
|
||||
type: 'object'
|
||||
|
@ -78,42 +80,44 @@ module.exports = function(Self) {
|
|||
}
|
||||
});
|
||||
|
||||
Self.updateAddress = async(ctx, clientId, addressId) => {
|
||||
Self.updateAddress = async(ctx, clientId, addressId, options) => {
|
||||
const models = Self.app.models;
|
||||
const args = ctx.args;
|
||||
const tx = await models.Address.beginTransaction({});
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const address = await models.Address.findOne({
|
||||
where: {
|
||||
id: addressId,
|
||||
clientFk: clientId
|
||||
}
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
const provinceId = args.provinceFk || address.provinceFk;
|
||||
if (provinceId) {
|
||||
const province = await models.Province.findById(provinceId, {
|
||||
include: {
|
||||
relation: 'country'
|
||||
}
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
const isUeeMember = province.country().isUeeMember;
|
||||
const incotermsId = args.incotermsFk || address.incotermsFk;
|
||||
|
||||
if (!isUeeMember && !incotermsId)
|
||||
throw new UserError(`Incoterms is required for a non UEE member`);
|
||||
|
||||
const customsAgentId = args.customsAgentFk || address.customsAgentFk;
|
||||
if (!isUeeMember && !customsAgentId)
|
||||
throw new UserError(`Customs agent is required for a non UEE member`);
|
||||
}
|
||||
|
||||
delete args.ctx; // Remove unwanted properties
|
||||
const updatedAddress = await address.updateAttributes(ctx.args, options);
|
||||
|
||||
await tx.commit();
|
||||
const updatedAddress = await address.updateAttributes(ctx.args, myOptions);
|
||||
|
||||
return updatedAddress;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
|
@ -4,14 +4,15 @@ module.exports = Self => {
|
|||
Self.remoteMethod('updateFiscalData', {
|
||||
description: 'Updates fiscal data of a client',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'ctx',
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
http: {source: 'context'}
|
||||
},
|
||||
{
|
||||
arg: 'id',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The client id',
|
||||
http: {source: 'path'}
|
||||
},
|
||||
|
@ -94,7 +95,8 @@ module.exports = Self => {
|
|||
{
|
||||
arg: 'despiteOfClient',
|
||||
type: 'number'
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
arg: 'res',
|
||||
type: 'string',
|
||||
|
@ -106,14 +108,25 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.updateFiscalData = async(ctx, clientId) => {
|
||||
Self.updateFiscalData = async(ctx, clientId, options) => {
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
const models = Self.app.models;
|
||||
const args = ctx.args;
|
||||
const userId = ctx.req.accessToken.userId;
|
||||
const isSalesAssistant = await models.Account.hasRole(userId, 'salesAssistant');
|
||||
const $t = ctx.req.__;
|
||||
|
||||
const client = await models.Client.findById(clientId);
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
const isSalesAssistant = await models.Account.hasRole(userId, 'salesAssistant', myOptions);
|
||||
const client = await models.Client.findById(clientId, null, myOptions);
|
||||
|
||||
if (!isSalesAssistant && client.isTaxDataChecked)
|
||||
throw new UserError(`You can't make changes on a client with verified data`);
|
||||
|
@ -139,13 +152,21 @@ module.exports = Self => {
|
|||
})
|
||||
};
|
||||
|
||||
await models.ClientLog.create(logRecord);
|
||||
await models.ClientLog.create(logRecord, myOptions);
|
||||
}
|
||||
|
||||
// Remove unwanted properties
|
||||
delete args.ctx;
|
||||
delete args.id;
|
||||
|
||||
return client.updateAttributes(args);
|
||||
const updatedClient = await client.updateAttributes(args, myOptions);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return updatedClient;
|
||||
} catch (e) {
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
|
@ -2,42 +2,50 @@ module.exports = Self => {
|
|||
Self.remoteMethodCtx('uploadFile', {
|
||||
description: 'Upload and attach a file to a client',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'id',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The client id',
|
||||
http: {source: 'path'}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'warehouseId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The warehouse id',
|
||||
required: true
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'companyId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The company id',
|
||||
required: true
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'dmsTypeId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The dms type id',
|
||||
required: true
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'reference',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
required: true
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'description',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
required: true
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'hasFile',
|
||||
type: 'Boolean',
|
||||
type: 'boolean',
|
||||
description: 'True if has an attached file',
|
||||
required: true
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -46,31 +54,39 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.uploadFile = async(ctx, id) => {
|
||||
Self.uploadFile = async(ctx, id, options) => {
|
||||
const models = Self.app.models;
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
const promises = [];
|
||||
const tx = await Self.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const uploadedFiles = await models.Dms.uploadFile(ctx, options);
|
||||
const uploadedFiles = await models.Dms.uploadFile(ctx, myOptions);
|
||||
uploadedFiles.forEach(dms => {
|
||||
const newClientDms = models.ClientDms.create({
|
||||
clientFk: id,
|
||||
dmsFk: dms.id
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
promises.push(newClientDms);
|
||||
});
|
||||
const resolvedPromises = await Promise.all(promises);
|
||||
|
||||
await tx.commit();
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return resolvedPromises;
|
||||
} catch (err) {
|
||||
await tx.rollback();
|
||||
throw err;
|
||||
} catch (e) {
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,17 +1,13 @@
|
|||
module.exports = Self => {
|
||||
Self.remoteMethod('createWithInsurance', {
|
||||
description: 'Creates both classification and one insurance',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'data',
|
||||
type: 'object',
|
||||
http: {source: 'body'}
|
||||
}, {
|
||||
arg: 'context',
|
||||
type: 'object',
|
||||
http: function(ctx) {
|
||||
return ctx;
|
||||
}
|
||||
}],
|
||||
],
|
||||
returns: {
|
||||
root: true,
|
||||
type: 'boolean'
|
||||
|
@ -22,29 +18,36 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.createWithInsurance = async(data, ctx) => {
|
||||
const tx = await Self.beginTransaction({});
|
||||
Self.createWithInsurance = async(data, options) => {
|
||||
const models = Self.app.models;
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
let options = {transaction: tx};
|
||||
|
||||
const newClassification = await Self.create({
|
||||
client: data.clientFk,
|
||||
started: data.started
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
await models.CreditInsurance.create({
|
||||
creditClassification: newClassification.id,
|
||||
credit: data.credit,
|
||||
grade: data.grade
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
await tx.commit();
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return newClassification;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,64 +1,26 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const LoopBackContext = require('loopback-context');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Client createWithInsurance', () => {
|
||||
const activeCtx = {
|
||||
accessToken: {userId: 1101},
|
||||
http: {
|
||||
req: {
|
||||
headers: {origin: 'http://localhost'}
|
||||
}
|
||||
}
|
||||
};
|
||||
const ctx = {req: activeCtx};
|
||||
activeCtx.http.req.__ = value => {
|
||||
return value;
|
||||
};
|
||||
|
||||
it('should verify the classifications and insurances are untainted', async() => {
|
||||
let classifications = await app.models.CreditClassification.find();
|
||||
let insurances = await app.models.CreditInsurance.find();
|
||||
|
||||
expect(classifications.length).toEqual(5);
|
||||
expect(insurances.length).toEqual(3);
|
||||
});
|
||||
|
||||
it('should not create the insurance if couldnt create the classification', async() => {
|
||||
let error;
|
||||
let data = {clientFk: null, started: Date.now(), credit: 999, grade: 255};
|
||||
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||
active: activeCtx
|
||||
});
|
||||
await app.models.CreditClassification.createWithInsurance(data, ctx)
|
||||
.catch(e => {
|
||||
error = e;
|
||||
});
|
||||
|
||||
expect(error.toString()).toBe('Error: ER_BAD_NULL_ERROR: Column \'client\' cannot be null');
|
||||
|
||||
let classifications = await app.models.CreditClassification.find();
|
||||
let insurances = await app.models.CreditInsurance.find();
|
||||
|
||||
expect(classifications.length).toEqual(5);
|
||||
expect(insurances.length).toEqual(3);
|
||||
});
|
||||
|
||||
it('should create a new client credit classification with insurance', async() => {
|
||||
let data = {clientFk: 1101, started: Date.now(), credit: 999, grade: 255};
|
||||
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||
active: activeCtx
|
||||
});
|
||||
let result = await app.models.CreditClassification.createWithInsurance(data, ctx);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const data = {clientFk: 1101, started: Date.now(), credit: 999, grade: 255};
|
||||
|
||||
const result = await models.CreditClassification.createWithInsurance(data, options);
|
||||
|
||||
expect(result.client).toEqual(1101);
|
||||
|
||||
let classifications = await app.models.CreditClassification.find();
|
||||
let insurances = await app.models.CreditInsurance.find();
|
||||
const classifications = await models.CreditClassification.find();
|
||||
const insurances = await models.CreditInsurance.find();
|
||||
|
||||
expect(classifications.length).toEqual(6);
|
||||
expect(insurances.length).toEqual(4);
|
||||
|
||||
// restore
|
||||
await app.models.CreditClassification.destroyById(result.id);
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,14 +1,21 @@
|
|||
const totalGreuge = require('../sumAmount');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Greuge totalGreuge()', () => {
|
||||
it('should call the sumAmount method', async() => {
|
||||
let clientFk = 1;
|
||||
let self = jasmine.createSpyObj('self', ['remoteMethod', 'rawSql']);
|
||||
self.rawSql.and.returnValue(Promise.resolve([{sumAmount: 6000}]));
|
||||
totalGreuge(self);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
let result = await self.sumAmount(clientFk);
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const clientId = 1;
|
||||
|
||||
const result = await models.Client.sumAmount(clientId, options);
|
||||
|
||||
expect(result).toBe(6000);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -18,10 +18,15 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.sumAmount = async clientFk => {
|
||||
let query = `SELECT SUM(amount) AS sumAmount FROM vn.greuge WHERE clientFk = ?`;
|
||||
Self.sumAmount = async(clientFk, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `SELECT SUM(amount) AS sumAmount FROM vn.greuge WHERE clientFk = ?`;
|
||||
try {
|
||||
let [response] = await Self.rawSql(query, [clientFk]);
|
||||
const [response] = await Self.rawSql(query, [clientFk], myOptions);
|
||||
|
||||
return response ? response.sumAmount : 0;
|
||||
} catch (e) {
|
||||
|
|
|
@ -7,23 +7,25 @@ module.exports = Self => {
|
|||
accepts: [
|
||||
{
|
||||
arg: 'filter',
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
description: 'Filter defining where, order, offset, and limit - must be a JSON-encoded string',
|
||||
http: {source: 'query'}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'clientId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The client id',
|
||||
required: true,
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'companyId',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
description: 'The company id',
|
||||
required: true,
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -32,8 +34,13 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.filter = async(filter, clientId, companyId) => {
|
||||
let stmt = new ParameterizedSQL(
|
||||
Self.filter = async(filter, clientId, companyId, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const stmt = new ParameterizedSQL(
|
||||
`SELECT * FROM (
|
||||
SELECT
|
||||
r.id,
|
||||
|
@ -75,8 +82,8 @@ module.exports = Self => {
|
|||
JOIN vn.company c ON c.id = i.companyFk
|
||||
WHERE i.clientFk = ? AND i.companyFk = ?
|
||||
ORDER BY payed DESC, created DESC
|
||||
) t
|
||||
ORDER BY payed DESC, created DESC`, [
|
||||
) t ORDER BY payed DESC, created DESC`,
|
||||
[
|
||||
clientId,
|
||||
companyId,
|
||||
clientId,
|
||||
|
@ -85,6 +92,7 @@ module.exports = Self => {
|
|||
);
|
||||
|
||||
stmt.merge(Self.makeLimit(filter));
|
||||
return await Self.rawStmt(stmt);
|
||||
|
||||
return Self.rawStmt(stmt, myOptions);
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,12 +1,22 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('receipt filter()', () => {
|
||||
it('should return the receipts', async() => {
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const filter = {limit: 20};
|
||||
const clientId = 1101;
|
||||
const companyId = 442;
|
||||
let result = await app.models.Receipt.filter(filter, clientId, companyId);
|
||||
|
||||
const result = await models.Receipt.filter(filter, clientId, companyId, options);
|
||||
|
||||
expect(result.length).toBeGreaterThan(0);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -21,14 +21,20 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.hasActiveRecovery = async id => {
|
||||
let result = await Self.rawSql(
|
||||
`SELECT count(*) AS hasActiveRecovery
|
||||
Self.hasActiveRecovery = async(id, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `
|
||||
SELECT count(*) AS hasActiveRecovery
|
||||
FROM vn.recovery
|
||||
WHERE clientFk = ?
|
||||
AND IFNULL(finished,CURDATE()) >= CURDATE();`,
|
||||
[id]
|
||||
);
|
||||
return result[0].hasActiveRecovery != 0;
|
||||
AND IFNULL(finished,CURDATE()) >= CURDATE();
|
||||
`;
|
||||
const [result] = await Self.rawSql(query, [id], myOptions);
|
||||
|
||||
return result.hasActiveRecovery != 0;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,15 +1,35 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('client hasActiveRecovery', () => {
|
||||
it(`should return false if the client doesn't owes`, async() => {
|
||||
let hasActiveRecovery = await app.models.Recovery.hasActiveRecovery(1101);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const hasActiveRecovery = await models.Recovery.hasActiveRecovery(1101, options);
|
||||
|
||||
expect(hasActiveRecovery).toBeFalsy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
|
||||
it('should return true if the client owes', async() => {
|
||||
let hasActiveRecovery = await app.models.Recovery.hasActiveRecovery(1102);
|
||||
const tx = await models.Client.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
|
||||
const hasActiveRecovery = await models.Recovery.hasActiveRecovery(1102, options);
|
||||
|
||||
expect(hasActiveRecovery).toBeTruthy();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -6,22 +6,24 @@ module.exports = Self => {
|
|||
Self.remoteMethod('send', {
|
||||
description: 'Sends SMS to a destination phone',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'destinationFk',
|
||||
type: 'Integer'
|
||||
type: 'integer'
|
||||
},
|
||||
{
|
||||
arg: 'destination',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
arg: 'message',
|
||||
type: 'String',
|
||||
type: 'string',
|
||||
required: true,
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -82,6 +84,7 @@ module.exports = Self => {
|
|||
};
|
||||
|
||||
const sms = await Self.create(newSms);
|
||||
|
||||
if (statusCode != 200)
|
||||
throw new UserError(`We weren't able to send this SMS`);
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ module.exports = Self => {
|
|||
const model = models[modelName];
|
||||
|
||||
try {
|
||||
let promises = [];
|
||||
const promises = [];
|
||||
|
||||
const targets = lines.map(line => {
|
||||
return line[identifier];
|
||||
|
@ -78,7 +78,7 @@ module.exports = Self => {
|
|||
for (let target of targets)
|
||||
promises.push(model.upsertWithWhere({id: target}, value, myOptions));
|
||||
|
||||
const result = await Promise.all(promises, myOptions);
|
||||
const result = await Promise.all(promises);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('InvoiceIn filter()', () => {
|
||||
it('should return the invoice in matching supplier name', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -12,7 +12,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(5);
|
||||
expect(result[0].supplierName).toEqual('Plants SL');
|
||||
|
@ -25,7 +25,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice in matching supplier reference', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -35,7 +35,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].supplierRef).toEqual('1241');
|
||||
|
@ -48,7 +48,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice in matching the serial number', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -58,7 +58,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].serialNumber).toEqual(1002);
|
||||
|
@ -71,7 +71,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice in matching the account', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -81,7 +81,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(5);
|
||||
expect(result[0].account).toEqual('4000020002');
|
||||
|
@ -94,7 +94,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice in matching the awb code', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -104,7 +104,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
const firstRow = result[0];
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
|
@ -119,7 +119,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice in matching the amount', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -129,7 +129,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].amount).toEqual(64.23);
|
||||
|
@ -142,7 +142,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice in matching "from" and "to"', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -155,7 +155,7 @@ describe('InvoiceIn filter()', () => {
|
|||
args: {from, to}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(6);
|
||||
|
||||
|
@ -167,7 +167,7 @@ describe('InvoiceIn filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the booked invoice in', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -177,7 +177,7 @@ describe('InvoiceIn filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceIn.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceIn.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(6);
|
||||
expect(result[0].isBooked).toBeTruthy();
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('invoiceIn summary()', () => {
|
||||
it('should return a summary object containing data from one invoiceIn', async() => {
|
||||
const tx = await app.models.Entry.beginTransaction({});
|
||||
const tx = await models.InvoiceIn.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const summary = await app.models.InvoiceIn.summary(1, options);
|
||||
const summary = await models.InvoiceIn.summary(1, options);
|
||||
|
||||
expect(summary.supplierRef).toEqual('1234');
|
||||
expect(summary.totals).toEqual('1234');
|
||||
|
|
|
@ -22,7 +22,7 @@ module.exports = Self => {
|
|||
|
||||
Self.delete = async(id, options) => {
|
||||
let tx;
|
||||
let myOptions = {};
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
@ -42,7 +42,7 @@ module.exports = Self => {
|
|||
promises.push(ticket.updateAttribute('refFk', null, myOptions));
|
||||
});
|
||||
|
||||
await Promise.all(promises, myOptions);
|
||||
await Promise.all(promises);
|
||||
|
||||
await invoiceOut.destroy(myOptions);
|
||||
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('invoiceOut book()', () => {
|
||||
const invoiceOutId = 5;
|
||||
|
||||
it('should update the booked property', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const originalInvoiceOut = await app.models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
const originalInvoiceOut = await models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
const bookedDate = originalInvoiceOut.booked;
|
||||
const invoiceOutRef = originalInvoiceOut.ref;
|
||||
|
||||
await app.models.InvoiceOut.book(invoiceOutRef, options);
|
||||
await models.InvoiceOut.book(invoiceOutRef, options);
|
||||
|
||||
const updatedInvoiceOut = await app.models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
const updatedInvoiceOut = await models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
|
||||
expect(updatedInvoiceOut.booked).not.toEqual(bookedDate);
|
||||
expect(updatedInvoiceOut.hasPdf).toBeFalsy();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
const got = require('got');
|
||||
|
||||
describe('InvoiceOut createPdf()', () => {
|
||||
|
@ -19,7 +19,7 @@ describe('InvoiceOut createPdf()', () => {
|
|||
};
|
||||
spyOn(got, 'stream').and.returnValue(response);
|
||||
|
||||
let result = await app.models.InvoiceOut.createPdf(ctx, invoiceId);
|
||||
const result = await models.InvoiceOut.createPdf(ctx, invoiceId);
|
||||
|
||||
expect(result.hasPdf).toBe(true);
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
const LoopBackContext = require('loopback-context');
|
||||
|
||||
describe('invoiceOut delete()', () => {
|
||||
|
@ -9,12 +9,12 @@ describe('invoiceOut delete()', () => {
|
|||
};
|
||||
|
||||
it('should check that there is one ticket in the target invoiceOut', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const invoiceOut = await app.models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
const tickets = await app.models.Ticket.find({where: {refFk: invoiceOut.ref}}, options);
|
||||
const invoiceOut = await models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
const tickets = await models.Ticket.find({where: {refFk: invoiceOut.ref}}, options);
|
||||
|
||||
expect(tickets.length).toEqual(1);
|
||||
expect(tickets[0].id).toEqual(3);
|
||||
|
@ -27,7 +27,7 @@ describe('invoiceOut delete()', () => {
|
|||
});
|
||||
|
||||
it(`should delete the target invoiceOut then check the ticket doesn't have a refFk anymore`, async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -35,11 +35,11 @@ describe('invoiceOut delete()', () => {
|
|||
active: activeCtx
|
||||
});
|
||||
|
||||
await app.models.InvoiceOut.delete(invoiceOutId, options);
|
||||
await models.InvoiceOut.delete(invoiceOutId, options);
|
||||
|
||||
const originalTicket = await app.models.Ticket.findById(3, {}, options);
|
||||
const originalTicket = await models.Ticket.findById(3, {}, options);
|
||||
|
||||
const deletedInvoiceOut = await app.models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
const deletedInvoiceOut = await models.InvoiceOut.findById(invoiceOutId, {}, options);
|
||||
|
||||
expect(deletedInvoiceOut).toBeNull();
|
||||
expect(originalTicket.refFk).toBeNull();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('InvoiceOut download()', () => {
|
||||
it('should return the downloaded fine name', async() => {
|
||||
let result = await app.models.InvoiceOut.download(1);
|
||||
const result = await models.InvoiceOut.download(1);
|
||||
|
||||
expect(result[1]).toEqual('text/plain');
|
||||
expect(result[2]).toEqual('filename="README.md"');
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('InvoiceOut filter()', () => {
|
||||
let today = new Date();
|
||||
today.setHours(2, 0, 0, 0);
|
||||
|
||||
it('should return the invoice out matching ref', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -15,7 +15,7 @@ describe('InvoiceOut filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceOut.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceOut.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].ref).toEqual('T4444444');
|
||||
|
@ -28,7 +28,7 @@ describe('InvoiceOut filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice out matching clientFk', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -38,7 +38,7 @@ describe('InvoiceOut filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceOut.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceOut.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].ref).toEqual('T2222222');
|
||||
|
@ -51,7 +51,7 @@ describe('InvoiceOut filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice out matching hasPdf', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -61,7 +61,7 @@ describe('InvoiceOut filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceOut.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceOut.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(5);
|
||||
|
||||
|
@ -73,7 +73,7 @@ describe('InvoiceOut filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice out matching amount', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -83,7 +83,7 @@ describe('InvoiceOut filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await app.models.InvoiceOut.filter(ctx, {}, options);
|
||||
const result = await models.InvoiceOut.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].ref).toEqual('T2222222');
|
||||
|
@ -96,7 +96,7 @@ describe('InvoiceOut filter()', () => {
|
|||
});
|
||||
|
||||
it('should return the invoice out matching min and max', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -107,7 +107,7 @@ describe('InvoiceOut filter()', () => {
|
|||
}
|
||||
};
|
||||
|
||||
let result = await app.models.InvoiceOut.filter(ctx, {}, options);
|
||||
let result = await models.InvoiceOut.filter(ctx, {}, options);
|
||||
|
||||
expect(result.length).toEqual(3);
|
||||
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('entry getTickets()', () => {
|
||||
const invoiceOutId = 4;
|
||||
it('should get the ticket of an invoiceOut', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const result = await app.models.InvoiceOut.getTickets(invoiceOutId, {}, options);
|
||||
const result = await models.InvoiceOut.getTickets(invoiceOutId, {}, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('invoiceOut summary()', () => {
|
||||
it('should return a summary object containing data from one invoiceOut', async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const result = await app.models.InvoiceOut.summary(1, options);
|
||||
const result = await models.InvoiceOut.summary(1, options);
|
||||
|
||||
expect(result.invoiceOut.id).toEqual(1);
|
||||
|
||||
|
@ -18,11 +18,11 @@ describe('invoiceOut summary()', () => {
|
|||
});
|
||||
|
||||
it(`should return a summary object containing it's supplier country`, async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const summary = await app.models.InvoiceOut.summary(1, options);
|
||||
const summary = await models.InvoiceOut.summary(1, options);
|
||||
const supplier = summary.invoiceOut.supplier();
|
||||
|
||||
expect(summary.invoiceOut.ref).toEqual('T1111111');
|
||||
|
@ -37,11 +37,11 @@ describe('invoiceOut summary()', () => {
|
|||
});
|
||||
|
||||
it(`should return a summary object containing idata from it's tax types`, async() => {
|
||||
const tx = await app.models.InvoiceOut.beginTransaction({});
|
||||
const tx = await models.InvoiceOut.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const summary = await app.models.InvoiceOut.summary(1, options);
|
||||
const summary = await models.InvoiceOut.summary(1, options);
|
||||
|
||||
expect(summary.invoiceOut.ref).toEqual('T1111111');
|
||||
expect(summary.invoiceOut.taxesBreakdown.length).toEqual(2);
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
<vn-crud-model
|
||||
vn-id="ticketsModel"
|
||||
url="InvoiceOuts/{{$ctrl.$params.id}}/getTickets"
|
||||
limit="10"
|
||||
data="tickets"
|
||||
auto-load="true">
|
||||
data="tickets">
|
||||
</vn-crud-model>
|
||||
<vn-card class="summary">
|
||||
<h5>
|
||||
|
@ -56,7 +54,7 @@
|
|||
</vn-two>
|
||||
<vn-auto>
|
||||
<h4 translate>Ticket</h4>
|
||||
<vn-table model="model">
|
||||
<vn-table>
|
||||
<vn-thead>
|
||||
<vn-tr>
|
||||
<vn-th number>Ticket id</vn-th>
|
||||
|
|
|
@ -5,8 +5,10 @@ import './style.scss';
|
|||
class Controller extends Summary {
|
||||
set invoiceOut(value) {
|
||||
this._invoiceOut = value;
|
||||
if (value && value.id)
|
||||
if (value && value.id) {
|
||||
this.getSummary();
|
||||
this.getTickets();
|
||||
}
|
||||
}
|
||||
|
||||
get invoiceOut() {
|
||||
|
@ -17,6 +19,14 @@ class Controller extends Summary {
|
|||
return this.$http.get(`InvoiceOuts/${this.invoiceOut.id}/summary`)
|
||||
.then(res => this.summary = res.data);
|
||||
}
|
||||
|
||||
getTickets() {
|
||||
this.$.$applyAsync(() => {
|
||||
const query = `InvoiceOuts/${this.invoiceOut.id}/getTickets`;
|
||||
this.$.ticketsModel.url = query;
|
||||
this.$.ticketsModel.refresh();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
ngModule.vnComponent('vnInvoiceOutSummary', {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import './index.js';
|
||||
import crudModel from 'core/mocks/crud-model';
|
||||
|
||||
describe('InvoiceOut', () => {
|
||||
describe('Component summary', () => {
|
||||
|
@ -13,17 +14,30 @@ describe('InvoiceOut', () => {
|
|||
$scope = $rootScope.$new();
|
||||
const $element = angular.element('<vn-invoice-out-summary></vn-invoice-out-summary>');
|
||||
controller = $componentController('vnInvoiceOutSummary', {$element, $scope});
|
||||
controller.invoiceOut = {id: 1};
|
||||
controller._invoiceOut = {id: 1};
|
||||
controller.$.ticketsModel = crudModel;
|
||||
}));
|
||||
|
||||
describe('getSummary()', () => {
|
||||
it('should perform a query to set summary', () => {
|
||||
$httpBackend.when('GET', `InvoiceOuts/1/summary`).respond(200, 'the data you are looking for');
|
||||
$httpBackend.expect('GET', `InvoiceOuts/1/summary`).respond(200, 'the data you are looking for');
|
||||
controller.getSummary();
|
||||
$httpBackend.flush();
|
||||
|
||||
expect(controller.summary).toEqual('the data you are looking for');
|
||||
});
|
||||
});
|
||||
|
||||
describe('getTickets()', () => {
|
||||
it('should perform a and then call to the ticketModel refresh() method', () => {
|
||||
jest.spyOn(controller.$.ticketsModel, 'refresh');
|
||||
|
||||
controller.getTickets();
|
||||
$scope.$apply();
|
||||
|
||||
expect(controller.$.ticketsModel.url).toEqual('InvoiceOuts/1/getTickets');
|
||||
expect(controller.$.ticketsModel.refresh).toHaveBeenCalledWith();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -80,12 +80,12 @@ module.exports = Self => {
|
|||
},
|
||||
{
|
||||
arg: 'mine',
|
||||
type: 'Boolean',
|
||||
type: 'boolean',
|
||||
description: `Search requests attended by the current user`
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -94,9 +94,13 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.filter = async(ctx, filter) => {
|
||||
Self.filter = async(ctx, filter, options) => {
|
||||
const conn = Self.dataSource.connector;
|
||||
let userId = ctx.req.accessToken.userId;
|
||||
const userId = ctx.req.accessToken.userId;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (ctx.args.mine)
|
||||
ctx.args.buyerFk = userId;
|
||||
|
@ -128,10 +132,9 @@ module.exports = Self => {
|
|||
filter = mergeFilters(filter, {where});
|
||||
|
||||
const stmts = [];
|
||||
let stmt;
|
||||
|
||||
stmt = new ParameterizedSQL(
|
||||
`SELECT fp.id,
|
||||
const stmt = new ParameterizedSQL(`
|
||||
SELECT fp.id,
|
||||
fp.itemFk,
|
||||
fp.warehouseFk,
|
||||
fp.rate2,
|
||||
|
@ -156,8 +159,8 @@ module.exports = Self => {
|
|||
i.value10
|
||||
FROM priceFixed fp
|
||||
JOIN item i ON i.id = fp.itemFk
|
||||
JOIN itemType it ON it.id = i.typeFk`
|
||||
);
|
||||
JOIN itemType it ON it.id = i.typeFk
|
||||
`);
|
||||
|
||||
if (ctx.args.tags) {
|
||||
let i = 1;
|
||||
|
@ -186,7 +189,8 @@ module.exports = Self => {
|
|||
|
||||
const fixedPriceIndex = stmts.push(stmt) - 1;
|
||||
const sql = ParameterizedSQL.join(stmts, ';');
|
||||
const result = await conn.executeStmt(sql);
|
||||
const result = await conn.executeStmt(sql, myOptions);
|
||||
|
||||
return fixedPriceIndex === 0 ? result : result[fixedPriceIndex];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('fixed price filter()', () => {
|
||||
it('should return 1 result filtering by item ID', async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const itemID = 3;
|
||||
const ctx = {
|
||||
req: {accessToken: {userId: 1}},
|
||||
|
@ -9,14 +13,24 @@ describe('fixed price filter()', () => {
|
|||
search: itemID
|
||||
}
|
||||
};
|
||||
const result = await app.models.FixedPrice.filter(ctx);
|
||||
const result = await models.FixedPrice.filter(ctx, null, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].id).toEqual(2);
|
||||
expect(result[0].itemFk).toEqual(itemID);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should return 1 result filtering by item type code', async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const itemCode = 'CRI';
|
||||
const ctx = {
|
||||
req: {accessToken: {userId: 1}},
|
||||
|
@ -24,27 +38,37 @@ describe('fixed price filter()', () => {
|
|||
search: itemCode
|
||||
}
|
||||
};
|
||||
const itemType = await app.models.ItemType.findOne({
|
||||
const itemType = await models.ItemType.findOne({
|
||||
where: {code: itemCode},
|
||||
fields: ['id']
|
||||
});
|
||||
const items = await app.models.Item.find({
|
||||
}, options);
|
||||
const items = await models.Item.find({
|
||||
where: {typeFk: itemType.id},
|
||||
fields: ['id']
|
||||
});
|
||||
}, options);
|
||||
const IDs = items.map(item => {
|
||||
return item.id;
|
||||
});
|
||||
|
||||
const result = await app.models.FixedPrice.filter(ctx);
|
||||
const result = await models.FixedPrice.filter(ctx, null, options);
|
||||
const firstResult = result[0];
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(firstResult.id).toEqual(2);
|
||||
expect(IDs).toContain(firstResult.itemFk);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should return 2 results filtering by warehouse', async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const warehouseID = 1;
|
||||
const ctx = {
|
||||
req: {accessToken: {userId: 1}},
|
||||
|
@ -52,35 +76,61 @@ describe('fixed price filter()', () => {
|
|||
warehouseFk: warehouseID
|
||||
}
|
||||
};
|
||||
const result = await app.models.FixedPrice.filter(ctx);
|
||||
const result = await models.FixedPrice.filter(ctx, null, options);
|
||||
const length = result.length;
|
||||
const anyResult = result[Math.floor(Math.random() * Math.floor(length))];
|
||||
|
||||
expect(result.length).toEqual(2);
|
||||
expect(anyResult.warehouseFk).toEqual(warehouseID);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should return no results filtering by hasMinPrice', async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {
|
||||
req: {accessToken: {userId: 1}},
|
||||
args: {
|
||||
hasMinPrice: true
|
||||
}
|
||||
};
|
||||
const result = await app.models.FixedPrice.filter(ctx);
|
||||
const result = await models.FixedPrice.filter(ctx, null, options);
|
||||
|
||||
expect(result.length).toEqual(0);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should return no results filtering by typeFk', async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {
|
||||
req: {accessToken: {userId: 1}},
|
||||
args: {
|
||||
typeFk: 1
|
||||
}
|
||||
};
|
||||
const result = await app.models.FixedPrice.filter(ctx);
|
||||
const result = await models.FixedPrice.filter(ctx, null, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,22 +1,19 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('upsertFixedPrice()', () => {
|
||||
const now = new Date();
|
||||
const fixedPriceId = 1;
|
||||
let originalFixedPrice;
|
||||
let originalItem;
|
||||
|
||||
beforeAll(async() => {
|
||||
originalFixedPrice = await app.models.FixedPrice.findById(fixedPriceId);
|
||||
originalItem = await app.models.Item.findById(originalFixedPrice.itemFk);
|
||||
});
|
||||
|
||||
afterAll(async() => {
|
||||
await originalFixedPrice.save();
|
||||
await originalItem.save();
|
||||
originalFixedPrice = await models.FixedPrice.findById(fixedPriceId);
|
||||
});
|
||||
|
||||
it(`should toggle the hasMinPrice boolean if there's a minPrice and update the rest of the data`, async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {args: {
|
||||
id: fixedPriceId,
|
||||
itemFk: originalFixedPrice.itemFk,
|
||||
|
@ -29,16 +26,26 @@ describe('upsertFixedPrice()', () => {
|
|||
hasMinPrice: false
|
||||
}};
|
||||
|
||||
const result = await app.models.FixedPrice.upsertFixedPrice(ctx, ctx.args.id);
|
||||
const result = await models.FixedPrice.upsertFixedPrice(ctx, options);
|
||||
|
||||
delete ctx.args.started;
|
||||
delete ctx.args.ended;
|
||||
ctx.args.hasMinPrice = true;
|
||||
|
||||
expect(result).toEqual(jasmine.objectContaining(ctx.args));
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it(`should toggle the hasMinPrice boolean if there's no minPrice and update the rest of the data`, async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const ctx = {args: {
|
||||
id: fixedPriceId,
|
||||
itemFk: originalFixedPrice.itemFk,
|
||||
|
@ -51,12 +58,18 @@ describe('upsertFixedPrice()', () => {
|
|||
hasMinPrice: true
|
||||
}};
|
||||
|
||||
const result = await app.models.FixedPrice.upsertFixedPrice(ctx, ctx.args.id);
|
||||
const result = await models.FixedPrice.upsertFixedPrice(ctx, options);
|
||||
|
||||
delete ctx.args.started;
|
||||
delete ctx.args.ended;
|
||||
ctx.args.hasMinPrice = false;
|
||||
|
||||
expect(result).toEqual(jasmine.objectContaining(ctx.args));
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -2,7 +2,8 @@ module.exports = Self => {
|
|||
Self.remoteMethod('upsertFixedPrice', {
|
||||
description: 'Inserts or updates a fixed price for an item',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'ctx',
|
||||
type: 'object',
|
||||
http: {source: 'context'}
|
||||
|
@ -43,7 +44,8 @@ module.exports = Self => {
|
|||
{
|
||||
arg: 'hasMinPrice',
|
||||
type: 'any'
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: 'object',
|
||||
root: true
|
||||
|
@ -54,21 +56,29 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.upsertFixedPrice = async ctx => {
|
||||
Self.upsertFixedPrice = async(ctx, options) => {
|
||||
const models = Self.app.models;
|
||||
|
||||
const args = ctx.args;
|
||||
const tx = await models.Address.beginTransaction({});
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
delete args.ctx; // removed unwanted data
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
delete args.ctx; // removed unwanted data
|
||||
const fixedPrice = await models.FixedPrice.upsert(args, myOptions);
|
||||
const targetItem = await models.Item.findById(args.itemFk, null, myOptions);
|
||||
|
||||
const fixedPrice = await models.FixedPrice.upsert(args, options);
|
||||
const targetItem = await models.Item.findById(args.itemFk, null, options);
|
||||
await targetItem.updateAttributes({
|
||||
minPrice: args.minPrice,
|
||||
hasMinPrice: args.minPrice ? true : false
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
const itemFields = [
|
||||
'minPrice',
|
||||
|
@ -99,16 +109,17 @@ module.exports = Self => {
|
|||
}
|
||||
};
|
||||
|
||||
const result = await models.FixedPrice.findById(fixedPrice.id, filter, options);
|
||||
const result = await models.FixedPrice.findById(fixedPrice.id, filter, myOptions);
|
||||
const item = result.item();
|
||||
|
||||
for (let key of itemFields)
|
||||
result[key] = item[key];
|
||||
|
||||
await tx.commit();
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return result;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,10 +1,20 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('item-barcode toItem()', () => {
|
||||
it('should return the same number if there is a barcode and a item with the same ID', async() => {
|
||||
let barcode = 3;
|
||||
let result = await app.models.ItemBarcode.toItem(barcode);
|
||||
const tx = await models.Item.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const barcode = 3;
|
||||
const result = await models.ItemBarcode.toItem(barcode, options);
|
||||
|
||||
expect(result).toBe(3);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -4,12 +4,12 @@ module.exports = Self => {
|
|||
accessType: 'READ',
|
||||
accepts: [{
|
||||
arg: 'barcode',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
required: true,
|
||||
description: 'barcode'
|
||||
}],
|
||||
returns: {
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -18,11 +18,18 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.toItem = async barcode => {
|
||||
let query = `SELECT vn.barcodeToItem(?)`;
|
||||
let [item] = await Self.rawSql(query, [barcode]);
|
||||
Self.toItem = async(barcode, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const query = `SELECT vn.barcodeToItem(?)`;
|
||||
let [item] = await Self.rawSql(query, [barcode], myOptions);
|
||||
|
||||
if (item)
|
||||
item = Object.values(item);
|
||||
return item[0];
|
||||
item = Object.values(item)[0];
|
||||
|
||||
return item;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,7 +5,8 @@ module.exports = Self => {
|
|||
Self.remoteMethod('filterItemTags', {
|
||||
description: 'Returns the distinct values of a tag property',
|
||||
accessType: 'READ',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'tagFk',
|
||||
type: 'number',
|
||||
required: true,
|
||||
|
@ -13,9 +14,10 @@ module.exports = Self => {
|
|||
http: {source: 'path'}
|
||||
}, {
|
||||
arg: 'filter',
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
description: `Filter defining where, order, offset, and limit - must be a JSON-encoded string`
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
root: true,
|
||||
type: ['object']
|
||||
|
@ -26,16 +28,21 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.filterItemTags = async(tagFk, filter) => {
|
||||
let conn = Self.dataSource.connector;
|
||||
let where = {tagFk: tagFk};
|
||||
myFilter = mergeFilters(filter, {where});
|
||||
Self.filterItemTags = async(tagFk, filter, options) => {
|
||||
const conn = Self.dataSource.connector;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const where = {tagFk: tagFk};
|
||||
const myFilter = mergeFilters(filter, {where});
|
||||
|
||||
stmt = new ParameterizedSQL(
|
||||
`SELECT DISTINCT(value)
|
||||
FROM itemTag`);
|
||||
stmt.merge(conn.makeSuffix(myFilter));
|
||||
|
||||
return await conn.executeStmt(stmt);
|
||||
return conn.executeStmt(stmt, myOptions);
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('item filterItemTags()', () => {
|
||||
it('should filter ItemTags table', async() => {
|
||||
let [result] = await app.models.ItemTag.filterItemTags(1, {});
|
||||
const tx = await models.Item.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const [result] = await models.ItemTag.filterItemTags(1, null, options);
|
||||
|
||||
expect(result.value).toEqual('Black');
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -12,7 +12,7 @@ module.exports = Self => {
|
|||
http: {source: 'path'}
|
||||
}],
|
||||
returns: {
|
||||
type: 'Object',
|
||||
type: 'object',
|
||||
description: 'new cloned itemId',
|
||||
root: true,
|
||||
},
|
||||
|
@ -22,13 +22,21 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.clone = async itemId => {
|
||||
let tx = await Self.beginTransaction({});
|
||||
Self.clone = async(itemId, options) => {
|
||||
let tx;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
let options = {transaction: tx};
|
||||
const origin = await Self.findById(itemId, null, myOptions);
|
||||
|
||||
const origin = await Self.findById(itemId, null, options);
|
||||
if (!origin)
|
||||
throw new UserError(`This item doesn't exists`);
|
||||
|
||||
|
@ -38,16 +46,17 @@ module.exports = Self => {
|
|||
origin.comment = undefined;
|
||||
origin.size = undefined;
|
||||
|
||||
const newItem = await Self.create(origin, options);
|
||||
const newItem = await Self.create(origin, myOptions);
|
||||
|
||||
await cloneTaxes(origin.id, newItem.id, options);
|
||||
await cloneBotanical(origin.id, newItem.id, options);
|
||||
await cloneTags(origin.id, newItem.id, options);
|
||||
await cloneTaxes(origin.id, newItem.id, myOptions);
|
||||
await cloneBotanical(origin.id, newItem.id, myOptions);
|
||||
await cloneTags(origin.id, newItem.id, myOptions);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
await tx.commit();
|
||||
return newItem;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -2,7 +2,8 @@ module.exports = Self => {
|
|||
Self.remoteMethod('createIntrastat', {
|
||||
description: 'Creates a new item intrastat',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'id',
|
||||
type: 'number',
|
||||
required: true,
|
||||
|
@ -18,7 +19,8 @@ module.exports = Self => {
|
|||
arg: 'description',
|
||||
type: 'string',
|
||||
required: true
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: 'boolean',
|
||||
root: true
|
||||
|
@ -29,11 +31,16 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.createIntrastat = async(id, intrastatId, description) => {
|
||||
Self.createIntrastat = async(id, intrastatId, description, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const country = await models.Country.findOne({
|
||||
where: {code: 'ES'}
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
const itemTaxCountry = await models.ItemTaxCountry.findOne({
|
||||
where: {
|
||||
|
@ -41,19 +48,22 @@ module.exports = Self => {
|
|||
countryFk: country.id
|
||||
},
|
||||
order: 'effectived DESC'
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
const taxClassCode = await models.TaxClassCode.findOne({
|
||||
where: {
|
||||
taxClassFk: itemTaxCountry.taxClassFk
|
||||
},
|
||||
order: 'effectived DESC'
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
return models.Intrastat.create({
|
||||
const intrastat = await models.Intrastat.create({
|
||||
id: intrastatId,
|
||||
description: description,
|
||||
taxClassFk: itemTaxCountry.taxClassFk,
|
||||
taxCodeFk: taxClassCode.taxCodeFk
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
return intrastat;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -71,7 +71,7 @@ module.exports = Self => {
|
|||
|
||||
Self.filter = async(ctx, filter, options) => {
|
||||
const conn = Self.dataSource.connector;
|
||||
let myOptions = {};
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
@ -83,7 +83,9 @@ module.exports = Self => {
|
|||
where: {code: ctx.args.search},
|
||||
fields: ['itemFk']
|
||||
}, myOptions);
|
||||
|
||||
const itemIds = [];
|
||||
|
||||
for (const item of items)
|
||||
itemIds.push(item.itemFk);
|
||||
|
||||
|
@ -116,12 +118,11 @@ module.exports = Self => {
|
|||
return {'intr.description': value};
|
||||
}
|
||||
});
|
||||
|
||||
filter = mergeFilters(filter, {where});
|
||||
|
||||
const stmts = [];
|
||||
let stmt;
|
||||
|
||||
stmt = new ParameterizedSQL(
|
||||
const stmt = new ParameterizedSQL(
|
||||
`SELECT
|
||||
i.id,
|
||||
i.image,
|
||||
|
|
|
@ -19,9 +19,15 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getBalance = async filter => {
|
||||
Self.getBalance = async(filter, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const where = filter.where;
|
||||
let [diary] = await Self.rawSql(`CALL vn.item_getBalance(?, ?)`, [where.itemFk, where.warehouseFk]);
|
||||
const query = 'CALL vn.item_getBalance(?, ?)';
|
||||
const [diary] = await Self.rawSql(query, [where.itemFk, where.warehouseFk], myOptions);
|
||||
|
||||
for (const entry of diary)
|
||||
if (entry.clientType === 'loses') entry.highlighted = true;
|
||||
|
|
|
@ -19,12 +19,13 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getCard = async id => {
|
||||
let item = {};
|
||||
Self.getCard = async(id, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
// Item basic data
|
||||
let filter = {
|
||||
where: {id: id},
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const filter = {
|
||||
include: [
|
||||
{
|
||||
relation: 'itemType',
|
||||
|
@ -58,8 +59,8 @@ module.exports = Self => {
|
|||
}
|
||||
]
|
||||
};
|
||||
[item] = await Self.app.models.Item.find(filter);
|
||||
const item = await Self.app.models.Item.findById(id, filter, myOptions);
|
||||
|
||||
return item;
|
||||
return item ? item : {};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -19,14 +19,18 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getSummary = async(ctx, id) => {
|
||||
let promises = [];
|
||||
let summary = {};
|
||||
Self.getSummary = async(ctx, id, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const promises = [];
|
||||
const summary = {};
|
||||
|
||||
// Item basic data and taxes
|
||||
let filter = {
|
||||
where: {id: id},
|
||||
include: [
|
||||
{relation: 'itemType',
|
||||
scope: {
|
||||
|
@ -67,7 +71,7 @@ module.exports = Self => {
|
|||
}
|
||||
]
|
||||
};
|
||||
promises.push(models.Item.find(filter));
|
||||
promises.push(models.Item.findById(id, filter, myOptions));
|
||||
|
||||
// Tags
|
||||
filter = {
|
||||
|
@ -79,35 +83,36 @@ module.exports = Self => {
|
|||
relation: 'tag'
|
||||
}
|
||||
};
|
||||
promises.push(models.ItemTag.find(filter));
|
||||
promises.push(models.ItemTag.find(filter, myOptions));
|
||||
|
||||
// Botanical
|
||||
filter = {
|
||||
where: {itemFk: id},
|
||||
include: [{relation: 'genus'}, {relation: 'specie'}]
|
||||
};
|
||||
promises.push(models.ItemBotanical.find(filter));
|
||||
promises.push(models.ItemBotanical.find(filter, myOptions));
|
||||
|
||||
// Niches
|
||||
filter = {
|
||||
where: {itemFk: id},
|
||||
include: {relation: 'warehouse'}
|
||||
};
|
||||
promises.push(models.ItemNiche.find(filter));
|
||||
promises.push(models.ItemNiche.find(filter, myOptions));
|
||||
|
||||
let res = await Promise.all(promises);
|
||||
|
||||
[summary.item] = res[0];
|
||||
summary.item = res[0];
|
||||
summary.tags = res[1];
|
||||
[summary.botanical] = res[2];
|
||||
summary.niches = res[3];
|
||||
|
||||
const userConfig = await models.UserConfig.getUserConfig(ctx);
|
||||
const userConfig = await models.UserConfig.getUserConfig(ctx, myOptions);
|
||||
|
||||
res = await models.Item.getVisibleAvailable(summary.item.id, userConfig.warehouseFk);
|
||||
res = await models.Item.getVisibleAvailable(summary.item.id, userConfig.warehouseFk, null, myOptions);
|
||||
|
||||
summary.available = res.available;
|
||||
summary.visible = res.visible;
|
||||
|
||||
return summary;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,19 +5,20 @@ module.exports = Self => {
|
|||
accepts: [
|
||||
{
|
||||
arg: 'id',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
arg: 'warehouseFk',
|
||||
type: 'Number',
|
||||
type: 'number',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
arg: 'dated',
|
||||
type: 'Date',
|
||||
type: 'date',
|
||||
required: false,
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['object'],
|
||||
root: true
|
||||
|
@ -28,32 +29,43 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getVisibleAvailable = async(id, warehouseFk, dated = new Date()) => {
|
||||
let stmts = [];
|
||||
Self.getVisibleAvailable = async(id, warehouseFk, dated = new Date(), options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const stmts = [];
|
||||
|
||||
stmts.push(new ParameterizedSQL(
|
||||
'CALL cache.available_refresh(@availableCalc, FALSE, ?, ?)', [
|
||||
'CALL cache.available_refresh(@availableCalc, FALSE, ?, ?)',
|
||||
[
|
||||
warehouseFk,
|
||||
dated
|
||||
]
|
||||
],
|
||||
myOptions
|
||||
));
|
||||
|
||||
stmts.push(new ParameterizedSQL(
|
||||
'CALL cache.visible_refresh(@visibleCalc, FALSE,?)', [
|
||||
warehouseFk
|
||||
]
|
||||
));
|
||||
|
||||
const visibleIndex = stmts.push(new ParameterizedSQL(
|
||||
'SELECT visible FROM cache.visible WHERE calc_id = @visibleCalc AND item_id = ?', [
|
||||
id
|
||||
]
|
||||
'SELECT visible FROM cache.visible WHERE calc_id = @visibleCalc AND item_id = ?',
|
||||
[id],
|
||||
myOptions
|
||||
)) - 1;
|
||||
|
||||
const availableIndex = stmts.push(new ParameterizedSQL(
|
||||
'SELECT available FROM cache.available WHERE calc_id = @availableCalc AND item_id = ?', [
|
||||
id
|
||||
]
|
||||
'SELECT available FROM cache.available WHERE calc_id = @availableCalc AND item_id = ?',
|
||||
[id],
|
||||
myOptions
|
||||
)) - 1;
|
||||
|
||||
const sql = ParameterizedSQL.join(stmts, ';');
|
||||
let res = await Self.rawStmt(sql);
|
||||
const res = await Self.rawStmt(sql, myOptions);
|
||||
|
||||
return {
|
||||
available: res[availableIndex][0] ? res[availableIndex][0].available : 0,
|
||||
|
|
|
@ -17,7 +17,7 @@ module.exports = Self => {
|
|||
}
|
||||
],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -26,7 +26,12 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getWasteByItem = async(buyer, family) => {
|
||||
Self.getWasteByItem = async(buyer, family, options) => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const wastes = await Self.rawSql(`
|
||||
SELECT *, 100 * dwindle / total AS percentage
|
||||
FROM (
|
||||
|
@ -41,7 +46,7 @@ module.exports = Self => {
|
|||
AND week = WEEK(TIMESTAMPADD(WEEK,-1,CURDATE()), 1)
|
||||
GROUP BY buyer, itemFk
|
||||
) sub
|
||||
ORDER BY family, percentage DESC`, [buyer, family]);
|
||||
ORDER BY family, percentage DESC`, [buyer, family], myOptions);
|
||||
|
||||
const details = [];
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ module.exports = Self => {
|
|||
accessType: 'READ',
|
||||
accepts: [],
|
||||
returns: {
|
||||
type: ['Object'],
|
||||
type: ['object'],
|
||||
root: true
|
||||
},
|
||||
http: {
|
||||
|
@ -13,7 +13,12 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.getWasteByWorker = async() => {
|
||||
Self.getWasteByWorker = async options => {
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const wastes = await Self.rawSql(`
|
||||
SELECT *, 100 * dwindle / total AS percentage
|
||||
FROM (
|
||||
|
@ -26,7 +31,7 @@ module.exports = Self => {
|
|||
AND week = WEEK(TIMESTAMPADD(WEEK,-1,CURDATE()), 1)
|
||||
GROUP BY buyer, family
|
||||
) sub
|
||||
ORDER BY percentage DESC`);
|
||||
ORDER BY percentage DESC`, null, myOptions);
|
||||
|
||||
const details = [];
|
||||
|
||||
|
|
|
@ -21,8 +21,13 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.lastEntriesFilter = async filter => {
|
||||
Self.lastEntriesFilter = async(filter, options) => {
|
||||
const conn = Self.dataSource.connector;
|
||||
const myOptions = {};
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
const stmt = new ParameterizedSQL(
|
||||
`SELECT
|
||||
w.id AS warehouseFk,
|
||||
|
@ -64,6 +69,6 @@ module.exports = Self => {
|
|||
LEFT JOIN edi.ekt ek ON b.ektFk = ek.id`);
|
||||
stmt.merge(conn.makeSuffix(filter));
|
||||
|
||||
return conn.executeStmt(stmt);
|
||||
return conn.executeStmt(stmt, myOptions);
|
||||
};
|
||||
};
|
||||
|
|
|
@ -2,7 +2,7 @@ let UserError = require('vn-loopback/util/user-error');
|
|||
|
||||
module.exports = Self => {
|
||||
Self.remoteMethod('new', {
|
||||
description: 'Create a new item and returns the new ID',
|
||||
description: 'returns the created item',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
arg: 'params',
|
||||
|
@ -19,8 +19,20 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.new = async params => {
|
||||
let validUpdateParams = [
|
||||
Self.new = async(params, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
let tx;
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
const validUpdateParams = [
|
||||
'provisionalName',
|
||||
'typeFk',
|
||||
'intrastatFk',
|
||||
|
@ -33,20 +45,21 @@ module.exports = Self => {
|
|||
throw new UserError(`You don't have enough privileges to do that`);
|
||||
}
|
||||
|
||||
let tx = await Self.beginTransaction({});
|
||||
try {
|
||||
let options = {transaction: tx};
|
||||
|
||||
let provisionalName = params.provisionalName;
|
||||
const provisionalName = params.provisionalName;
|
||||
delete params.provisionalName;
|
||||
|
||||
let item = await Self.app.models.Item.create(params, options);
|
||||
const item = await models.Item.create(params, myOptions);
|
||||
|
||||
const typeTags = await models.ItemTypeTag.find({
|
||||
where: {itemTypeFk: item.typeFk}
|
||||
}, myOptions);
|
||||
|
||||
let typeTags = await Self.app.models.ItemTypeTag.find({where: {itemTypeFk: item.typeFk}});
|
||||
let query = `SET @isTriggerDisabled = TRUE`;
|
||||
await Self.rawSql(query, null, options);
|
||||
|
||||
let nameTag = await Self.app.models.Tag.findOne({where: {name: 'Nombre temporal'}});
|
||||
await Self.rawSql(query, null, myOptions);
|
||||
|
||||
let nameTag = await models.Tag.findOne({where: {name: 'Nombre temporal'}});
|
||||
|
||||
let newTags = [];
|
||||
|
||||
|
@ -55,17 +68,19 @@ module.exports = Self => {
|
|||
newTags.push({itemFk: item.id, tagFk: typeTag.tagFk, value: '', priority: typeTag.priority});
|
||||
});
|
||||
|
||||
await Self.app.models.ItemTag.create(newTags, options);
|
||||
await models.ItemTag.create(newTags, myOptions);
|
||||
|
||||
query = `SET @isTriggerDisabled = FALSE`;
|
||||
await Self.rawSql(query, null, options);
|
||||
await Self.rawSql(query, null, myOptions);
|
||||
|
||||
query = `CALL vn.itemRefreshTags(?)`;
|
||||
await Self.rawSql(query, [item.id], options);
|
||||
await tx.commit();
|
||||
await Self.rawSql(query, [item.id], myOptions);
|
||||
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return item;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -2,22 +2,26 @@ module.exports = Self => {
|
|||
Self.remoteMethodCtx('regularize', {
|
||||
description: 'Sends items to the trash',
|
||||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
accepts: [
|
||||
{
|
||||
arg: 'itemFk',
|
||||
type: 'number',
|
||||
required: true,
|
||||
description: 'The item id',
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'quantity',
|
||||
type: 'number',
|
||||
required: true,
|
||||
description: 'The visible quantity',
|
||||
}, {
|
||||
},
|
||||
{
|
||||
arg: 'warehouseFk',
|
||||
type: 'number',
|
||||
required: true,
|
||||
description: 'The id of the warehouse where the inventory happened',
|
||||
}],
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
type: 'boolean',
|
||||
root: true
|
||||
|
@ -28,9 +32,20 @@ module.exports = Self => {
|
|||
}
|
||||
});
|
||||
|
||||
Self.regularize = async(ctx, itemFk, quantity, warehouseFk) => {
|
||||
Self.regularize = async(ctx, itemFk, quantity, warehouseFk, options) => {
|
||||
const models = Self.app.models;
|
||||
const myOptions = {};
|
||||
let tx;
|
||||
|
||||
if (typeof options == 'object')
|
||||
Object.assign(myOptions, options);
|
||||
|
||||
if (!myOptions.transaction) {
|
||||
tx = await Self.beginTransaction({});
|
||||
myOptions.transaction = tx;
|
||||
}
|
||||
|
||||
try {
|
||||
const itemDestination = await models.ClaimDestination.findOne({
|
||||
include: {
|
||||
relation: 'address',
|
||||
|
@ -39,26 +54,22 @@ module.exports = Self => {
|
|||
}
|
||||
},
|
||||
where: {description: 'Corregido'}
|
||||
});
|
||||
}, myOptions);
|
||||
|
||||
let tx = await Self.beginTransaction({});
|
||||
try {
|
||||
let options = {transaction: tx};
|
||||
const item = await models.Item.findById(itemFk, null, myOptions);
|
||||
|
||||
let item = await models.Item.findById(itemFk);
|
||||
|
||||
let ticketFk = await getTicketId({
|
||||
let ticketId = await getTicketId({
|
||||
clientFk: itemDestination.address.clientFk,
|
||||
addressFk: itemDestination.addressFk,
|
||||
warehouseFk: warehouseFk
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
if (!ticketFk) {
|
||||
ticketFk = await createTicket(ctx, {
|
||||
if (!ticketId) {
|
||||
ticketId = await createTicket(ctx, {
|
||||
clientId: itemDestination.address().clientFk,
|
||||
warehouseId: warehouseFk,
|
||||
addressId: itemDestination.addressFk
|
||||
}, options);
|
||||
}, myOptions);
|
||||
}
|
||||
|
||||
res = await models.Item.getVisibleAvailable(itemFk, warehouseFk);
|
||||
|
@ -66,17 +77,18 @@ module.exports = Self => {
|
|||
let newQuantity = res.visible - quantity;
|
||||
|
||||
await models.Sale.create({
|
||||
ticketFk: ticketFk,
|
||||
ticketFk: ticketId,
|
||||
itemFk: itemFk,
|
||||
concept: item.name,
|
||||
quantity: newQuantity,
|
||||
discount: 100
|
||||
}, options);
|
||||
}, myOptions);
|
||||
|
||||
await tx.commit();
|
||||
return ticketFk;
|
||||
if (tx) await tx.commit();
|
||||
|
||||
return ticketId;
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
if (tx) await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('item clone()', () => {
|
||||
let nextItemId;
|
||||
|
@ -8,30 +8,47 @@ describe('item clone()', () => {
|
|||
LEFT JOIN vn.item i2 ON i1.id + 1 = i2.id
|
||||
WHERE i2.id IS NULL ORDER BY i1.id LIMIT 1`;
|
||||
|
||||
[nextAvailableId] = await app.models.Item.rawSql(query);
|
||||
[nextAvailableId] = await models.Item.rawSql(query);
|
||||
nextItemId = nextAvailableId.id;
|
||||
});
|
||||
|
||||
it('should clone the given item and it should have the expected id', async() => {
|
||||
let itemFk = 1;
|
||||
let result = await app.models.Item.clone(itemFk);
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const itemFk = 1;
|
||||
const result = await models.Item.clone(itemFk, options);
|
||||
|
||||
expect(result.id).toEqual(nextItemId);
|
||||
expect(result.image).toBeUndefined();
|
||||
expect(result.itemTag).toBeUndefined();
|
||||
expect(result.comment).toBeUndefined();
|
||||
expect(result.description).toBeUndefined();
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
|
||||
it('should attempt to clone the given item but give an error as it doesnt exist', async() => {
|
||||
let error;
|
||||
let itemFk = 999;
|
||||
await app.models.Item.clone(itemFk)
|
||||
.catch(e => {
|
||||
expect(e.message).toContain(`This item doesn't exists`);
|
||||
error = e;
|
||||
});
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
expect(error).toBeDefined();
|
||||
let error;
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const itemFk = 999;
|
||||
await models.Item.clone(itemFk, options);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
error = e;
|
||||
}
|
||||
|
||||
expect(error.message).toContain(`This item doesn't exists`);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,22 +1,25 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('createIntrastat()', () => {
|
||||
let newIntrastat;
|
||||
|
||||
afterAll(async done => {
|
||||
await app.models.Intrastat.destroyById(newIntrastat.id);
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
it('should create a new intrastat', async() => {
|
||||
const tx = await models.FixedPrice.beginTransaction({});
|
||||
|
||||
try {
|
||||
const options = {transaction: tx};
|
||||
const intrastatId = 588420239;
|
||||
const description = 'Tropical Flowers';
|
||||
const itemId = 9;
|
||||
newIntrastat = await app.models.Item.createIntrastat(itemId, intrastatId, description);
|
||||
|
||||
const newIntrastat = await models.Item.createIntrastat(itemId, intrastatId, description, options);
|
||||
|
||||
expect(newIntrastat.description).toEqual(description);
|
||||
expect(newIntrastat.taxClassFk).toEqual(1);
|
||||
expect(newIntrastat.taxCodeFk).toEqual(21);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
await tx.rollback();
|
||||
throw e;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
const app = require('vn-loopback/server/server');
|
||||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('item filter()', () => {
|
||||
it('should return 1 result filtering by id', async() => {
|
||||
const tx = await app.models.Item.beginTransaction({});
|
||||
const tx = await models.Item.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const filter = {};
|
||||
const ctx = {args: {filter: filter, search: 1}};
|
||||
const result = await app.models.Item.filter(ctx, filter, options);
|
||||
const result = await models.Item.filter(ctx, filter, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].id).toEqual(1);
|
||||
|
@ -21,13 +21,13 @@ describe('item filter()', () => {
|
|||
});
|
||||
|
||||
it('should return 1 result filtering by barcode', async() => {
|
||||
const tx = await app.models.Item.beginTransaction({});
|
||||
const tx = await models.Item.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
const filter = {};
|
||||
const ctx = {args: {filter: filter, search: 4444444444}};
|
||||
const result = await app.models.Item.filter(ctx, filter, options);
|
||||
const result = await models.Item.filter(ctx, filter, options);
|
||||
|
||||
expect(result.length).toEqual(1);
|
||||
expect(result[0].id).toEqual(2);
|
||||
|
@ -40,7 +40,7 @@ describe('item filter()', () => {
|
|||
});
|
||||
|
||||
it('should return 2 results using filter and tags', async() => {
|
||||
const tx = await app.models.Item.beginTransaction({});
|
||||
const tx = await models.Item.beginTransaction({});
|
||||
const options = {transaction: tx};
|
||||
|
||||
try {
|
||||
|
@ -50,7 +50,7 @@ describe('item filter()', () => {
|
|||
};
|
||||
const tags = [{value: 'medical box', tagFk: 58}];
|
||||
const ctx = {args: {filter: filter, typeFk: 5, tags: tags}};
|
||||
const result = await app.models.Item.filter(ctx, filter, options);
|
||||
const result = await models.Item.filter(ctx, filter, options);
|
||||
|
||||
expect(result.length).toEqual(2);
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue