easywork-common-lib 1.0.620 → 1.0.622
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities/helpers/sales/agent/h_agent_recruiment_stage.entity.d.ts +5 -0
- package/dist/entities/helpers/sales/agent/h_agent_recruiment_stage.entity.js +40 -0
- package/dist/entities/helpers/sales/agent/h_agent_recruiment_stage.entity.js.map +1 -0
- package/dist/entities/sales/agent.entity.d.ts +1 -0
- package/dist/entities/sales/agent.entity.js +5 -0
- package/dist/entities/sales/agent.entity.js.map +1 -1
- package/dist/entities/sales/lead.entity.d.ts +1 -0
- package/dist/entities/sales/lead.entity.js +5 -0
- package/dist/entities/sales/lead.entity.js.map +1 -1
- package/dist/entities/sales/poliza.entity.d.ts +1 -0
- package/dist/entities/sales/poliza.entity.js +5 -0
- package/dist/entities/sales/poliza.entity.js.map +1 -1
- package/dist/entities/sales/poliza_pdf.entity.js +2 -2
- package/dist/entities/sales/poliza_pdf.entity.js.map +1 -1
- package/dist/entities/sales/receipt.entity.d.ts +1 -0
- package/dist/entities/sales/receipt.entity.js +5 -0
- package/dist/entities/sales/receipt.entity.js.map +1 -1
- package/dist/modules/queue/notifiers/contact.notifier.d.ts +2 -2
- package/dist/modules/queue/notifiers/contact.notifier.js +6 -3
- package/dist/modules/queue/notifiers/contact.notifier.js.map +1 -1
- package/dist/modules/queue/notifiers/lead.notifier.d.ts +2 -2
- package/dist/modules/queue/notifiers/lead.notifier.js +6 -3
- package/dist/modules/queue/notifiers/lead.notifier.js.map +1 -1
- package/dist/modules/queue/notifiers/task.notifier.d.ts +2 -2
- package/dist/modules/queue/notifiers/task.notifier.js +57 -28
- package/dist/modules/queue/notifiers/task.notifier.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -38,87 +38,116 @@ let TaskNotifier = class TaskNotifier {
|
|
|
38
38
|
metadata: this.getMetadata(task, metadata),
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
buildTaskLink(task, color =
|
|
41
|
+
buildTaskLink(task, color = "blue") {
|
|
42
42
|
return `<a href="/tools/tasks/task/${task.id}?show=true" style="color:${color}">[${task.name}]</a>`;
|
|
43
43
|
}
|
|
44
44
|
async notifyTaskCompletion(task, recipientsId) {
|
|
45
45
|
const content = `La tarea ${task.name} ha sido completada`;
|
|
46
|
-
const notificationDto = this.createNotificationDto(
|
|
46
|
+
const notificationDto = this.createNotificationDto("Tarea Completada", content, recipientsId, task, [common_2.NotificationChannel.APP], common_2.NotificationSubcategory.TASK_COMPLETED);
|
|
47
47
|
await this.notifierService.sendNotification(notificationDto);
|
|
48
48
|
}
|
|
49
49
|
async notifyTaskOverdue(task, recipientsId) {
|
|
50
50
|
const content = `La tarea [#${task.number}] - ${task.name} está atrasada`;
|
|
51
|
-
const notificationDto = this.createNotificationDto(
|
|
51
|
+
const notificationDto = this.createNotificationDto("Tarea Atrasada", content, recipientsId, task, [
|
|
52
|
+
common_2.NotificationChannel.APP,
|
|
53
|
+
common_2.NotificationChannel.SMS,
|
|
54
|
+
common_2.NotificationChannel.PUSH,
|
|
55
|
+
], common_2.NotificationSubcategory.TASK_OVERDUE);
|
|
52
56
|
await this.notifierService.sendNotification(notificationDto);
|
|
53
57
|
}
|
|
54
58
|
async notifyTaskContinue(task, recipientsId) {
|
|
55
59
|
const content = `La tarea #${task.number} - ${task.name} ha sido reanudada`;
|
|
56
|
-
const notificationDto = this.createNotificationDto(
|
|
60
|
+
const notificationDto = this.createNotificationDto("Tarea Reanudada", content, recipientsId, task, [common_2.NotificationChannel.APP], common_2.NotificationSubcategory.TASK_UPDATED);
|
|
57
61
|
await this.notifierService.sendNotification(notificationDto);
|
|
58
62
|
}
|
|
59
63
|
async notifyNewTask(task, recipientsId) {
|
|
60
64
|
const fechaLimite = task.deadline
|
|
61
65
|
? `<br/>Fecha Límite: ${new Date(task.deadline).toLocaleDateString()}`
|
|
62
|
-
:
|
|
66
|
+
: "";
|
|
63
67
|
const observadores = task.observers?.length > 0
|
|
64
|
-
? `<br/>Observadores: ${task.observers
|
|
65
|
-
|
|
68
|
+
? `<br/>Observadores: ${task.observers
|
|
69
|
+
.map((o) => o.username)
|
|
70
|
+
.join(", ")}`
|
|
71
|
+
: "";
|
|
66
72
|
const responsables = task.responsible?.length > 0
|
|
67
|
-
? `<br/>Responsables: ${task.responsible
|
|
68
|
-
|
|
73
|
+
? `<br/>Responsables: ${task.responsible
|
|
74
|
+
.map((r) => r.username)
|
|
75
|
+
.join(", ")}`
|
|
76
|
+
: "";
|
|
69
77
|
const participantes = task.participants?.length > 0
|
|
70
|
-
? `<br/>Participantes: ${task.participants
|
|
71
|
-
|
|
78
|
+
? `<br/>Participantes: ${task.participants
|
|
79
|
+
.map((p) => p.username)
|
|
80
|
+
.join(", ")}`
|
|
81
|
+
: "";
|
|
72
82
|
const taskLink = this.buildTaskLink(task);
|
|
73
83
|
const content = `Nueva tarea agregada: ${taskLink}${responsables}${observadores}${participantes}${fechaLimite}`;
|
|
74
|
-
const notificationDto = this.createNotificationDto(
|
|
84
|
+
const notificationDto = this.createNotificationDto("Nueva Tarea", content, recipientsId, task, [
|
|
85
|
+
common_2.NotificationChannel.APP,
|
|
86
|
+
common_2.NotificationChannel.SMS,
|
|
87
|
+
common_2.NotificationChannel.PUSH,
|
|
88
|
+
], common_2.NotificationSubcategory.NEW_TASK);
|
|
75
89
|
await this.notifierService.sendNotification(notificationDto);
|
|
76
90
|
}
|
|
77
91
|
async notifyTaskUpdate(task, recipientsId, changedFields) {
|
|
78
92
|
const taskLink = this.buildTaskLink(task);
|
|
79
93
|
let content = `Tarea #${task.number} - ${taskLink}`;
|
|
80
94
|
if (changedFields.length === 0) {
|
|
81
|
-
content +=
|
|
82
|
-
const notificationDto = this.createNotificationDto(
|
|
95
|
+
content += " ha sido actualizada";
|
|
96
|
+
const notificationDto = this.createNotificationDto("Tarea Actualizada", content, recipientsId, task, [
|
|
97
|
+
common_2.NotificationChannel.APP,
|
|
98
|
+
common_2.NotificationChannel.SMS,
|
|
99
|
+
common_2.NotificationChannel.PUSH,
|
|
100
|
+
], common_2.NotificationSubcategory.TASK_UPDATED);
|
|
83
101
|
await this.notifierService.sendNotification(notificationDto);
|
|
84
102
|
return;
|
|
85
103
|
}
|
|
86
|
-
content +=
|
|
87
|
-
if (changedFields.includes(
|
|
104
|
+
content += " se actualizó:";
|
|
105
|
+
if (changedFields.includes("deadline")) {
|
|
88
106
|
const deadlineText = task.deadline
|
|
89
107
|
? new Date(task.deadline).toLocaleDateString()
|
|
90
|
-
:
|
|
108
|
+
: "Ninguna";
|
|
91
109
|
content += `<br/>Fecha Límite cambiada: ${deadlineText}`;
|
|
92
110
|
}
|
|
93
|
-
if (changedFields.includes(
|
|
111
|
+
if (changedFields.includes("responsible") && task.responsible?.length > 0) {
|
|
94
112
|
content = `Se te ha asignado la tarea #${task.number} - ${taskLink}`;
|
|
95
|
-
const notificationDto = this.createNotificationDto(
|
|
113
|
+
const notificationDto = this.createNotificationDto("Tarea Asignada", content, [task.responsible[0].id], task, [
|
|
114
|
+
common_2.NotificationChannel.APP,
|
|
115
|
+
common_2.NotificationChannel.SMS,
|
|
116
|
+
common_2.NotificationChannel.PUSH,
|
|
117
|
+
], common_2.NotificationSubcategory.TASK_UPDATED);
|
|
96
118
|
await this.notifierService.sendNotification(notificationDto);
|
|
97
119
|
}
|
|
98
120
|
else {
|
|
99
|
-
if (changedFields.includes(
|
|
121
|
+
if (changedFields.includes("name")) {
|
|
100
122
|
content += `<br/>Nombre: ${task.name}`;
|
|
101
123
|
}
|
|
102
|
-
if (changedFields.includes(
|
|
124
|
+
if (changedFields.includes("description")) {
|
|
103
125
|
content += `<br/>Descripción: ${task.description}`;
|
|
104
126
|
}
|
|
105
|
-
if (changedFields.includes(
|
|
127
|
+
if (changedFields.includes("status")) {
|
|
106
128
|
content += `<br/>Estado: ${task.status}`;
|
|
107
129
|
}
|
|
108
|
-
const notificationDto = this.createNotificationDto(
|
|
130
|
+
const notificationDto = this.createNotificationDto("Tarea Actualizada", content, recipientsId, task, [
|
|
131
|
+
common_2.NotificationChannel.APP,
|
|
132
|
+
common_2.NotificationChannel.SMS,
|
|
133
|
+
common_2.NotificationChannel.PUSH,
|
|
134
|
+
], common_2.NotificationSubcategory.TASK_UPDATED);
|
|
109
135
|
await this.notifierService.sendNotification(notificationDto);
|
|
110
136
|
}
|
|
111
137
|
}
|
|
112
138
|
async notifyNewComment(task, comment, recipientsId) {
|
|
113
|
-
const
|
|
114
|
-
const
|
|
115
|
-
const
|
|
116
|
-
const content = `${commenterName} comentó en la tarea: ${taskLink}. Texto del comentario: ${commentText}`;
|
|
139
|
+
const taskLink = this.buildTaskLink(task, "#170f6b");
|
|
140
|
+
const commenterName = comment.createdBy?.name ?? "Alguien";
|
|
141
|
+
const content = `${commenterName} comentó en la tarea: ${taskLink}.`;
|
|
117
142
|
const metadata = this.getMetadata(task, {
|
|
118
143
|
commentId: comment.id,
|
|
119
144
|
commentOwnerId: comment.createdBy?.id ?? null,
|
|
120
145
|
});
|
|
121
|
-
const notificationDto = this.createNotificationDto(
|
|
146
|
+
const notificationDto = this.createNotificationDto("Nuevo Comentario", content, recipientsId, task, [
|
|
147
|
+
common_2.NotificationChannel.APP,
|
|
148
|
+
common_2.NotificationChannel.SMS,
|
|
149
|
+
common_2.NotificationChannel.PUSH,
|
|
150
|
+
], common_2.NotificationSubcategory.TASK_NEW_COMMENT, metadata);
|
|
122
151
|
await this.notifierService.sendNotification(notificationDto);
|
|
123
152
|
}
|
|
124
153
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task.notifier.js","sourceRoot":"","sources":["../../../../src/modules/queue/notifiers/task.notifier.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,0DAA0D;AAC1D,4CAKyB;AAIlB,IAAM,YAAY,GAAlB,MAAM,YAAY;
|
|
1
|
+
{"version":3,"file":"task.notifier.js","sourceRoot":"","sources":["../../../../src/modules/queue/notifiers/task.notifier.ts"],"names":[],"mappings":"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"}
|