easywork-common-lib 1.0.1258 → 1.0.1259
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.
|
@@ -3,6 +3,19 @@ import { AgentConnectionStage } from "../connection/h_agent_connection_stage.ent
|
|
|
3
3
|
import { BaseEntitySimple, CertificateStatus } from "../../../../../common";
|
|
4
4
|
import { User } from "../../../../user.entity";
|
|
5
5
|
import { AgentSource } from "../h_agent_source.entity";
|
|
6
|
+
export declare enum ContractState {
|
|
7
|
+
IN_PROGRESS = "in-progress",
|
|
8
|
+
INACTIVE = "ready",
|
|
9
|
+
PENDING = "sent",
|
|
10
|
+
TERMINATED = "digital-reception",
|
|
11
|
+
PHYSICAL = "physical-reception",
|
|
12
|
+
DOCUMENTS_UPDATE = "documents-update"
|
|
13
|
+
}
|
|
14
|
+
export declare enum ViewVob {
|
|
15
|
+
IN_PROCESS = "in-process",
|
|
16
|
+
APPROVED = "approved",
|
|
17
|
+
REJECTED = "rejected"
|
|
18
|
+
}
|
|
6
19
|
export declare class AgentConnection extends BaseEntitySimple {
|
|
7
20
|
agentId: string;
|
|
8
21
|
agentConnectionStageId: string;
|
|
@@ -15,6 +28,28 @@ export declare class AgentConnection extends BaseEntitySimple {
|
|
|
15
28
|
closed: boolean;
|
|
16
29
|
status: CertificateStatus;
|
|
17
30
|
observationsStatus: string;
|
|
31
|
+
isInfonavit: boolean;
|
|
32
|
+
contractState: ContractState;
|
|
33
|
+
isContractsent: boolean;
|
|
34
|
+
contractExpirationOne: Date;
|
|
35
|
+
isContractRenewalTwo: boolean;
|
|
36
|
+
contractExpirationTwo: Date;
|
|
37
|
+
isSupportStatus: boolean;
|
|
38
|
+
supportNumber: number;
|
|
39
|
+
dateSent: Date;
|
|
40
|
+
isCalendarExam: boolean;
|
|
41
|
+
examDate: Date;
|
|
42
|
+
checkDocuments: boolean;
|
|
43
|
+
signedContract: boolean;
|
|
44
|
+
isPaid: boolean;
|
|
45
|
+
viewVob: ViewVob;
|
|
46
|
+
policyRc: number;
|
|
47
|
+
policyRcExpiration: Date;
|
|
48
|
+
isDocumentVerification: boolean;
|
|
49
|
+
reasonForPausing: string;
|
|
50
|
+
isreportsPaid: boolean;
|
|
51
|
+
stateConnection: string;
|
|
52
|
+
isGnpReview: boolean;
|
|
18
53
|
assignedBy: User;
|
|
19
54
|
developmentManager: User;
|
|
20
55
|
source: AgentSource;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.AgentConnection = void 0;
|
|
12
|
+
exports.AgentConnection = exports.ViewVob = exports.ContractState = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
14
|
const swagger_1 = require("@nestjs/swagger");
|
|
15
15
|
const sales_1 = require("../../../../sales");
|
|
@@ -18,6 +18,21 @@ const common_1 = require("../../../../../common");
|
|
|
18
18
|
const user_entity_1 = require("../../../../user.entity");
|
|
19
19
|
const h_agent_source_entity_1 = require("../h_agent_source.entity");
|
|
20
20
|
const class_transformer_1 = require("class-transformer");
|
|
21
|
+
var ContractState;
|
|
22
|
+
(function (ContractState) {
|
|
23
|
+
ContractState["IN_PROGRESS"] = "in-progress";
|
|
24
|
+
ContractState["INACTIVE"] = "ready";
|
|
25
|
+
ContractState["PENDING"] = "sent";
|
|
26
|
+
ContractState["TERMINATED"] = "digital-reception";
|
|
27
|
+
ContractState["PHYSICAL"] = "physical-reception";
|
|
28
|
+
ContractState["DOCUMENTS_UPDATE"] = "documents-update";
|
|
29
|
+
})(ContractState || (exports.ContractState = ContractState = {}));
|
|
30
|
+
var ViewVob;
|
|
31
|
+
(function (ViewVob) {
|
|
32
|
+
ViewVob["IN_PROCESS"] = "in-process";
|
|
33
|
+
ViewVob["APPROVED"] = "approved";
|
|
34
|
+
ViewVob["REJECTED"] = "rejected";
|
|
35
|
+
})(ViewVob || (exports.ViewVob = ViewVob = {}));
|
|
21
36
|
let AgentConnection = class AgentConnection extends common_1.BaseEntitySimple {
|
|
22
37
|
agentId;
|
|
23
38
|
agentConnectionStageId;
|
|
@@ -30,6 +45,28 @@ let AgentConnection = class AgentConnection extends common_1.BaseEntitySimple {
|
|
|
30
45
|
closed;
|
|
31
46
|
status;
|
|
32
47
|
observationsStatus;
|
|
48
|
+
isInfonavit;
|
|
49
|
+
contractState;
|
|
50
|
+
isContractsent;
|
|
51
|
+
contractExpirationOne;
|
|
52
|
+
isContractRenewalTwo;
|
|
53
|
+
contractExpirationTwo;
|
|
54
|
+
isSupportStatus;
|
|
55
|
+
supportNumber;
|
|
56
|
+
dateSent;
|
|
57
|
+
isCalendarExam;
|
|
58
|
+
examDate;
|
|
59
|
+
checkDocuments;
|
|
60
|
+
signedContract;
|
|
61
|
+
isPaid;
|
|
62
|
+
viewVob;
|
|
63
|
+
policyRc;
|
|
64
|
+
policyRcExpiration;
|
|
65
|
+
isDocumentVerification;
|
|
66
|
+
reasonForPausing;
|
|
67
|
+
isreportsPaid;
|
|
68
|
+
stateConnection;
|
|
69
|
+
isGnpReview;
|
|
33
70
|
assignedBy;
|
|
34
71
|
developmentManager;
|
|
35
72
|
source;
|
|
@@ -59,7 +96,7 @@ __decorate([
|
|
|
59
96
|
__decorate([
|
|
60
97
|
(0, swagger_1.ApiProperty)({
|
|
61
98
|
type: String,
|
|
62
|
-
description: "Numero cédula
|
|
99
|
+
description: "Numero cédula",
|
|
63
100
|
required: false,
|
|
64
101
|
}),
|
|
65
102
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
@@ -68,7 +105,7 @@ __decorate([
|
|
|
68
105
|
__decorate([
|
|
69
106
|
(0, swagger_1.ApiProperty)({
|
|
70
107
|
type: Date,
|
|
71
|
-
description: "Fecha de vigencia
|
|
108
|
+
description: "Fecha de vigencia CUA Provisional",
|
|
72
109
|
required: false,
|
|
73
110
|
}),
|
|
74
111
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
@@ -77,7 +114,7 @@ __decorate([
|
|
|
77
114
|
__decorate([
|
|
78
115
|
(0, swagger_1.ApiProperty)({
|
|
79
116
|
type: Date,
|
|
80
|
-
description: "Fecha de vigencia
|
|
117
|
+
description: "Fecha de vigencia CUA Definitivo",
|
|
81
118
|
required: false,
|
|
82
119
|
}),
|
|
83
120
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
@@ -136,6 +173,191 @@ __decorate([
|
|
|
136
173
|
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
137
174
|
__metadata("design:type", String)
|
|
138
175
|
], AgentConnection.prototype, "observationsStatus", void 0);
|
|
176
|
+
__decorate([
|
|
177
|
+
(0, swagger_1.ApiProperty)({
|
|
178
|
+
type: Boolean,
|
|
179
|
+
description: "Visto bueno de infonavit",
|
|
180
|
+
}),
|
|
181
|
+
(0, typeorm_1.Column)(),
|
|
182
|
+
__metadata("design:type", Boolean)
|
|
183
|
+
], AgentConnection.prototype, "isInfonavit", void 0);
|
|
184
|
+
__decorate([
|
|
185
|
+
(0, swagger_1.ApiProperty)({
|
|
186
|
+
type: ContractState,
|
|
187
|
+
description: "Contract State",
|
|
188
|
+
}),
|
|
189
|
+
(0, typeorm_1.Column)({
|
|
190
|
+
type: "enum",
|
|
191
|
+
enum: ContractState,
|
|
192
|
+
nullable: true,
|
|
193
|
+
}),
|
|
194
|
+
__metadata("design:type", String)
|
|
195
|
+
], AgentConnection.prototype, "contractState", void 0);
|
|
196
|
+
__decorate([
|
|
197
|
+
(0, swagger_1.ApiProperty)({
|
|
198
|
+
type: Boolean,
|
|
199
|
+
description: "Contract sent",
|
|
200
|
+
}),
|
|
201
|
+
(0, typeorm_1.Column)(),
|
|
202
|
+
__metadata("design:type", Boolean)
|
|
203
|
+
], AgentConnection.prototype, "isContractsent", void 0);
|
|
204
|
+
__decorate([
|
|
205
|
+
(0, swagger_1.ApiProperty)({
|
|
206
|
+
type: Date,
|
|
207
|
+
description: "Vencimiento del contrato 1",
|
|
208
|
+
required: false,
|
|
209
|
+
}),
|
|
210
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
211
|
+
__metadata("design:type", Date)
|
|
212
|
+
], AgentConnection.prototype, "contractExpirationOne", void 0);
|
|
213
|
+
__decorate([
|
|
214
|
+
(0, swagger_1.ApiProperty)({
|
|
215
|
+
type: Boolean,
|
|
216
|
+
description: "Is contract renewal two",
|
|
217
|
+
}),
|
|
218
|
+
(0, typeorm_1.Column)(),
|
|
219
|
+
__metadata("design:type", Boolean)
|
|
220
|
+
], AgentConnection.prototype, "isContractRenewalTwo", void 0);
|
|
221
|
+
__decorate([
|
|
222
|
+
(0, swagger_1.ApiProperty)({
|
|
223
|
+
type: Date,
|
|
224
|
+
description: "Vencimiento del contrato 2",
|
|
225
|
+
}),
|
|
226
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
227
|
+
__metadata("design:type", Date)
|
|
228
|
+
], AgentConnection.prototype, "contractExpirationTwo", void 0);
|
|
229
|
+
__decorate([
|
|
230
|
+
(0, swagger_1.ApiProperty)({
|
|
231
|
+
type: Boolean,
|
|
232
|
+
description: "Support status",
|
|
233
|
+
}),
|
|
234
|
+
(0, typeorm_1.Column)(),
|
|
235
|
+
__metadata("design:type", Boolean)
|
|
236
|
+
], AgentConnection.prototype, "isSupportStatus", void 0);
|
|
237
|
+
__decorate([
|
|
238
|
+
(0, swagger_1.ApiProperty)({
|
|
239
|
+
type: Number,
|
|
240
|
+
description: "Support number",
|
|
241
|
+
}),
|
|
242
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
243
|
+
__metadata("design:type", Number)
|
|
244
|
+
], AgentConnection.prototype, "supportNumber", void 0);
|
|
245
|
+
__decorate([
|
|
246
|
+
(0, swagger_1.ApiProperty)({
|
|
247
|
+
type: Date,
|
|
248
|
+
description: "Date sent",
|
|
249
|
+
}),
|
|
250
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
251
|
+
__metadata("design:type", Date)
|
|
252
|
+
], AgentConnection.prototype, "dateSent", void 0);
|
|
253
|
+
__decorate([
|
|
254
|
+
(0, swagger_1.ApiProperty)({
|
|
255
|
+
type: Boolean,
|
|
256
|
+
description: "Calendar exam",
|
|
257
|
+
}),
|
|
258
|
+
(0, typeorm_1.Column)(),
|
|
259
|
+
__metadata("design:type", Boolean)
|
|
260
|
+
], AgentConnection.prototype, "isCalendarExam", void 0);
|
|
261
|
+
__decorate([
|
|
262
|
+
(0, swagger_1.ApiProperty)({
|
|
263
|
+
type: Date,
|
|
264
|
+
description: "Exam date",
|
|
265
|
+
}),
|
|
266
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
267
|
+
__metadata("design:type", Date)
|
|
268
|
+
], AgentConnection.prototype, "examDate", void 0);
|
|
269
|
+
__decorate([
|
|
270
|
+
(0, swagger_1.ApiProperty)({
|
|
271
|
+
type: Boolean,
|
|
272
|
+
description: "Check documents",
|
|
273
|
+
}),
|
|
274
|
+
(0, typeorm_1.Column)(),
|
|
275
|
+
__metadata("design:type", Boolean)
|
|
276
|
+
], AgentConnection.prototype, "checkDocuments", void 0);
|
|
277
|
+
__decorate([
|
|
278
|
+
(0, swagger_1.ApiProperty)({
|
|
279
|
+
type: Boolean,
|
|
280
|
+
description: "Signed contract",
|
|
281
|
+
}),
|
|
282
|
+
(0, typeorm_1.Column)(),
|
|
283
|
+
__metadata("design:type", Boolean)
|
|
284
|
+
], AgentConnection.prototype, "signedContract", void 0);
|
|
285
|
+
__decorate([
|
|
286
|
+
(0, swagger_1.ApiProperty)({
|
|
287
|
+
type: Boolean,
|
|
288
|
+
description: "Is paid",
|
|
289
|
+
}),
|
|
290
|
+
(0, typeorm_1.Column)(),
|
|
291
|
+
__metadata("design:type", Boolean)
|
|
292
|
+
], AgentConnection.prototype, "isPaid", void 0);
|
|
293
|
+
__decorate([
|
|
294
|
+
(0, swagger_1.ApiProperty)({
|
|
295
|
+
type: ViewVob,
|
|
296
|
+
description: "View Vob",
|
|
297
|
+
}),
|
|
298
|
+
(0, typeorm_1.Column)({
|
|
299
|
+
type: "enum",
|
|
300
|
+
enum: ViewVob,
|
|
301
|
+
nullable: true,
|
|
302
|
+
}),
|
|
303
|
+
__metadata("design:type", String)
|
|
304
|
+
], AgentConnection.prototype, "viewVob", void 0);
|
|
305
|
+
__decorate([
|
|
306
|
+
(0, swagger_1.ApiProperty)({
|
|
307
|
+
type: Number,
|
|
308
|
+
description: "Liability policy number",
|
|
309
|
+
}),
|
|
310
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
311
|
+
__metadata("design:type", Number)
|
|
312
|
+
], AgentConnection.prototype, "policyRc", void 0);
|
|
313
|
+
__decorate([
|
|
314
|
+
(0, swagger_1.ApiProperty)({
|
|
315
|
+
type: Date,
|
|
316
|
+
description: "Liability policy expiration date",
|
|
317
|
+
}),
|
|
318
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
319
|
+
__metadata("design:type", Date)
|
|
320
|
+
], AgentConnection.prototype, "policyRcExpiration", void 0);
|
|
321
|
+
__decorate([
|
|
322
|
+
(0, swagger_1.ApiProperty)({
|
|
323
|
+
type: Boolean,
|
|
324
|
+
description: "Document verification",
|
|
325
|
+
}),
|
|
326
|
+
(0, typeorm_1.Column)(),
|
|
327
|
+
__metadata("design:type", Boolean)
|
|
328
|
+
], AgentConnection.prototype, "isDocumentVerification", void 0);
|
|
329
|
+
__decorate([
|
|
330
|
+
(0, swagger_1.ApiProperty)({
|
|
331
|
+
type: String,
|
|
332
|
+
description: "Reason for pausing",
|
|
333
|
+
}),
|
|
334
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
335
|
+
__metadata("design:type", String)
|
|
336
|
+
], AgentConnection.prototype, "reasonForPausing", void 0);
|
|
337
|
+
__decorate([
|
|
338
|
+
(0, swagger_1.ApiProperty)({
|
|
339
|
+
type: Boolean,
|
|
340
|
+
description: "Reports paid",
|
|
341
|
+
}),
|
|
342
|
+
(0, typeorm_1.Column)(),
|
|
343
|
+
__metadata("design:type", Boolean)
|
|
344
|
+
], AgentConnection.prototype, "isreportsPaid", void 0);
|
|
345
|
+
__decorate([
|
|
346
|
+
(0, swagger_1.ApiProperty)({
|
|
347
|
+
type: String,
|
|
348
|
+
description: "State of the connection",
|
|
349
|
+
}),
|
|
350
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
351
|
+
__metadata("design:type", String)
|
|
352
|
+
], AgentConnection.prototype, "stateConnection", void 0);
|
|
353
|
+
__decorate([
|
|
354
|
+
(0, swagger_1.ApiProperty)({
|
|
355
|
+
type: Boolean,
|
|
356
|
+
description: "GNP review",
|
|
357
|
+
}),
|
|
358
|
+
(0, typeorm_1.Column)(),
|
|
359
|
+
__metadata("design:type", Boolean)
|
|
360
|
+
], AgentConnection.prototype, "isGnpReview", void 0);
|
|
139
361
|
__decorate([
|
|
140
362
|
(0, swagger_1.ApiProperty)({
|
|
141
363
|
type: () => user_entity_1.User,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"h_agent_connection.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/helpers/sales/agent/connection/h_agent_connection.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,6CAA8C;AAC9C,6CAA0C;AAC1C,mGAAqF;AACrF,kDAA4E;AAC5E,yDAA+C;AAC/C,oEAAuD;AACvD,yDAA4C;
|
|
1
|
+
{"version":3,"file":"h_agent_connection.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/helpers/sales/agent/connection/h_agent_connection.entity.ts"],"names":[],"mappings":"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"}
|