@hed-hog/operations 0.0.338 → 0.0.347
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/controllers/operations-collaborators.controller.d.ts +73 -0
- package/dist/controllers/operations-collaborators.controller.d.ts.map +1 -1
- package/dist/controllers/operations-collaborators.controller.js +100 -0
- package/dist/controllers/operations-collaborators.controller.js.map +1 -1
- package/dist/controllers/operations-contracts.controller.d.ts +12 -12
- package/dist/controllers/operations-projects.controller.d.ts +3 -0
- package/dist/controllers/operations-projects.controller.d.ts.map +1 -1
- package/dist/dto/create-collaborator-invoice.dto.d.ts +11 -0
- package/dist/dto/create-collaborator-invoice.dto.d.ts.map +1 -0
- package/dist/dto/create-collaborator-invoice.dto.js +55 -0
- package/dist/dto/create-collaborator-invoice.dto.js.map +1 -0
- package/dist/dto/create-collaborator-payment.dto.d.ts +10 -0
- package/dist/dto/create-collaborator-payment.dto.d.ts.map +1 -0
- package/dist/dto/create-collaborator-payment.dto.js +50 -0
- package/dist/dto/create-collaborator-payment.dto.js.map +1 -0
- package/dist/dto/list-collaborator-invoice.dto.d.ts +4 -0
- package/dist/dto/list-collaborator-invoice.dto.d.ts.map +1 -0
- package/dist/dto/list-collaborator-invoice.dto.js +8 -0
- package/dist/dto/list-collaborator-invoice.dto.js.map +1 -0
- package/dist/dto/list-collaborator-payment.dto.d.ts +4 -0
- package/dist/dto/list-collaborator-payment.dto.d.ts.map +1 -0
- package/dist/dto/list-collaborator-payment.dto.js +8 -0
- package/dist/dto/list-collaborator-payment.dto.js.map +1 -0
- package/dist/dto/update-collaborator-invoice.dto.d.ts +6 -0
- package/dist/dto/update-collaborator-invoice.dto.d.ts.map +1 -0
- package/dist/dto/update-collaborator-invoice.dto.js +9 -0
- package/dist/dto/update-collaborator-invoice.dto.js.map +1 -0
- package/dist/dto/update-collaborator-payment.dto.d.ts +6 -0
- package/dist/dto/update-collaborator-payment.dto.d.ts.map +1 -0
- package/dist/dto/update-collaborator-payment.dto.js +9 -0
- package/dist/dto/update-collaborator-payment.dto.js.map +1 -0
- package/dist/operations.service.d.ts +98 -0
- package/dist/operations.service.d.ts.map +1 -1
- package/dist/operations.service.js +240 -17
- package/dist/operations.service.js.map +1 -1
- package/hedhog/data/menu.yaml +32 -11
- package/hedhog/data/route.yaml +72 -0
- package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +38 -0
- package/hedhog/frontend/app/_components/collaborator-invoices-tab.tsx.ejs +443 -0
- package/hedhog/frontend/app/_components/collaborator-payment-history-tab.tsx.ejs +429 -0
- package/hedhog/frontend/app/_components/project-assignments-tab.tsx.ejs +212 -10
- package/hedhog/frontend/app/_components/project-details-screen.tsx.ejs +673 -16
- package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +192 -38
- package/hedhog/frontend/app/_components/task-detail-sheet.tsx.ejs +28 -7
- package/hedhog/frontend/app/_lib/api.ts.ejs +151 -0
- package/hedhog/frontend/app/_lib/types.ts.ejs +1 -0
- package/hedhog/frontend/app/_lib/utils/task-ui.ts.ejs +18 -0
- package/hedhog/frontend/app/tasks-gantt/page.tsx.ejs +953 -0
- package/hedhog/frontend/messages/en.json +96 -2
- package/hedhog/frontend/messages/pt.json +96 -2
- package/hedhog/table/operations_collaborator_invoice.yaml +35 -0
- package/hedhog/table/operations_collaborator_payment.yaml +32 -0
- package/package.json +5 -5
- package/src/controllers/operations-collaborators.controller.ts +109 -0
- package/src/dto/create-collaborator-invoice.dto.ts +39 -0
- package/src/dto/create-collaborator-payment.dto.ts +35 -0
- package/src/dto/list-collaborator-invoice.dto.ts +3 -0
- package/src/dto/list-collaborator-payment.dto.ts +3 -0
- package/src/dto/update-collaborator-invoice.dto.ts +6 -0
- package/src/dto/update-collaborator-payment.dto.ts +6 -0
- package/src/operations.service.ts +332 -18
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import { CreateCollaboratorInvoiceDto } from '../dto/create-collaborator-invoice.dto';
|
|
2
|
+
import { CreateCollaboratorPaymentDto } from '../dto/create-collaborator-payment.dto';
|
|
1
3
|
import { CreateCollaboratorProjectAssignmentDto } from '../dto/create-collaborator-project-assignment.dto';
|
|
2
4
|
import { CreateCollaboratorDto } from '../dto/create-collaborator.dto';
|
|
3
5
|
import { ListCollaboratorsDto } from '../dto/list-collaborators.dto';
|
|
6
|
+
import { UpdateCollaboratorInvoiceDto } from '../dto/update-collaborator-invoice.dto';
|
|
7
|
+
import { UpdateCollaboratorPaymentDto } from '../dto/update-collaborator-payment.dto';
|
|
4
8
|
import { UpdateCollaboratorProjectAssignmentDto } from '../dto/update-collaborator-project-assignment.dto';
|
|
5
9
|
import { UpdateCollaboratorDto } from '../dto/update-collaborator.dto';
|
|
6
10
|
import { OperationsService } from '../operations.service';
|
|
@@ -43,6 +47,75 @@ export declare class OperationsCollaboratorsController {
|
|
|
43
47
|
amountType: string;
|
|
44
48
|
createdAt: string;
|
|
45
49
|
}[]>;
|
|
50
|
+
getCollaboratorPaymentHistory(user: any, id: number): Promise<{
|
|
51
|
+
id: number;
|
|
52
|
+
collaboratorId: number;
|
|
53
|
+
amount: string;
|
|
54
|
+
paymentDate: Date;
|
|
55
|
+
referenceMonth: string;
|
|
56
|
+
paymentMethod: import("@prisma/client").$Enums.operations_collaborator_payment_payment_method_370f4b0a0e_enum;
|
|
57
|
+
notes: string;
|
|
58
|
+
createdAt: Date;
|
|
59
|
+
}[]>;
|
|
60
|
+
getCollaboratorInvoices(user: any, id: number): Promise<{
|
|
61
|
+
id: number;
|
|
62
|
+
collaboratorId: number;
|
|
63
|
+
invoiceNumber: string;
|
|
64
|
+
amount: string;
|
|
65
|
+
issueDate: Date;
|
|
66
|
+
dueDate: Date;
|
|
67
|
+
status: import("@prisma/client").$Enums.operations_collaborator_invoice_status_fa7474b0bf_enum;
|
|
68
|
+
description: string;
|
|
69
|
+
createdAt: Date;
|
|
70
|
+
}[]>;
|
|
71
|
+
createCollaboratorPayment(user: any, collaboratorId: number, data: CreateCollaboratorPaymentDto): Promise<{
|
|
72
|
+
id: number;
|
|
73
|
+
collaboratorId: number;
|
|
74
|
+
amount: string;
|
|
75
|
+
paymentDate: Date;
|
|
76
|
+
referenceMonth: string;
|
|
77
|
+
paymentMethod: import("@prisma/client").$Enums.operations_collaborator_payment_payment_method_370f4b0a0e_enum;
|
|
78
|
+
notes: string;
|
|
79
|
+
createdAt: Date;
|
|
80
|
+
}>;
|
|
81
|
+
updateCollaboratorPayment(user: any, collaboratorId: number, paymentId: number, data: UpdateCollaboratorPaymentDto): Promise<{
|
|
82
|
+
id: number;
|
|
83
|
+
collaboratorId: number;
|
|
84
|
+
amount: string;
|
|
85
|
+
paymentDate: Date;
|
|
86
|
+
referenceMonth: string;
|
|
87
|
+
paymentMethod: import("@prisma/client").$Enums.operations_collaborator_payment_payment_method_370f4b0a0e_enum;
|
|
88
|
+
notes: string;
|
|
89
|
+
createdAt: Date;
|
|
90
|
+
}>;
|
|
91
|
+
deleteCollaboratorPayment(user: any, collaboratorId: number, paymentId: number): Promise<{
|
|
92
|
+
success: boolean;
|
|
93
|
+
}>;
|
|
94
|
+
createCollaboratorInvoice(user: any, collaboratorId: number, data: CreateCollaboratorInvoiceDto): Promise<{
|
|
95
|
+
id: number;
|
|
96
|
+
collaboratorId: number;
|
|
97
|
+
invoiceNumber: string;
|
|
98
|
+
amount: string;
|
|
99
|
+
issueDate: Date;
|
|
100
|
+
dueDate: Date;
|
|
101
|
+
status: import("@prisma/client").$Enums.operations_collaborator_invoice_status_fa7474b0bf_enum;
|
|
102
|
+
description: string;
|
|
103
|
+
createdAt: Date;
|
|
104
|
+
}>;
|
|
105
|
+
updateCollaboratorInvoice(user: any, collaboratorId: number, invoiceId: number, data: UpdateCollaboratorInvoiceDto): Promise<{
|
|
106
|
+
id: number;
|
|
107
|
+
collaboratorId: number;
|
|
108
|
+
invoiceNumber: string;
|
|
109
|
+
amount: string;
|
|
110
|
+
issueDate: Date;
|
|
111
|
+
dueDate: Date;
|
|
112
|
+
status: import("@prisma/client").$Enums.operations_collaborator_invoice_status_fa7474b0bf_enum;
|
|
113
|
+
description: string;
|
|
114
|
+
createdAt: Date;
|
|
115
|
+
}>;
|
|
116
|
+
deleteCollaboratorInvoice(user: any, collaboratorId: number, invoiceId: number): Promise<{
|
|
117
|
+
success: boolean;
|
|
118
|
+
}>;
|
|
46
119
|
getCollaborator(user: any, id: number): Promise<any>;
|
|
47
120
|
createCollaborator(user: any, data: CreateCollaboratorDto): Promise<any>;
|
|
48
121
|
updateCollaborator(user: any, id: number, data: UpdateCollaboratorDto): Promise<any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-collaborators.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-collaborators.controller.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"operations-collaborators.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-collaborators.controller.ts"],"names":[],"mappings":"AAYA,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,sCAAsC,EAAE,MAAM,mDAAmD,CAAC;AAC3G,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AACvE,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,sCAAsC,EAAE,MAAM,mDAAmD,CAAC;AAC3G,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AACvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,iCAAiC;IAChC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,iBAAiB,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,oBAAoB;;;;;;;;;IAQtE,qBAAqB,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,oBAAoB;IAQ1E,iBAAiB,CAAS,IAAI,KAAA;IAK9B,OAAO,CAAS,IAAI,KAAA;;;;;;;;;;;;;;IAKpB,kCAAkC,CACxB,IAAI,KAAA,EACe,EAAE,EAAE,MAAM;;;;;;;;;;;IASvC,6BAA6B,CACnB,IAAI,KAAA,EACe,EAAE,EAAE,MAAM;;;;;;;;;;IASvC,uBAAuB,CACb,IAAI,KAAA,EACe,EAAE,EAAE,MAAM;;;;;;;;;;;IASvC,yBAAyB,CACf,IAAI,KAAA,EACe,cAAc,EAAE,MAAM,EACzC,IAAI,EAAE,4BAA4B;;;;;;;;;;IAU5C,yBAAyB,CACf,IAAI,KAAA,EACe,cAAc,EAAE,MAAM,EACf,SAAS,EAAE,MAAM,EAC3C,IAAI,EAAE,4BAA4B;;;;;;;;;;IAW5C,yBAAyB,CACf,IAAI,KAAA,EACe,cAAc,EAAE,MAAM,EACf,SAAS,EAAE,MAAM;;;IAUrD,yBAAyB,CACf,IAAI,KAAA,EACe,cAAc,EAAE,MAAM,EACzC,IAAI,EAAE,4BAA4B;;;;;;;;;;;IAU5C,yBAAyB,CACf,IAAI,KAAA,EACe,cAAc,EAAE,MAAM,EACf,SAAS,EAAE,MAAM,EAC3C,IAAI,EAAE,4BAA4B;;;;;;;;;;;IAW5C,yBAAyB,CACf,IAAI,KAAA,EACe,cAAc,EAAE,MAAM,EACf,SAAS,EAAE,MAAM;;;IAUrD,eAAe,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;IAQnE,kBAAkB,CAAS,IAAI,KAAA,EAAU,IAAI,EAAE,qBAAqB;IAKpE,kBAAkB,CACR,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EAC7B,IAAI,EAAE,qBAAqB;IAUrC,gCAAgC,CACS,cAAc,EAAE,MAAM,EACrD,IAAI,EAAE,sCAAsC;;;;IAStD,mCAAmC,CACM,cAAc,EAAE,MAAM,EAC3B,SAAS,EAAE,MAAM,EAC3C,IAAI,EAAE,sCAAsC;;;CAQvD"}
|
|
@@ -15,9 +15,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15
15
|
exports.OperationsCollaboratorsController = void 0;
|
|
16
16
|
const api_1 = require("@hed-hog/api");
|
|
17
17
|
const common_1 = require("@nestjs/common");
|
|
18
|
+
const create_collaborator_invoice_dto_1 = require("../dto/create-collaborator-invoice.dto");
|
|
19
|
+
const create_collaborator_payment_dto_1 = require("../dto/create-collaborator-payment.dto");
|
|
18
20
|
const create_collaborator_project_assignment_dto_1 = require("../dto/create-collaborator-project-assignment.dto");
|
|
19
21
|
const create_collaborator_dto_1 = require("../dto/create-collaborator.dto");
|
|
20
22
|
const list_collaborators_dto_1 = require("../dto/list-collaborators.dto");
|
|
23
|
+
const update_collaborator_invoice_dto_1 = require("../dto/update-collaborator-invoice.dto");
|
|
24
|
+
const update_collaborator_payment_dto_1 = require("../dto/update-collaborator-payment.dto");
|
|
21
25
|
const update_collaborator_project_assignment_dto_1 = require("../dto/update-collaborator-project-assignment.dto");
|
|
22
26
|
const update_collaborator_dto_1 = require("../dto/update-collaborator.dto");
|
|
23
27
|
const operations_service_1 = require("../operations.service");
|
|
@@ -40,6 +44,30 @@ let OperationsCollaboratorsController = class OperationsCollaboratorsController
|
|
|
40
44
|
getCollaboratorCompensationHistory(user, id) {
|
|
41
45
|
return this.operationsService.getCollaboratorCompensationHistory(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
42
46
|
}
|
|
47
|
+
getCollaboratorPaymentHistory(user, id) {
|
|
48
|
+
return this.operationsService.getCollaboratorPaymentHistory(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
49
|
+
}
|
|
50
|
+
getCollaboratorInvoices(user, id) {
|
|
51
|
+
return this.operationsService.getCollaboratorInvoices(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
52
|
+
}
|
|
53
|
+
createCollaboratorPayment(user, collaboratorId, data) {
|
|
54
|
+
return this.operationsService.createCollaboratorPayment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), collaboratorId, data);
|
|
55
|
+
}
|
|
56
|
+
updateCollaboratorPayment(user, collaboratorId, paymentId, data) {
|
|
57
|
+
return this.operationsService.updateCollaboratorPayment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), collaboratorId, paymentId, data);
|
|
58
|
+
}
|
|
59
|
+
deleteCollaboratorPayment(user, collaboratorId, paymentId) {
|
|
60
|
+
return this.operationsService.deleteCollaboratorPayment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), collaboratorId, paymentId);
|
|
61
|
+
}
|
|
62
|
+
createCollaboratorInvoice(user, collaboratorId, data) {
|
|
63
|
+
return this.operationsService.createCollaboratorInvoice(Number((user === null || user === void 0 ? void 0 : user.id) || 0), collaboratorId, data);
|
|
64
|
+
}
|
|
65
|
+
updateCollaboratorInvoice(user, collaboratorId, invoiceId, data) {
|
|
66
|
+
return this.operationsService.updateCollaboratorInvoice(Number((user === null || user === void 0 ? void 0 : user.id) || 0), collaboratorId, invoiceId, data);
|
|
67
|
+
}
|
|
68
|
+
deleteCollaboratorInvoice(user, collaboratorId, invoiceId) {
|
|
69
|
+
return this.operationsService.deleteCollaboratorInvoice(Number((user === null || user === void 0 ? void 0 : user.id) || 0), collaboratorId, invoiceId);
|
|
70
|
+
}
|
|
43
71
|
getCollaborator(user, id) {
|
|
44
72
|
return this.operationsService.getCollaboratorByIdForUser(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
45
73
|
}
|
|
@@ -95,6 +123,78 @@ __decorate([
|
|
|
95
123
|
__metadata("design:paramtypes", [Object, Number]),
|
|
96
124
|
__metadata("design:returntype", void 0)
|
|
97
125
|
], OperationsCollaboratorsController.prototype, "getCollaboratorCompensationHistory", null);
|
|
126
|
+
__decorate([
|
|
127
|
+
(0, common_1.Get)('collaborators/:id/payment-history'),
|
|
128
|
+
__param(0, (0, api_1.User)()),
|
|
129
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
130
|
+
__metadata("design:type", Function),
|
|
131
|
+
__metadata("design:paramtypes", [Object, Number]),
|
|
132
|
+
__metadata("design:returntype", void 0)
|
|
133
|
+
], OperationsCollaboratorsController.prototype, "getCollaboratorPaymentHistory", null);
|
|
134
|
+
__decorate([
|
|
135
|
+
(0, common_1.Get)('collaborators/:id/invoices'),
|
|
136
|
+
__param(0, (0, api_1.User)()),
|
|
137
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
138
|
+
__metadata("design:type", Function),
|
|
139
|
+
__metadata("design:paramtypes", [Object, Number]),
|
|
140
|
+
__metadata("design:returntype", void 0)
|
|
141
|
+
], OperationsCollaboratorsController.prototype, "getCollaboratorInvoices", null);
|
|
142
|
+
__decorate([
|
|
143
|
+
(0, common_1.Post)('collaborators/:id/payment-history'),
|
|
144
|
+
__param(0, (0, api_1.User)()),
|
|
145
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
146
|
+
__param(2, (0, common_1.Body)()),
|
|
147
|
+
__metadata("design:type", Function),
|
|
148
|
+
__metadata("design:paramtypes", [Object, Number, create_collaborator_payment_dto_1.CreateCollaboratorPaymentDto]),
|
|
149
|
+
__metadata("design:returntype", void 0)
|
|
150
|
+
], OperationsCollaboratorsController.prototype, "createCollaboratorPayment", null);
|
|
151
|
+
__decorate([
|
|
152
|
+
(0, common_1.Patch)('collaborators/:id/payment-history/:paymentId'),
|
|
153
|
+
__param(0, (0, api_1.User)()),
|
|
154
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
155
|
+
__param(2, (0, common_1.Param)('paymentId', common_1.ParseIntPipe)),
|
|
156
|
+
__param(3, (0, common_1.Body)()),
|
|
157
|
+
__metadata("design:type", Function),
|
|
158
|
+
__metadata("design:paramtypes", [Object, Number, Number, update_collaborator_payment_dto_1.UpdateCollaboratorPaymentDto]),
|
|
159
|
+
__metadata("design:returntype", void 0)
|
|
160
|
+
], OperationsCollaboratorsController.prototype, "updateCollaboratorPayment", null);
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, common_1.Delete)('collaborators/:id/payment-history/:paymentId'),
|
|
163
|
+
__param(0, (0, api_1.User)()),
|
|
164
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
165
|
+
__param(2, (0, common_1.Param)('paymentId', common_1.ParseIntPipe)),
|
|
166
|
+
__metadata("design:type", Function),
|
|
167
|
+
__metadata("design:paramtypes", [Object, Number, Number]),
|
|
168
|
+
__metadata("design:returntype", void 0)
|
|
169
|
+
], OperationsCollaboratorsController.prototype, "deleteCollaboratorPayment", null);
|
|
170
|
+
__decorate([
|
|
171
|
+
(0, common_1.Post)('collaborators/:id/invoices'),
|
|
172
|
+
__param(0, (0, api_1.User)()),
|
|
173
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
174
|
+
__param(2, (0, common_1.Body)()),
|
|
175
|
+
__metadata("design:type", Function),
|
|
176
|
+
__metadata("design:paramtypes", [Object, Number, create_collaborator_invoice_dto_1.CreateCollaboratorInvoiceDto]),
|
|
177
|
+
__metadata("design:returntype", void 0)
|
|
178
|
+
], OperationsCollaboratorsController.prototype, "createCollaboratorInvoice", null);
|
|
179
|
+
__decorate([
|
|
180
|
+
(0, common_1.Patch)('collaborators/:id/invoices/:invoiceId'),
|
|
181
|
+
__param(0, (0, api_1.User)()),
|
|
182
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
183
|
+
__param(2, (0, common_1.Param)('invoiceId', common_1.ParseIntPipe)),
|
|
184
|
+
__param(3, (0, common_1.Body)()),
|
|
185
|
+
__metadata("design:type", Function),
|
|
186
|
+
__metadata("design:paramtypes", [Object, Number, Number, update_collaborator_invoice_dto_1.UpdateCollaboratorInvoiceDto]),
|
|
187
|
+
__metadata("design:returntype", void 0)
|
|
188
|
+
], OperationsCollaboratorsController.prototype, "updateCollaboratorInvoice", null);
|
|
189
|
+
__decorate([
|
|
190
|
+
(0, common_1.Delete)('collaborators/:id/invoices/:invoiceId'),
|
|
191
|
+
__param(0, (0, api_1.User)()),
|
|
192
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
193
|
+
__param(2, (0, common_1.Param)('invoiceId', common_1.ParseIntPipe)),
|
|
194
|
+
__metadata("design:type", Function),
|
|
195
|
+
__metadata("design:paramtypes", [Object, Number, Number]),
|
|
196
|
+
__metadata("design:returntype", void 0)
|
|
197
|
+
], OperationsCollaboratorsController.prototype, "deleteCollaboratorInvoice", null);
|
|
98
198
|
__decorate([
|
|
99
199
|
(0, common_1.Get)('collaborators/:id'),
|
|
100
200
|
__param(0, (0, api_1.User)()),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-collaborators.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-collaborators.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,
|
|
1
|
+
{"version":3,"file":"operations-collaborators.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-collaborators.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -22,7 +22,7 @@ export declare class OperationsContractsController {
|
|
|
22
22
|
id: number;
|
|
23
23
|
code: string;
|
|
24
24
|
name: string | null;
|
|
25
|
-
contractCategory: "
|
|
25
|
+
contractCategory: "other" | "client" | "internal" | "employee" | "contractor" | "supplier" | "vendor" | "partner";
|
|
26
26
|
contractType: "other" | "clt" | "pj" | "freelancer_agreement" | "service_agreement" | "fixed_term" | "recurring_service" | "nda" | "amendment" | "addendum";
|
|
27
27
|
clientName: string | null;
|
|
28
28
|
signatureStatus: "pending" | "expired" | "not_started" | "partially_signed" | "signed";
|
|
@@ -38,7 +38,7 @@ export declare class OperationsContractsController {
|
|
|
38
38
|
effectiveDate: string | null;
|
|
39
39
|
budgetAmount: number | null;
|
|
40
40
|
monthlyHourCap: number | null;
|
|
41
|
-
status: "active" | "closed" | "
|
|
41
|
+
status: "active" | "closed" | "draft" | "expired" | "archived" | "under_review" | "renewal";
|
|
42
42
|
creationMode: ("template" | "blank" | "upload" | "duplicate") | null;
|
|
43
43
|
wizardStep: number | null;
|
|
44
44
|
description: string | null;
|
|
@@ -71,13 +71,13 @@ export declare class OperationsContractsController {
|
|
|
71
71
|
}[]>;
|
|
72
72
|
documents: {
|
|
73
73
|
id: number;
|
|
74
|
-
documentType: "
|
|
74
|
+
documentType: "other" | "source_upload" | "generated_pdf" | "attachment";
|
|
75
75
|
fileId: number | null;
|
|
76
76
|
fileName: string;
|
|
77
77
|
mimeType: string;
|
|
78
78
|
fileContentBase64: string | null;
|
|
79
79
|
isCurrent: boolean;
|
|
80
|
-
extractionStatus: ("
|
|
80
|
+
extractionStatus: ("pending" | "processing" | "failed" | "completed" | "skipped") | null;
|
|
81
81
|
extractionSummary: string | null;
|
|
82
82
|
notes: string | null;
|
|
83
83
|
createdAt: string;
|
|
@@ -95,7 +95,7 @@ export declare class OperationsContractsController {
|
|
|
95
95
|
id: number;
|
|
96
96
|
code: string;
|
|
97
97
|
name: string | null;
|
|
98
|
-
contractCategory: "
|
|
98
|
+
contractCategory: "other" | "client" | "internal" | "employee" | "contractor" | "supplier" | "vendor" | "partner";
|
|
99
99
|
contractType: "other" | "clt" | "pj" | "freelancer_agreement" | "service_agreement" | "fixed_term" | "recurring_service" | "nda" | "amendment" | "addendum";
|
|
100
100
|
clientName: string | null;
|
|
101
101
|
signatureStatus: "pending" | "expired" | "not_started" | "partially_signed" | "signed";
|
|
@@ -111,7 +111,7 @@ export declare class OperationsContractsController {
|
|
|
111
111
|
effectiveDate: string | null;
|
|
112
112
|
budgetAmount: number | null;
|
|
113
113
|
monthlyHourCap: number | null;
|
|
114
|
-
status: "active" | "closed" | "
|
|
114
|
+
status: "active" | "closed" | "draft" | "expired" | "archived" | "under_review" | "renewal";
|
|
115
115
|
creationMode: ("template" | "blank" | "upload" | "duplicate") | null;
|
|
116
116
|
wizardStep: number | null;
|
|
117
117
|
description: string | null;
|
|
@@ -144,13 +144,13 @@ export declare class OperationsContractsController {
|
|
|
144
144
|
}[]>;
|
|
145
145
|
documents: {
|
|
146
146
|
id: number;
|
|
147
|
-
documentType: "
|
|
147
|
+
documentType: "other" | "source_upload" | "generated_pdf" | "attachment";
|
|
148
148
|
fileId: number | null;
|
|
149
149
|
fileName: string;
|
|
150
150
|
mimeType: string;
|
|
151
151
|
fileContentBase64: string | null;
|
|
152
152
|
isCurrent: boolean;
|
|
153
|
-
extractionStatus: ("
|
|
153
|
+
extractionStatus: ("pending" | "processing" | "failed" | "completed" | "skipped") | null;
|
|
154
154
|
extractionSummary: string | null;
|
|
155
155
|
notes: string | null;
|
|
156
156
|
createdAt: string;
|
|
@@ -168,7 +168,7 @@ export declare class OperationsContractsController {
|
|
|
168
168
|
id: number;
|
|
169
169
|
code: string;
|
|
170
170
|
name: string | null;
|
|
171
|
-
contractCategory: "
|
|
171
|
+
contractCategory: "other" | "client" | "internal" | "employee" | "contractor" | "supplier" | "vendor" | "partner";
|
|
172
172
|
contractType: "other" | "clt" | "pj" | "freelancer_agreement" | "service_agreement" | "fixed_term" | "recurring_service" | "nda" | "amendment" | "addendum";
|
|
173
173
|
clientName: string | null;
|
|
174
174
|
signatureStatus: "pending" | "expired" | "not_started" | "partially_signed" | "signed";
|
|
@@ -184,7 +184,7 @@ export declare class OperationsContractsController {
|
|
|
184
184
|
effectiveDate: string | null;
|
|
185
185
|
budgetAmount: number | null;
|
|
186
186
|
monthlyHourCap: number | null;
|
|
187
|
-
status: "active" | "closed" | "
|
|
187
|
+
status: "active" | "closed" | "draft" | "expired" | "archived" | "under_review" | "renewal";
|
|
188
188
|
creationMode: ("template" | "blank" | "upload" | "duplicate") | null;
|
|
189
189
|
wizardStep: number | null;
|
|
190
190
|
description: string | null;
|
|
@@ -217,13 +217,13 @@ export declare class OperationsContractsController {
|
|
|
217
217
|
}[]>;
|
|
218
218
|
documents: {
|
|
219
219
|
id: number;
|
|
220
|
-
documentType: "
|
|
220
|
+
documentType: "other" | "source_upload" | "generated_pdf" | "attachment";
|
|
221
221
|
fileId: number | null;
|
|
222
222
|
fileName: string;
|
|
223
223
|
mimeType: string;
|
|
224
224
|
fileContentBase64: string | null;
|
|
225
225
|
isCurrent: boolean;
|
|
226
|
-
extractionStatus: ("
|
|
226
|
+
extractionStatus: ("pending" | "processing" | "failed" | "completed" | "skipped") | null;
|
|
227
227
|
extractionSummary: string | null;
|
|
228
228
|
notes: string | null;
|
|
229
229
|
createdAt: string;
|
|
@@ -113,6 +113,7 @@ export declare class OperationsProjectsController {
|
|
|
113
113
|
managerCollaboratorId: number | null;
|
|
114
114
|
clientPersonId: number | null;
|
|
115
115
|
clientAvatarId: number | null;
|
|
116
|
+
clientUserPhotoId: number | null;
|
|
116
117
|
code: string;
|
|
117
118
|
name: string;
|
|
118
119
|
clientName: string | null;
|
|
@@ -165,6 +166,7 @@ export declare class OperationsProjectsController {
|
|
|
165
166
|
managerCollaboratorId: number | null;
|
|
166
167
|
clientPersonId: number | null;
|
|
167
168
|
clientAvatarId: number | null;
|
|
169
|
+
clientUserPhotoId: number | null;
|
|
168
170
|
code: string;
|
|
169
171
|
name: string;
|
|
170
172
|
clientName: string | null;
|
|
@@ -217,6 +219,7 @@ export declare class OperationsProjectsController {
|
|
|
217
219
|
managerCollaboratorId: number | null;
|
|
218
220
|
clientPersonId: number | null;
|
|
219
221
|
clientAvatarId: number | null;
|
|
222
|
+
clientUserPhotoId: number | null;
|
|
220
223
|
code: string;
|
|
221
224
|
name: string;
|
|
222
225
|
clientName: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-projects.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-projects.controller.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,+BAA+B,EAAE,MAAM,iCAAiC,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,4BAA4B;IAC3B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,kBAAkB,CACR,IAAI,KAAA,EACH,gBAAgB,EAAE,+BAA+B;;;;;;;;;;;;;;;;;;;;IAS5D,cAAc,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,iBAAiB;;;;;;;;;IAKhE,mBAAmB,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;IAKvE,YAAY,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,eAAe;;;;;;;;;IAK5D,eAAe,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;IAKnE,UAAU,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"operations-projects.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-projects.controller.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,+BAA+B,EAAE,MAAM,iCAAiC,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,4BAA4B;IAC3B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,kBAAkB,CACR,IAAI,KAAA,EACH,gBAAgB,EAAE,+BAA+B;;;;;;;;;;;;;;;;;;;;IAS5D,cAAc,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,iBAAiB;;;;;;;;;IAKhE,mBAAmB,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;IAKvE,YAAY,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,eAAe;;;;;;;;;IAK5D,eAAe,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;IAKnE,UAAU,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAK9D,aAAa,CAAS,IAAI,KAAA,EAAU,IAAI,KAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKxC,aAAa,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM,EAAU,IAAI,KAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAK/E,aAAa,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;IAKjE,gBAAgB,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;;;;;;IAMpE,cAAc,CACJ,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EACrB,IAAI,EAAE,UAAU;;;;;;;;;;;IAMlC,iBAAiB,CACP,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EACE,cAAc,EAAE,MAAM;;;CAIhE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const INVOICE_STATUS_VALUES: readonly ["pending", "paid", "cancelled", "overdue"];
|
|
2
|
+
export type InvoiceStatus = (typeof INVOICE_STATUS_VALUES)[number];
|
|
3
|
+
export declare class CreateCollaboratorInvoiceDto {
|
|
4
|
+
invoiceNumber?: string | null;
|
|
5
|
+
amount: number;
|
|
6
|
+
issueDate: string;
|
|
7
|
+
dueDate?: string | null;
|
|
8
|
+
status?: InvoiceStatus;
|
|
9
|
+
description?: string | null;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=create-collaborator-invoice.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-collaborator-invoice.dto.d.ts","sourceRoot":"","sources":["../../src/dto/create-collaborator-invoice.dto.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,qBAAqB,sDAKxB,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEnE,qBAAa,4BAA4B;IAIvC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAO9B,MAAM,EAAG,MAAM,CAAC;IAGhB,SAAS,EAAG,MAAM,CAAC;IAInB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAIxB,MAAM,CAAC,EAAE,aAAa,CAAC;IAIvB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateCollaboratorInvoiceDto = exports.INVOICE_STATUS_VALUES = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
exports.INVOICE_STATUS_VALUES = [
|
|
16
|
+
'pending',
|
|
17
|
+
'paid',
|
|
18
|
+
'cancelled',
|
|
19
|
+
'overdue',
|
|
20
|
+
];
|
|
21
|
+
class CreateCollaboratorInvoiceDto {
|
|
22
|
+
}
|
|
23
|
+
exports.CreateCollaboratorInvoiceDto = CreateCollaboratorInvoiceDto;
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
(0, class_validator_1.MaxLength)(50),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], CreateCollaboratorInvoiceDto.prototype, "invoiceNumber", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_transformer_1.Transform)(({ value }) => value === '' || value === undefined || value === null ? undefined : Number(value)),
|
|
32
|
+
(0, class_validator_1.IsNumber)(),
|
|
33
|
+
(0, class_validator_1.Min)(0),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], CreateCollaboratorInvoiceDto.prototype, "amount", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_validator_1.IsString)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], CreateCollaboratorInvoiceDto.prototype, "issueDate", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsOptional)(),
|
|
42
|
+
(0, class_validator_1.IsString)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], CreateCollaboratorInvoiceDto.prototype, "dueDate", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
(0, class_validator_1.IsIn)(exports.INVOICE_STATUS_VALUES),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], CreateCollaboratorInvoiceDto.prototype, "status", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsOptional)(),
|
|
52
|
+
(0, class_validator_1.IsString)(),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], CreateCollaboratorInvoiceDto.prototype, "description", void 0);
|
|
55
|
+
//# sourceMappingURL=create-collaborator-invoice.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-collaborator-invoice.dto.js","sourceRoot":"","sources":["../../src/dto/create-collaborator-invoice.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA8C;AAC9C,qDAAuF;AAE1E,QAAA,qBAAqB,GAAG;IACnC,SAAS;IACT,MAAM;IACN,WAAW;IACX,SAAS;CACD,CAAC;AAGX,MAAa,4BAA4B;CA2BxC;AA3BD,oEA2BC;AAvBC;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,2BAAS,EAAC,EAAE,CAAC;;mEACgB;AAO9B;IALC,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CACvB,KAAK,KAAK,EAAE,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAClF;IACA,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;4DACS;AAGhB;IADC,IAAA,0BAAQ,GAAE;;+DACQ;AAInB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;6DACa;AAIxB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,sBAAI,EAAC,6BAAqB,CAAC;;4DACL;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;iEACiB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const PAYMENT_METHOD_VALUES: readonly ["bank_transfer", "pix", "check", "other"];
|
|
2
|
+
export type PaymentMethod = (typeof PAYMENT_METHOD_VALUES)[number];
|
|
3
|
+
export declare class CreateCollaboratorPaymentDto {
|
|
4
|
+
amount: number;
|
|
5
|
+
paymentDate: string;
|
|
6
|
+
referenceMonth?: string | null;
|
|
7
|
+
paymentMethod?: PaymentMethod;
|
|
8
|
+
notes?: string | null;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=create-collaborator-payment.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-collaborator-payment.dto.d.ts","sourceRoot":"","sources":["../../src/dto/create-collaborator-payment.dto.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,qBAAqB,qDAKxB,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEnE,qBAAa,4BAA4B;IAMvC,MAAM,EAAG,MAAM,CAAC;IAGhB,WAAW,EAAG,MAAM,CAAC;IAKrB,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAI/B,aAAa,CAAC,EAAE,aAAa,CAAC;IAI9B,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateCollaboratorPaymentDto = exports.PAYMENT_METHOD_VALUES = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
exports.PAYMENT_METHOD_VALUES = [
|
|
16
|
+
'bank_transfer',
|
|
17
|
+
'pix',
|
|
18
|
+
'check',
|
|
19
|
+
'other',
|
|
20
|
+
];
|
|
21
|
+
class CreateCollaboratorPaymentDto {
|
|
22
|
+
}
|
|
23
|
+
exports.CreateCollaboratorPaymentDto = CreateCollaboratorPaymentDto;
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_transformer_1.Transform)(({ value }) => value === '' || value === undefined || value === null ? undefined : Number(value)),
|
|
26
|
+
(0, class_validator_1.IsNumber)(),
|
|
27
|
+
(0, class_validator_1.Min)(0),
|
|
28
|
+
__metadata("design:type", Number)
|
|
29
|
+
], CreateCollaboratorPaymentDto.prototype, "amount", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsString)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], CreateCollaboratorPaymentDto.prototype, "paymentDate", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, class_validator_1.IsOptional)(),
|
|
36
|
+
(0, class_validator_1.IsString)(),
|
|
37
|
+
(0, class_validator_1.MaxLength)(7),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], CreateCollaboratorPaymentDto.prototype, "referenceMonth", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsOptional)(),
|
|
42
|
+
(0, class_validator_1.IsIn)(exports.PAYMENT_METHOD_VALUES),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], CreateCollaboratorPaymentDto.prototype, "paymentMethod", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
(0, class_validator_1.IsString)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], CreateCollaboratorPaymentDto.prototype, "notes", void 0);
|
|
50
|
+
//# sourceMappingURL=create-collaborator-payment.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-collaborator-payment.dto.js","sourceRoot":"","sources":["../../src/dto/create-collaborator-payment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA8C;AAC9C,qDAAuF;AAE1E,QAAA,qBAAqB,GAAG;IACnC,eAAe;IACf,KAAK;IACL,OAAO;IACP,OAAO;CACC,CAAC;AAGX,MAAa,4BAA4B;CAuBxC;AAvBD,oEAuBC;AAjBC;IALC,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CACvB,KAAK,KAAK,EAAE,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAClF;IACA,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;4DACS;AAGhB;IADC,IAAA,0BAAQ,GAAE;;iEACU;AAKrB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,2BAAS,EAAC,CAAC,CAAC;;oEACkB;AAI/B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,sBAAI,EAAC,6BAAqB,CAAC;;mEACE;AAI9B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2DACW"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-collaborator-invoice.dto.d.ts","sourceRoot":"","sources":["../../src/dto/list-collaborator-invoice.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAExD,qBAAa,0BAA2B,SAAQ,aAAa;CAAG"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListCollaboratorInvoiceDto = void 0;
|
|
4
|
+
const api_pagination_1 = require("@hed-hog/api-pagination");
|
|
5
|
+
class ListCollaboratorInvoiceDto extends api_pagination_1.PaginationDTO {
|
|
6
|
+
}
|
|
7
|
+
exports.ListCollaboratorInvoiceDto = ListCollaboratorInvoiceDto;
|
|
8
|
+
//# sourceMappingURL=list-collaborator-invoice.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-collaborator-invoice.dto.js","sourceRoot":"","sources":["../../src/dto/list-collaborator-invoice.dto.ts"],"names":[],"mappings":";;;AAAA,4DAAwD;AAExD,MAAa,0BAA2B,SAAQ,8BAAa;CAAG;AAAhE,gEAAgE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-collaborator-payment.dto.d.ts","sourceRoot":"","sources":["../../src/dto/list-collaborator-payment.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAExD,qBAAa,0BAA2B,SAAQ,aAAa;CAAG"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListCollaboratorPaymentDto = void 0;
|
|
4
|
+
const api_pagination_1 = require("@hed-hog/api-pagination");
|
|
5
|
+
class ListCollaboratorPaymentDto extends api_pagination_1.PaginationDTO {
|
|
6
|
+
}
|
|
7
|
+
exports.ListCollaboratorPaymentDto = ListCollaboratorPaymentDto;
|
|
8
|
+
//# sourceMappingURL=list-collaborator-payment.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-collaborator-payment.dto.js","sourceRoot":"","sources":["../../src/dto/list-collaborator-payment.dto.ts"],"names":[],"mappings":";;;AAAA,4DAAwD;AAExD,MAAa,0BAA2B,SAAQ,8BAAa;CAAG;AAAhE,gEAAgE"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CreateCollaboratorInvoiceDto } from './create-collaborator-invoice.dto';
|
|
2
|
+
declare const UpdateCollaboratorInvoiceDto_base: import("@nestjs/mapped-types").MappedType<Partial<CreateCollaboratorInvoiceDto>>;
|
|
3
|
+
export declare class UpdateCollaboratorInvoiceDto extends UpdateCollaboratorInvoiceDto_base {
|
|
4
|
+
}
|
|
5
|
+
export {};
|
|
6
|
+
//# sourceMappingURL=update-collaborator-invoice.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-collaborator-invoice.dto.d.ts","sourceRoot":"","sources":["../../src/dto/update-collaborator-invoice.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;;AAEjF,qBAAa,4BAA6B,SAAQ,iCAEjD;CAAG"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateCollaboratorInvoiceDto = void 0;
|
|
4
|
+
const mapped_types_1 = require("@nestjs/mapped-types");
|
|
5
|
+
const create_collaborator_invoice_dto_1 = require("./create-collaborator-invoice.dto");
|
|
6
|
+
class UpdateCollaboratorInvoiceDto extends (0, mapped_types_1.PartialType)(create_collaborator_invoice_dto_1.CreateCollaboratorInvoiceDto) {
|
|
7
|
+
}
|
|
8
|
+
exports.UpdateCollaboratorInvoiceDto = UpdateCollaboratorInvoiceDto;
|
|
9
|
+
//# sourceMappingURL=update-collaborator-invoice.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-collaborator-invoice.dto.js","sourceRoot":"","sources":["../../src/dto/update-collaborator-invoice.dto.ts"],"names":[],"mappings":";;;AAAA,uDAAmD;AACnD,uFAAiF;AAEjF,MAAa,4BAA6B,SAAQ,IAAA,0BAAW,EAC3D,8DAA4B,CAC7B;CAAG;AAFJ,oEAEI"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CreateCollaboratorPaymentDto } from './create-collaborator-payment.dto';
|
|
2
|
+
declare const UpdateCollaboratorPaymentDto_base: import("@nestjs/mapped-types").MappedType<Partial<CreateCollaboratorPaymentDto>>;
|
|
3
|
+
export declare class UpdateCollaboratorPaymentDto extends UpdateCollaboratorPaymentDto_base {
|
|
4
|
+
}
|
|
5
|
+
export {};
|
|
6
|
+
//# sourceMappingURL=update-collaborator-payment.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-collaborator-payment.dto.d.ts","sourceRoot":"","sources":["../../src/dto/update-collaborator-payment.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;;AAEjF,qBAAa,4BAA6B,SAAQ,iCAEjD;CAAG"}
|