easywork-common-lib 1.0.942 → 1.0.943
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntity } from
|
|
2
|
-
import { Task, EventCalendar } from
|
|
3
|
-
import { EventCRMType } from
|
|
4
|
-
import { Agent, Contact, Lead, Poliza, Receipt } from
|
|
5
|
-
import { Policy, PolicyVersion } from
|
|
1
|
+
import { BaseEntity } from 'typeorm';
|
|
2
|
+
import { Task, EventCalendar } from '../../tools';
|
|
3
|
+
import { EventCRMType } from '../../../common';
|
|
4
|
+
import { Agent, Contact, Lead, Poliza, PolizaClaim, PolizaFundRecovery, PolizaReimbursement, PolizaScheduling, Receipt } from '../../sales';
|
|
5
|
+
import { Policy, PolicyVersion } from '../../policy';
|
|
6
6
|
export declare class EventCRM extends BaseEntity {
|
|
7
7
|
id?: string;
|
|
8
8
|
type: EventCRMType;
|
|
@@ -23,5 +23,13 @@ export declare class EventCRM extends BaseEntity {
|
|
|
23
23
|
policy?: Policy;
|
|
24
24
|
policyRenewalId?: string;
|
|
25
25
|
policyRenewal?: PolicyVersion;
|
|
26
|
-
|
|
26
|
+
policyScheduleId?: string;
|
|
27
|
+
polizaScheduling: PolizaScheduling;
|
|
28
|
+
policyReimbursementId?: string;
|
|
29
|
+
polizaReimbursement: PolizaReimbursement;
|
|
30
|
+
policyClaimId?: string;
|
|
31
|
+
polizaClaim: PolizaClaim;
|
|
32
|
+
policyFundRecoveryId?: string;
|
|
33
|
+
polizaFundRecovery: PolizaFundRecovery;
|
|
34
|
+
get crmEntity(): Contact | Poliza | Lead | Receipt | Task | Agent | Policy | PolicyVersion | PolizaScheduling | PolizaReimbursement | PolizaClaim | PolizaFundRecovery | undefined;
|
|
27
35
|
}
|
|
@@ -37,6 +37,14 @@ let EventCRM = class EventCRM extends typeorm_1.BaseEntity {
|
|
|
37
37
|
policy;
|
|
38
38
|
policyRenewalId;
|
|
39
39
|
policyRenewal;
|
|
40
|
+
policyScheduleId;
|
|
41
|
+
polizaScheduling;
|
|
42
|
+
policyReimbursementId;
|
|
43
|
+
polizaReimbursement;
|
|
44
|
+
policyClaimId;
|
|
45
|
+
polizaClaim;
|
|
46
|
+
policyFundRecoveryId;
|
|
47
|
+
polizaFundRecovery;
|
|
40
48
|
get crmEntity() {
|
|
41
49
|
switch (this.type) {
|
|
42
50
|
case common_1.EventCRMType.CONTACT:
|
|
@@ -55,6 +63,14 @@ let EventCRM = class EventCRM extends typeorm_1.BaseEntity {
|
|
|
55
63
|
return this.policy;
|
|
56
64
|
case common_1.EventCRMType.POLICY_RENEWAL:
|
|
57
65
|
return this.policyRenewal;
|
|
66
|
+
case common_1.EventCRMType.POLIZA_SCHEDULING:
|
|
67
|
+
return this.polizaScheduling;
|
|
68
|
+
case common_1.EventCRMType.POLIZA_REIMBURSEMENT:
|
|
69
|
+
return this.polizaReimbursement;
|
|
70
|
+
case common_1.EventCRMType.POLIZA_CLAIM:
|
|
71
|
+
return this.polizaClaim;
|
|
72
|
+
case common_1.EventCRMType.POLIZA_FUND_RECOVERY:
|
|
73
|
+
return this.polizaFundRecovery;
|
|
58
74
|
default:
|
|
59
75
|
return undefined;
|
|
60
76
|
}
|
|
@@ -64,19 +80,19 @@ exports.EventCRM = EventCRM;
|
|
|
64
80
|
__decorate([
|
|
65
81
|
(0, swagger_1.ApiProperty)({
|
|
66
82
|
type: String,
|
|
67
|
-
description:
|
|
68
|
-
format:
|
|
83
|
+
description: 'UUID del EventCRM',
|
|
84
|
+
format: 'uuid',
|
|
69
85
|
}),
|
|
70
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
86
|
+
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
71
87
|
__metadata("design:type", String)
|
|
72
88
|
], EventCRM.prototype, "id", void 0);
|
|
73
89
|
__decorate([
|
|
74
90
|
(0, swagger_1.ApiProperty)({
|
|
75
91
|
enum: common_1.EventCRMType,
|
|
76
|
-
description:
|
|
92
|
+
description: 'Tipo de la entidad CRM relacionada',
|
|
77
93
|
}),
|
|
78
94
|
(0, typeorm_1.Column)({
|
|
79
|
-
type:
|
|
95
|
+
type: 'enum',
|
|
80
96
|
enum: common_1.EventCRMType,
|
|
81
97
|
}),
|
|
82
98
|
__metadata("design:type", String)
|
|
@@ -84,17 +100,17 @@ __decorate([
|
|
|
84
100
|
__decorate([
|
|
85
101
|
(0, swagger_1.ApiProperty)({
|
|
86
102
|
type: String,
|
|
87
|
-
description:
|
|
103
|
+
description: 'ID de la tarea asociada',
|
|
88
104
|
}),
|
|
89
105
|
(0, typeorm_1.Column)(),
|
|
90
106
|
__metadata("design:type", String)
|
|
91
107
|
], EventCRM.prototype, "eventId", void 0);
|
|
92
108
|
__decorate([
|
|
93
|
-
(0, typeorm_1.ManyToOne)(() => tools_1.EventCalendar,
|
|
94
|
-
onDelete:
|
|
95
|
-
onUpdate:
|
|
109
|
+
(0, typeorm_1.ManyToOne)(() => tools_1.EventCalendar, event => event.crm, {
|
|
110
|
+
onDelete: 'CASCADE',
|
|
111
|
+
onUpdate: 'CASCADE',
|
|
96
112
|
}),
|
|
97
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
113
|
+
(0, typeorm_1.JoinColumn)({ name: 'eventId' }),
|
|
98
114
|
__metadata("design:type", tools_1.EventCalendar)
|
|
99
115
|
], EventCRM.prototype, "event", void 0);
|
|
100
116
|
__decorate([
|
|
@@ -104,8 +120,8 @@ __decorate([
|
|
|
104
120
|
], EventCRM.prototype, "contactId", void 0);
|
|
105
121
|
__decorate([
|
|
106
122
|
(0, class_transformer_1.Exclude)(),
|
|
107
|
-
(0, typeorm_1.ManyToOne)(() => sales_1.Contact, { nullable: true, onDelete:
|
|
108
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
123
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.Contact, { nullable: true, onDelete: 'CASCADE' }),
|
|
124
|
+
(0, typeorm_1.JoinColumn)({ name: 'contactId' }),
|
|
109
125
|
__metadata("design:type", sales_1.Contact)
|
|
110
126
|
], EventCRM.prototype, "contact", void 0);
|
|
111
127
|
__decorate([
|
|
@@ -115,8 +131,8 @@ __decorate([
|
|
|
115
131
|
], EventCRM.prototype, "polizaId", void 0);
|
|
116
132
|
__decorate([
|
|
117
133
|
(0, class_transformer_1.Exclude)(),
|
|
118
|
-
(0, typeorm_1.ManyToOne)(() => sales_1.Poliza, { nullable: true, onDelete:
|
|
119
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
134
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.Poliza, { nullable: true, onDelete: 'CASCADE' }),
|
|
135
|
+
(0, typeorm_1.JoinColumn)({ name: 'polizaId' }),
|
|
120
136
|
__metadata("design:type", sales_1.Poliza)
|
|
121
137
|
], EventCRM.prototype, "poliza", void 0);
|
|
122
138
|
__decorate([
|
|
@@ -126,8 +142,8 @@ __decorate([
|
|
|
126
142
|
], EventCRM.prototype, "leadId", void 0);
|
|
127
143
|
__decorate([
|
|
128
144
|
(0, class_transformer_1.Exclude)(),
|
|
129
|
-
(0, typeorm_1.ManyToOne)(() => sales_1.Lead, { nullable: true, onDelete:
|
|
130
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
145
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.Lead, { nullable: true, onDelete: 'CASCADE' }),
|
|
146
|
+
(0, typeorm_1.JoinColumn)({ name: 'leadId' }),
|
|
131
147
|
__metadata("design:type", sales_1.Lead)
|
|
132
148
|
], EventCRM.prototype, "lead", void 0);
|
|
133
149
|
__decorate([
|
|
@@ -137,8 +153,8 @@ __decorate([
|
|
|
137
153
|
], EventCRM.prototype, "receiptId", void 0);
|
|
138
154
|
__decorate([
|
|
139
155
|
(0, class_transformer_1.Exclude)(),
|
|
140
|
-
(0, typeorm_1.ManyToOne)(() => sales_1.Receipt, { nullable: true, onDelete:
|
|
141
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
156
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.Receipt, { nullable: true, onDelete: 'CASCADE' }),
|
|
157
|
+
(0, typeorm_1.JoinColumn)({ name: 'receiptId' }),
|
|
142
158
|
__metadata("design:type", sales_1.Receipt)
|
|
143
159
|
], EventCRM.prototype, "receipt", void 0);
|
|
144
160
|
__decorate([
|
|
@@ -148,8 +164,8 @@ __decorate([
|
|
|
148
164
|
], EventCRM.prototype, "taskId", void 0);
|
|
149
165
|
__decorate([
|
|
150
166
|
(0, class_transformer_1.Exclude)(),
|
|
151
|
-
(0, typeorm_1.ManyToOne)(() => tools_1.Task, { nullable: true, onDelete:
|
|
152
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
167
|
+
(0, typeorm_1.ManyToOne)(() => tools_1.Task, { nullable: true, onDelete: 'CASCADE' }),
|
|
168
|
+
(0, typeorm_1.JoinColumn)({ name: 'taskId' }),
|
|
153
169
|
__metadata("design:type", tools_1.Task)
|
|
154
170
|
], EventCRM.prototype, "task", void 0);
|
|
155
171
|
__decorate([
|
|
@@ -159,14 +175,14 @@ __decorate([
|
|
|
159
175
|
], EventCRM.prototype, "agentId", void 0);
|
|
160
176
|
__decorate([
|
|
161
177
|
(0, class_transformer_1.Exclude)(),
|
|
162
|
-
(0, typeorm_1.ManyToOne)(() => sales_1.Agent, { nullable: true, onDelete:
|
|
163
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
178
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.Agent, { nullable: true, onDelete: 'CASCADE' }),
|
|
179
|
+
(0, typeorm_1.JoinColumn)({ name: 'agentId' }),
|
|
164
180
|
__metadata("design:type", sales_1.Agent)
|
|
165
181
|
], EventCRM.prototype, "agent", void 0);
|
|
166
182
|
__decorate([
|
|
167
183
|
(0, class_transformer_1.Exclude)(),
|
|
168
|
-
(0, typeorm_1.ManyToOne)(() => policy_1.Policy, { nullable: true, onDelete:
|
|
169
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
184
|
+
(0, typeorm_1.ManyToOne)(() => policy_1.Policy, { nullable: true, onDelete: 'CASCADE' }),
|
|
185
|
+
(0, typeorm_1.JoinColumn)({ name: 'policyId' }),
|
|
170
186
|
__metadata("design:type", policy_1.Policy)
|
|
171
187
|
], EventCRM.prototype, "policy", void 0);
|
|
172
188
|
__decorate([
|
|
@@ -176,10 +192,54 @@ __decorate([
|
|
|
176
192
|
], EventCRM.prototype, "policyRenewalId", void 0);
|
|
177
193
|
__decorate([
|
|
178
194
|
(0, class_transformer_1.Exclude)(),
|
|
179
|
-
(0, typeorm_1.ManyToOne)(() => policy_1.PolicyVersion, { nullable: true, onDelete:
|
|
180
|
-
(0, typeorm_1.JoinColumn)({ name:
|
|
195
|
+
(0, typeorm_1.ManyToOne)(() => policy_1.PolicyVersion, { nullable: true, onDelete: 'CASCADE' }),
|
|
196
|
+
(0, typeorm_1.JoinColumn)({ name: 'policyRenewalId' }),
|
|
181
197
|
__metadata("design:type", policy_1.PolicyVersion)
|
|
182
198
|
], EventCRM.prototype, "policyRenewal", void 0);
|
|
199
|
+
__decorate([
|
|
200
|
+
(0, class_transformer_1.Exclude)(),
|
|
201
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
202
|
+
__metadata("design:type", String)
|
|
203
|
+
], EventCRM.prototype, "policyScheduleId", void 0);
|
|
204
|
+
__decorate([
|
|
205
|
+
(0, class_transformer_1.Exclude)(),
|
|
206
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.PolizaScheduling, { nullable: true, onDelete: 'CASCADE' }),
|
|
207
|
+
(0, typeorm_1.JoinColumn)({ name: 'policyScheduleId' }),
|
|
208
|
+
__metadata("design:type", sales_1.PolizaScheduling)
|
|
209
|
+
], EventCRM.prototype, "polizaScheduling", void 0);
|
|
210
|
+
__decorate([
|
|
211
|
+
(0, class_transformer_1.Exclude)(),
|
|
212
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
213
|
+
__metadata("design:type", String)
|
|
214
|
+
], EventCRM.prototype, "policyReimbursementId", void 0);
|
|
215
|
+
__decorate([
|
|
216
|
+
(0, class_transformer_1.Exclude)(),
|
|
217
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.PolizaReimbursement, { nullable: true, onDelete: 'CASCADE' }),
|
|
218
|
+
(0, typeorm_1.JoinColumn)({ name: 'policyReimbursementId' }),
|
|
219
|
+
__metadata("design:type", sales_1.PolizaReimbursement)
|
|
220
|
+
], EventCRM.prototype, "polizaReimbursement", void 0);
|
|
221
|
+
__decorate([
|
|
222
|
+
(0, class_transformer_1.Exclude)(),
|
|
223
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
224
|
+
__metadata("design:type", String)
|
|
225
|
+
], EventCRM.prototype, "policyClaimId", void 0);
|
|
226
|
+
__decorate([
|
|
227
|
+
(0, class_transformer_1.Exclude)(),
|
|
228
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.PolizaClaim, { nullable: true, onDelete: 'CASCADE' }),
|
|
229
|
+
(0, typeorm_1.JoinColumn)({ name: 'policyClaimId' }),
|
|
230
|
+
__metadata("design:type", sales_1.PolizaClaim)
|
|
231
|
+
], EventCRM.prototype, "polizaClaim", void 0);
|
|
232
|
+
__decorate([
|
|
233
|
+
(0, class_transformer_1.Exclude)(),
|
|
234
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
235
|
+
__metadata("design:type", String)
|
|
236
|
+
], EventCRM.prototype, "policyFundRecoveryId", void 0);
|
|
237
|
+
__decorate([
|
|
238
|
+
(0, class_transformer_1.Exclude)(),
|
|
239
|
+
(0, typeorm_1.ManyToOne)(() => sales_1.PolizaFundRecovery, { nullable: true, onDelete: 'CASCADE' }),
|
|
240
|
+
(0, typeorm_1.JoinColumn)({ name: 'policyFundRecoveryId' }),
|
|
241
|
+
__metadata("design:type", sales_1.PolizaFundRecovery)
|
|
242
|
+
], EventCRM.prototype, "polizaFundRecovery", void 0);
|
|
183
243
|
__decorate([
|
|
184
244
|
(0, class_transformer_1.Expose)(),
|
|
185
245
|
__metadata("design:type", Object),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event_crm.entity.js","sourceRoot":"","sources":["../../../../src/entities/helpers/tools/event_crm.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"event_crm.entity.js","sourceRoot":"","sources":["../../../../src/entities/helpers/tools/event_crm.entity.ts"],"names":[],"mappings":"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"}
|