2023-11-02 15:25:25 +00:00
|
|
|
module.exports = Self => {
|
2023-11-09 06:56:35 +00:00
|
|
|
Self.observe('after save', async ctx => {
|
2024-04-05 06:04:53 +00:00
|
|
|
console.log('entra en after save');
|
2023-06-22 06:56:27 +00:00
|
|
|
const instance = ctx.data || ctx.instance;
|
2023-05-10 11:22:53 +00:00
|
|
|
const models = Self.app.models;
|
|
|
|
const options = ctx.options;
|
2024-04-05 06:04:53 +00:00
|
|
|
const notificationName = 'backup-printer-selected';
|
|
|
|
const userId = ctx.options.accessToken?.userId;
|
2023-05-10 11:22:53 +00:00
|
|
|
|
2023-06-22 06:56:27 +00:00
|
|
|
if (!instance?.sectorFk || !instance?.labelerFk) return;
|
2024-04-05 06:04:53 +00:00
|
|
|
console.log('instance.sectorFk: ', instance.sectorFk);
|
2023-05-10 11:22:53 +00:00
|
|
|
const sector = await models.Sector.findById(instance.sectorFk, {
|
2023-11-09 06:56:35 +00:00
|
|
|
fields: ['backupPrinterFk']
|
2023-05-10 11:22:53 +00:00
|
|
|
}, options);
|
2023-05-29 10:55:20 +00:00
|
|
|
|
2024-04-05 06:04:53 +00:00
|
|
|
console.log('sector.backupPrinterFk == instance.labelerFk: ', sector.backupPrinterFk == instance.labelerFk);
|
2023-11-09 06:56:35 +00:00
|
|
|
if (sector.backupPrinterFk && sector.backupPrinterFk == instance.labelerFk) {
|
2024-04-05 06:04:53 +00:00
|
|
|
console.log('entra');
|
|
|
|
const {labelerFk, sectorFk} = instance;
|
|
|
|
|
|
|
|
const [{delay}] = await models.Notification.find({where: {name: notificationName}}, options);
|
|
|
|
if (delay) {
|
|
|
|
const now = Date.vnNow();
|
|
|
|
const filter = {where: {created: {between: [now - (delay * 1000), now]}}};
|
|
|
|
const notifications = await models.NotificationQueue.find(filter, options);
|
|
|
|
console.log('notifications: ', notifications);
|
|
|
|
|
|
|
|
const criteria = {labelerId: labelerFk, sectorId: sectorFk};
|
|
|
|
const filteredNotifications = notifications.filter(notification => {
|
|
|
|
const paramsObj = JSON.parse(notification.params);
|
|
|
|
console.log('paramsObj: ', paramsObj);
|
|
|
|
return Object.keys(criteria).every(key => criteria[key] === paramsObj[key]);
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log('filteredNotifications.length: ', filteredNotifications.length);
|
|
|
|
if (filteredNotifications.length > 1)
|
|
|
|
throw new Error('Previous notification sended with the same parameters');
|
|
|
|
}
|
|
|
|
|
|
|
|
const created = await models.NotificationQueue.create({
|
|
|
|
notificationFk: notificationName,
|
2023-12-19 09:51:18 +00:00
|
|
|
authorFk: userId,
|
|
|
|
params: JSON.stringify(
|
|
|
|
{
|
|
|
|
'labelerId': instance.labelerFk,
|
|
|
|
'sectorId': instance.sectorFk,
|
|
|
|
'workerId': userId
|
|
|
|
}
|
|
|
|
)
|
2024-04-05 06:04:53 +00:00
|
|
|
});
|
|
|
|
console.log('created: ', created);
|
2023-05-10 11:22:53 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2024-04-05 06:04:53 +00:00
|
|
|
|