@hed-hog/operations 0.0.305 → 0.0.309
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-approvals.controller.d.ts +114 -1
- package/dist/controllers/operations-approvals.controller.d.ts.map +1 -1
- package/dist/controllers/operations-approvals.controller.js +16 -3
- package/dist/controllers/operations-approvals.controller.js.map +1 -1
- package/dist/controllers/operations-collaborators.controller.d.ts +16 -1
- package/dist/controllers/operations-collaborators.controller.d.ts.map +1 -1
- package/dist/controllers/operations-collaborators.controller.js +16 -3
- package/dist/controllers/operations-collaborators.controller.js.map +1 -1
- package/dist/controllers/operations-contracts.controller.d.ts +14 -453
- package/dist/controllers/operations-contracts.controller.d.ts.map +1 -1
- package/dist/controllers/operations-contracts.controller.js +11 -112
- package/dist/controllers/operations-contracts.controller.js.map +1 -1
- package/dist/controllers/operations-org-structure.controller.d.ts +65 -2
- package/dist/controllers/operations-org-structure.controller.d.ts.map +1 -1
- package/dist/controllers/operations-org-structure.controller.js +18 -5
- package/dist/controllers/operations-org-structure.controller.js.map +1 -1
- package/dist/controllers/operations-projects.controller.d.ts +28 -4
- package/dist/controllers/operations-projects.controller.d.ts.map +1 -1
- package/dist/controllers/operations-projects.controller.js +17 -5
- package/dist/controllers/operations-projects.controller.js.map +1 -1
- package/dist/controllers/operations-timesheets.controller.d.ts +52 -4
- package/dist/controllers/operations-timesheets.controller.d.ts.map +1 -1
- package/dist/controllers/operations-timesheets.controller.js +28 -11
- package/dist/controllers/operations-timesheets.controller.js.map +1 -1
- package/dist/dto/list-approvals.dto.d.ts +6 -0
- package/dist/dto/list-approvals.dto.d.ts.map +1 -0
- package/dist/dto/list-approvals.dto.js +28 -0
- package/dist/dto/list-approvals.dto.js.map +1 -0
- package/dist/dto/list-collaborator-types.dto.d.ts +3 -1
- package/dist/dto/list-collaborator-types.dto.d.ts.map +1 -1
- package/dist/dto/list-collaborator-types.dto.js +7 -1
- package/dist/dto/list-collaborator-types.dto.js.map +1 -1
- package/dist/dto/list-collaborators.dto.d.ts +1 -0
- package/dist/dto/list-collaborators.dto.d.ts.map +1 -1
- package/dist/dto/list-collaborators.dto.js +5 -0
- package/dist/dto/list-collaborators.dto.js.map +1 -1
- package/dist/dto/list-contracts.dto.d.ts +8 -0
- package/dist/dto/list-contracts.dto.d.ts.map +1 -0
- package/dist/dto/list-contracts.dto.js +38 -0
- package/dist/dto/list-contracts.dto.js.map +1 -0
- package/dist/dto/list-departments.dto.d.ts +5 -0
- package/dist/dto/list-departments.dto.d.ts.map +1 -0
- package/dist/dto/list-departments.dto.js +23 -0
- package/dist/dto/list-departments.dto.js.map +1 -0
- package/dist/dto/list-projects.dto.d.ts +5 -0
- package/dist/dto/list-projects.dto.d.ts.map +1 -0
- package/dist/dto/list-projects.dto.js +23 -0
- package/dist/dto/list-projects.dto.js.map +1 -0
- package/dist/dto/list-schedule-adjustments.dto.d.ts +5 -0
- package/dist/dto/list-schedule-adjustments.dto.d.ts.map +1 -0
- package/dist/dto/list-schedule-adjustments.dto.js +23 -0
- package/dist/dto/list-schedule-adjustments.dto.js.map +1 -0
- package/dist/dto/list-time-off-requests.dto.d.ts +5 -0
- package/dist/dto/list-time-off-requests.dto.d.ts.map +1 -0
- package/dist/dto/list-time-off-requests.dto.js +23 -0
- package/dist/dto/list-time-off-requests.dto.js.map +1 -0
- package/dist/dto/list-timesheets.dto.d.ts +5 -0
- package/dist/dto/list-timesheets.dto.d.ts.map +1 -0
- package/dist/dto/list-timesheets.dto.js +23 -0
- package/dist/dto/list-timesheets.dto.js.map +1 -0
- package/dist/dto/reorder-collaborator-types.dto.d.ts +4 -0
- package/dist/dto/reorder-collaborator-types.dto.d.ts.map +1 -0
- package/dist/dto/reorder-collaborator-types.dto.js +25 -0
- package/dist/dto/reorder-collaborator-types.dto.js.map +1 -0
- package/dist/dto/update-collaborator-type.dto.d.ts +3 -1
- package/dist/dto/update-collaborator-type.dto.d.ts.map +1 -1
- package/dist/dto/update-collaborator-type.dto.js +2 -1
- package/dist/dto/update-collaborator-type.dto.js.map +1 -1
- package/dist/operations.service.d.ts +362 -271
- package/dist/operations.service.d.ts.map +1 -1
- package/dist/operations.service.js +1195 -1098
- package/dist/operations.service.js.map +1 -1
- package/dist/operations.service.spec.js +73 -22
- package/dist/operations.service.spec.js.map +1 -1
- package/hedhog/data/menu.yaml +19 -55
- package/hedhog/data/operations_collaborator_type.yaml +76 -76
- package/hedhog/data/route.yaml +52 -70
- package/hedhog/frontend/app/_components/async-options-combobox.tsx.ejs +5 -3
- package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +8 -1
- package/hedhog/frontend/app/_components/collaborator-select-with-create.tsx.ejs +15 -10
- package/hedhog/frontend/app/_components/contract-details-screen.tsx.ejs +108 -213
- package/hedhog/frontend/app/_components/contract-form-screen.tsx.ejs +251 -2039
- package/hedhog/frontend/app/_components/project-details-screen.tsx.ejs +167 -60
- package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +70 -301
- package/hedhog/frontend/app/_components/system-user-select-with-create.tsx.ejs +102 -51
- package/hedhog/frontend/app/_components/timesheet-task-create-sheet.tsx.ejs +1 -0
- package/hedhog/frontend/app/_lib/types.ts.ejs +19 -24
- package/hedhog/frontend/app/_lib/utils/format.ts.ejs +14 -9
- package/hedhog/frontend/app/approvals/page.tsx.ejs +843 -151
- package/hedhog/frontend/app/collaborator-types/page.tsx.ejs +457 -154
- package/hedhog/frontend/app/collaborators/page.tsx.ejs +118 -49
- package/hedhog/frontend/app/contracts/[id]/page.tsx.ejs +2 -2
- package/hedhog/frontend/app/contracts/page.tsx.ejs +215 -617
- package/hedhog/frontend/app/departments/page.tsx.ejs +257 -113
- package/hedhog/frontend/app/projects/page.tsx.ejs +90 -51
- package/hedhog/frontend/app/schedule-adjustments/page.tsx.ejs +546 -118
- package/hedhog/frontend/app/time-off/page.tsx.ejs +400 -123
- package/hedhog/frontend/app/timesheets/page.tsx.ejs +647 -342
- package/hedhog/frontend/messages/en.json +148 -14
- package/hedhog/frontend/messages/pt.json +199 -56
- package/hedhog/table/operations_collaborator.yaml +18 -18
- package/hedhog/table/operations_collaborator_equity_participation.yaml +43 -43
- package/hedhog/table/operations_collaborator_type.yaml +33 -33
- package/hedhog/table/operations_contract.yaml +0 -9
- package/hedhog/table/operations_contract_document.yaml +33 -33
- package/package.json +4 -4
- package/src/controllers/operations-approvals.controller.ts +9 -3
- package/src/controllers/operations-collaborators.controller.ts +15 -2
- package/src/controllers/operations-contracts.controller.ts +8 -92
- package/src/controllers/operations-org-structure.controller.ts +17 -4
- package/src/controllers/operations-projects.controller.ts +10 -4
- package/src/controllers/operations-timesheets.controller.ts +30 -8
- package/src/dto/create-collaborator-type.dto.ts +43 -43
- package/src/dto/create-collaborator.dto.ts +223 -223
- package/src/dto/list-approvals.dto.ts +12 -0
- package/src/dto/list-collaborator-types.dto.ts +20 -15
- package/src/dto/list-collaborators.dto.ts +34 -30
- package/src/dto/list-contracts.dto.ts +20 -0
- package/src/dto/list-departments.dto.ts +8 -0
- package/src/dto/list-projects.dto.ts +8 -0
- package/src/dto/list-schedule-adjustments.dto.ts +8 -0
- package/src/dto/list-time-off-requests.dto.ts +8 -0
- package/src/dto/list-timesheets.dto.ts +8 -0
- package/src/dto/reorder-collaborator-types.dto.ts +10 -0
- package/src/dto/update-collaborator-type.dto.ts +4 -3
- package/src/dto/update-collaborator.dto.ts +3 -3
- package/src/operations.service.spec.ts +96 -30
- package/src/operations.service.ts +1738 -1777
- package/hedhog/frontend/app/_components/contract-creation-wizard.tsx.ejs +0 -631
- package/hedhog/frontend/app/_components/contract-template-form-screen.tsx.ejs +0 -526
- package/hedhog/frontend/app/_components/contract-template-select-with-create.tsx.ejs +0 -247
- package/hedhog/frontend/app/_components/contract-wizard-sheet.tsx.ejs +0 -3520
- package/hedhog/frontend/app/contracts/templates/page.tsx.ejs +0 -380
- package/hedhog/frontend/app/team/page.tsx.ejs +0 -352
- package/hedhog/table/operations_contract_financial_term.yaml +0 -40
- package/hedhog/table/operations_contract_revision.yaml +0 -38
- package/hedhog/table/operations_contract_signature.yaml +0 -38
- package/hedhog/table/operations_contract_template.yaml +0 -58
|
@@ -15,97 +15,47 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15
15
|
exports.OperationsContractsController = void 0;
|
|
16
16
|
const api_1 = require("@hed-hog/api");
|
|
17
17
|
const common_1 = require("@nestjs/common");
|
|
18
|
+
const list_contracts_dto_1 = require("../dto/list-contracts.dto");
|
|
18
19
|
const operations_service_1 = require("../operations.service");
|
|
19
20
|
let OperationsContractsController = class OperationsContractsController {
|
|
20
21
|
constructor(operationsService) {
|
|
21
22
|
this.operationsService = operationsService;
|
|
22
23
|
}
|
|
23
|
-
|
|
24
|
-
return this.operationsService.
|
|
24
|
+
listContracts(user, filters) {
|
|
25
|
+
return this.operationsService.listContracts(Number((user === null || user === void 0 ? void 0 : user.id) || 0), filters);
|
|
25
26
|
}
|
|
26
|
-
|
|
27
|
-
return this.operationsService.
|
|
28
|
-
}
|
|
29
|
-
createContractTemplate(user, data) {
|
|
30
|
-
return this.operationsService.createContractTemplate(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
31
|
-
}
|
|
32
|
-
updateContractTemplate(user, id, data) {
|
|
33
|
-
return this.operationsService.updateContractTemplate(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
34
|
-
}
|
|
35
|
-
listContracts(user) {
|
|
36
|
-
return this.operationsService.listContracts(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
27
|
+
getContractStats(user) {
|
|
28
|
+
return this.operationsService.getContractStats(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
37
29
|
}
|
|
38
30
|
getContract(user, id) {
|
|
39
31
|
return this.operationsService.getContractById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
40
32
|
}
|
|
41
|
-
createContractDraft(user, data) {
|
|
42
|
-
return this.operationsService.createContractDraft(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
43
|
-
}
|
|
44
33
|
createContract(user, data) {
|
|
45
34
|
return this.operationsService.createContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
46
35
|
}
|
|
47
|
-
extractContractDraft(user, data) {
|
|
48
|
-
return this.operationsService.extractContractDraft(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
49
|
-
}
|
|
50
|
-
extractContractSource(user, id, data) {
|
|
51
|
-
return this.operationsService.extractContractSource(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
52
|
-
}
|
|
53
|
-
generateContractContent(user, id, data) {
|
|
54
|
-
return this.operationsService.generateContractContent(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
55
|
-
}
|
|
56
|
-
reviewContractLegally(user, id, data) {
|
|
57
|
-
return this.operationsService.reviewContractLegally(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
58
|
-
}
|
|
59
36
|
updateContract(user, id, data) {
|
|
60
37
|
return this.operationsService.updateContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
61
38
|
}
|
|
62
39
|
removeContract(user, id) {
|
|
63
40
|
return this.operationsService.removeContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
64
41
|
}
|
|
65
|
-
generateContractPdf(user, id) {
|
|
66
|
-
return this.operationsService.generateContractPdf(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
67
|
-
}
|
|
68
42
|
};
|
|
69
43
|
exports.OperationsContractsController = OperationsContractsController;
|
|
70
44
|
__decorate([
|
|
71
|
-
(0, common_1.Get)('
|
|
72
|
-
__param(0, (0, api_1.User)()),
|
|
73
|
-
__metadata("design:type", Function),
|
|
74
|
-
__metadata("design:paramtypes", [Object]),
|
|
75
|
-
__metadata("design:returntype", void 0)
|
|
76
|
-
], OperationsContractsController.prototype, "listContractTemplates", null);
|
|
77
|
-
__decorate([
|
|
78
|
-
(0, common_1.Get)('contract-templates/:id'),
|
|
79
|
-
__param(0, (0, api_1.User)()),
|
|
80
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
81
|
-
__metadata("design:type", Function),
|
|
82
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
83
|
-
__metadata("design:returntype", void 0)
|
|
84
|
-
], OperationsContractsController.prototype, "getContractTemplate", null);
|
|
85
|
-
__decorate([
|
|
86
|
-
(0, common_1.Post)('contract-templates'),
|
|
87
|
-
__param(0, (0, api_1.User)()),
|
|
88
|
-
__param(1, (0, common_1.Body)()),
|
|
89
|
-
__metadata("design:type", Function),
|
|
90
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
91
|
-
__metadata("design:returntype", void 0)
|
|
92
|
-
], OperationsContractsController.prototype, "createContractTemplate", null);
|
|
93
|
-
__decorate([
|
|
94
|
-
(0, common_1.Patch)('contract-templates/:id'),
|
|
45
|
+
(0, common_1.Get)('contracts'),
|
|
95
46
|
__param(0, (0, api_1.User)()),
|
|
96
|
-
__param(1, (0, common_1.
|
|
97
|
-
__param(2, (0, common_1.Body)()),
|
|
47
|
+
__param(1, (0, common_1.Query)()),
|
|
98
48
|
__metadata("design:type", Function),
|
|
99
|
-
__metadata("design:paramtypes", [Object,
|
|
49
|
+
__metadata("design:paramtypes", [Object, list_contracts_dto_1.ListContractsDto]),
|
|
100
50
|
__metadata("design:returntype", void 0)
|
|
101
|
-
], OperationsContractsController.prototype, "
|
|
51
|
+
], OperationsContractsController.prototype, "listContracts", null);
|
|
102
52
|
__decorate([
|
|
103
|
-
(0, common_1.Get)('contracts'),
|
|
53
|
+
(0, common_1.Get)('contracts/stats'),
|
|
104
54
|
__param(0, (0, api_1.User)()),
|
|
105
55
|
__metadata("design:type", Function),
|
|
106
56
|
__metadata("design:paramtypes", [Object]),
|
|
107
57
|
__metadata("design:returntype", void 0)
|
|
108
|
-
], OperationsContractsController.prototype, "
|
|
58
|
+
], OperationsContractsController.prototype, "getContractStats", null);
|
|
109
59
|
__decorate([
|
|
110
60
|
(0, common_1.Get)('contracts/:id'),
|
|
111
61
|
__param(0, (0, api_1.User)()),
|
|
@@ -114,14 +64,6 @@ __decorate([
|
|
|
114
64
|
__metadata("design:paramtypes", [Object, Number]),
|
|
115
65
|
__metadata("design:returntype", void 0)
|
|
116
66
|
], OperationsContractsController.prototype, "getContract", null);
|
|
117
|
-
__decorate([
|
|
118
|
-
(0, common_1.Post)('contracts/drafts'),
|
|
119
|
-
__param(0, (0, api_1.User)()),
|
|
120
|
-
__param(1, (0, common_1.Body)()),
|
|
121
|
-
__metadata("design:type", Function),
|
|
122
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
123
|
-
__metadata("design:returntype", void 0)
|
|
124
|
-
], OperationsContractsController.prototype, "createContractDraft", null);
|
|
125
67
|
__decorate([
|
|
126
68
|
(0, common_1.Post)('contracts'),
|
|
127
69
|
__param(0, (0, api_1.User)()),
|
|
@@ -130,41 +72,6 @@ __decorate([
|
|
|
130
72
|
__metadata("design:paramtypes", [Object, Object]),
|
|
131
73
|
__metadata("design:returntype", void 0)
|
|
132
74
|
], OperationsContractsController.prototype, "createContract", null);
|
|
133
|
-
__decorate([
|
|
134
|
-
(0, common_1.Post)('contracts/extract-draft'),
|
|
135
|
-
__param(0, (0, api_1.User)()),
|
|
136
|
-
__param(1, (0, common_1.Body)()),
|
|
137
|
-
__metadata("design:type", Function),
|
|
138
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
139
|
-
__metadata("design:returntype", void 0)
|
|
140
|
-
], OperationsContractsController.prototype, "extractContractDraft", null);
|
|
141
|
-
__decorate([
|
|
142
|
-
(0, common_1.Post)('contracts/:id/extract-source'),
|
|
143
|
-
__param(0, (0, api_1.User)()),
|
|
144
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
145
|
-
__param(2, (0, common_1.Body)()),
|
|
146
|
-
__metadata("design:type", Function),
|
|
147
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
148
|
-
__metadata("design:returntype", void 0)
|
|
149
|
-
], OperationsContractsController.prototype, "extractContractSource", null);
|
|
150
|
-
__decorate([
|
|
151
|
-
(0, common_1.Post)('contracts/:id/generate-content'),
|
|
152
|
-
__param(0, (0, api_1.User)()),
|
|
153
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
154
|
-
__param(2, (0, common_1.Body)()),
|
|
155
|
-
__metadata("design:type", Function),
|
|
156
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
157
|
-
__metadata("design:returntype", void 0)
|
|
158
|
-
], OperationsContractsController.prototype, "generateContractContent", null);
|
|
159
|
-
__decorate([
|
|
160
|
-
(0, common_1.Post)('contracts/:id/legal-review'),
|
|
161
|
-
__param(0, (0, api_1.User)()),
|
|
162
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
163
|
-
__param(2, (0, common_1.Body)()),
|
|
164
|
-
__metadata("design:type", Function),
|
|
165
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
166
|
-
__metadata("design:returntype", void 0)
|
|
167
|
-
], OperationsContractsController.prototype, "reviewContractLegally", null);
|
|
168
75
|
__decorate([
|
|
169
76
|
(0, common_1.Patch)('contracts/:id'),
|
|
170
77
|
__param(0, (0, api_1.User)()),
|
|
@@ -182,14 +89,6 @@ __decorate([
|
|
|
182
89
|
__metadata("design:paramtypes", [Object, Number]),
|
|
183
90
|
__metadata("design:returntype", void 0)
|
|
184
91
|
], OperationsContractsController.prototype, "removeContract", null);
|
|
185
|
-
__decorate([
|
|
186
|
-
(0, common_1.Post)('contracts/:id/generate-pdf'),
|
|
187
|
-
__param(0, (0, api_1.User)()),
|
|
188
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
189
|
-
__metadata("design:type", Function),
|
|
190
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
191
|
-
__metadata("design:returntype", void 0)
|
|
192
|
-
], OperationsContractsController.prototype, "generateContractPdf", null);
|
|
193
92
|
exports.OperationsContractsController = OperationsContractsController = __decorate([
|
|
194
93
|
(0, api_1.Role)(),
|
|
195
94
|
(0, common_1.Controller)('operations'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-contracts.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-contracts.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,
|
|
1
|
+
{"version":3,"file":"operations-contracts.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-contracts.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { CreateCollaboratorTypeDto } from '../dto/create-collaborator-type.dto';
|
|
2
2
|
import { ListCollaboratorTypesDto } from '../dto/list-collaborator-types.dto';
|
|
3
|
+
import { ListDepartmentsDto } from '../dto/list-departments.dto';
|
|
4
|
+
import { ReorderCollaboratorTypesDto } from '../dto/reorder-collaborator-types.dto';
|
|
3
5
|
import { UpdateCollaboratorTypeDto } from '../dto/update-collaborator-type.dto';
|
|
4
6
|
import { OperationsService } from '../operations.service';
|
|
5
7
|
export declare class OperationsOrgStructureController {
|
|
@@ -17,7 +19,27 @@ export declare class OperationsOrgStructureController {
|
|
|
17
19
|
collaboratorCount: number;
|
|
18
20
|
createdAt: string;
|
|
19
21
|
updatedAt: string;
|
|
20
|
-
}[]
|
|
22
|
+
}[] | {
|
|
23
|
+
total: number;
|
|
24
|
+
lastPage: number;
|
|
25
|
+
page: number;
|
|
26
|
+
pageSize: number;
|
|
27
|
+
prev: number;
|
|
28
|
+
next: number;
|
|
29
|
+
data: {
|
|
30
|
+
id: number;
|
|
31
|
+
slug: string;
|
|
32
|
+
name: string;
|
|
33
|
+
description: string | null;
|
|
34
|
+
category: string | null;
|
|
35
|
+
isActive: boolean;
|
|
36
|
+
sortOrder: number;
|
|
37
|
+
status: "active" | "inactive";
|
|
38
|
+
collaboratorCount: number;
|
|
39
|
+
createdAt: string;
|
|
40
|
+
updatedAt: string;
|
|
41
|
+
}[];
|
|
42
|
+
}>;
|
|
21
43
|
createCollaboratorType(user: any, data: CreateCollaboratorTypeDto): Promise<{
|
|
22
44
|
id: number;
|
|
23
45
|
slug: string;
|
|
@@ -32,6 +54,39 @@ export declare class OperationsOrgStructureController {
|
|
|
32
54
|
updatedAt: string | null;
|
|
33
55
|
deletedAt: string | null;
|
|
34
56
|
}>;
|
|
57
|
+
reorderCollaboratorTypes(user: any, data: ReorderCollaboratorTypesDto): Promise<{
|
|
58
|
+
id: number;
|
|
59
|
+
slug: string;
|
|
60
|
+
name: string;
|
|
61
|
+
description: string | null;
|
|
62
|
+
category: string | null;
|
|
63
|
+
isActive: boolean;
|
|
64
|
+
sortOrder: number;
|
|
65
|
+
status: "active" | "inactive";
|
|
66
|
+
collaboratorCount: number;
|
|
67
|
+
createdAt: string;
|
|
68
|
+
updatedAt: string;
|
|
69
|
+
}[] | {
|
|
70
|
+
total: number;
|
|
71
|
+
lastPage: number;
|
|
72
|
+
page: number;
|
|
73
|
+
pageSize: number;
|
|
74
|
+
prev: number;
|
|
75
|
+
next: number;
|
|
76
|
+
data: {
|
|
77
|
+
id: number;
|
|
78
|
+
slug: string;
|
|
79
|
+
name: string;
|
|
80
|
+
description: string | null;
|
|
81
|
+
category: string | null;
|
|
82
|
+
isActive: boolean;
|
|
83
|
+
sortOrder: number;
|
|
84
|
+
status: "active" | "inactive";
|
|
85
|
+
collaboratorCount: number;
|
|
86
|
+
createdAt: string;
|
|
87
|
+
updatedAt: string;
|
|
88
|
+
}[];
|
|
89
|
+
}>;
|
|
35
90
|
updateCollaboratorType(user: any, id: number, data: UpdateCollaboratorTypeDto): Promise<{
|
|
36
91
|
id: number;
|
|
37
92
|
slug: string;
|
|
@@ -69,7 +124,15 @@ export declare class OperationsOrgStructureController {
|
|
|
69
124
|
updatedAt: string | null;
|
|
70
125
|
deletedAt: string | null;
|
|
71
126
|
}>;
|
|
72
|
-
listDepartments(user: any): Promise<Record<string, unknown>[]
|
|
127
|
+
listDepartments(user: any, filters: ListDepartmentsDto): Promise<Record<string, unknown>[] | {
|
|
128
|
+
total: number;
|
|
129
|
+
lastPage: number;
|
|
130
|
+
page: number;
|
|
131
|
+
pageSize: number;
|
|
132
|
+
prev: number;
|
|
133
|
+
next: number;
|
|
134
|
+
data: Record<string, unknown>[];
|
|
135
|
+
}>;
|
|
73
136
|
createDepartment(user: any, data: any): Promise<{
|
|
74
137
|
id: number;
|
|
75
138
|
slug: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-org-structure.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-org-structure.controller.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,gCAAgC;IAC/B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,qBAAqB,CACX,IAAI,KAAA,
|
|
1
|
+
{"version":3,"file":"operations-org-structure.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-org-structure.controller.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,EAAE,2BAA2B,EAAE,MAAM,uCAAuC,CAAC;AACpF,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,gCAAgC;IAC/B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,qBAAqB,CACX,IAAI,KAAA,EACH,OAAO,EAAE,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAS5C,sBAAsB,CAAS,IAAI,KAAA,EAAU,IAAI,EAAE,yBAAyB;;;;;;;;;;;;;;IAQ5E,wBAAwB,CACd,IAAI,KAAA,EACJ,IAAI,EAAE,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAS3C,sBAAsB,CACZ,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EAC7B,IAAI,EAAE,yBAAyB;;;;;;;;;;;;;;IAUzC,gBAAgB,CAAS,IAAI,KAAA;;;;;;;;;;;IAK7B,iBAAiB,CAAS,IAAI,KAAA,EAAU,IAAI,KAAA;;;;;;;;;;;;IAK5C,eAAe,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,kBAAkB;;;;;;;;;IAKlE,gBAAgB,CAAS,IAAI,KAAA,EAAU,IAAI,KAAA;;;;;;;;;;;IAK3C,gBAAgB,CACN,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EAC7B,IAAI,KAAA;;;;;;;;;;;IAMd,aAAa,CAAS,IAAI,KAAA;IAK1B,cAAc,CAAS,IAAI,KAAA,EAAU,IAAI,KAAA;;;;;;;;;;;CAG1C"}
|
|
@@ -14,10 +14,11 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.OperationsOrgStructureController = void 0;
|
|
16
16
|
const api_1 = require("@hed-hog/api");
|
|
17
|
-
const api_pagination_1 = require("@hed-hog/api-pagination");
|
|
18
17
|
const common_1 = require("@nestjs/common");
|
|
19
18
|
const create_collaborator_type_dto_1 = require("../dto/create-collaborator-type.dto");
|
|
20
19
|
const list_collaborator_types_dto_1 = require("../dto/list-collaborator-types.dto");
|
|
20
|
+
const list_departments_dto_1 = require("../dto/list-departments.dto");
|
|
21
|
+
const reorder_collaborator_types_dto_1 = require("../dto/reorder-collaborator-types.dto");
|
|
21
22
|
const update_collaborator_type_dto_1 = require("../dto/update-collaborator-type.dto");
|
|
22
23
|
const operations_service_1 = require("../operations.service");
|
|
23
24
|
let OperationsOrgStructureController = class OperationsOrgStructureController {
|
|
@@ -30,6 +31,9 @@ let OperationsOrgStructureController = class OperationsOrgStructureController {
|
|
|
30
31
|
createCollaboratorType(user, data) {
|
|
31
32
|
return this.operationsService.createCollaboratorType(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
32
33
|
}
|
|
34
|
+
reorderCollaboratorTypes(user, data) {
|
|
35
|
+
return this.operationsService.reorderCollaboratorTypes(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data.ids);
|
|
36
|
+
}
|
|
33
37
|
updateCollaboratorType(user, id, data) {
|
|
34
38
|
return this.operationsService.updateCollaboratorType(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
35
39
|
}
|
|
@@ -39,8 +43,8 @@ let OperationsOrgStructureController = class OperationsOrgStructureController {
|
|
|
39
43
|
createProjectRole(user, data) {
|
|
40
44
|
return this.operationsService.createProjectRole(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
41
45
|
}
|
|
42
|
-
listDepartments(user) {
|
|
43
|
-
return this.operationsService.listDepartments(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
46
|
+
listDepartments(user, filters) {
|
|
47
|
+
return this.operationsService.listDepartments(Number((user === null || user === void 0 ? void 0 : user.id) || 0), filters);
|
|
44
48
|
}
|
|
45
49
|
createDepartment(user, data) {
|
|
46
50
|
return this.operationsService.createDepartment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
@@ -59,7 +63,7 @@ exports.OperationsOrgStructureController = OperationsOrgStructureController;
|
|
|
59
63
|
__decorate([
|
|
60
64
|
(0, common_1.Get)('collaborator-types'),
|
|
61
65
|
__param(0, (0, api_1.User)()),
|
|
62
|
-
__param(1, (0,
|
|
66
|
+
__param(1, (0, common_1.Query)()),
|
|
63
67
|
__metadata("design:type", Function),
|
|
64
68
|
__metadata("design:paramtypes", [Object, list_collaborator_types_dto_1.ListCollaboratorTypesDto]),
|
|
65
69
|
__metadata("design:returntype", void 0)
|
|
@@ -72,6 +76,14 @@ __decorate([
|
|
|
72
76
|
__metadata("design:paramtypes", [Object, create_collaborator_type_dto_1.CreateCollaboratorTypeDto]),
|
|
73
77
|
__metadata("design:returntype", void 0)
|
|
74
78
|
], OperationsOrgStructureController.prototype, "createCollaboratorType", null);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, common_1.Patch)('collaborator-types/reorder'),
|
|
81
|
+
__param(0, (0, api_1.User)()),
|
|
82
|
+
__param(1, (0, common_1.Body)()),
|
|
83
|
+
__metadata("design:type", Function),
|
|
84
|
+
__metadata("design:paramtypes", [Object, reorder_collaborator_types_dto_1.ReorderCollaboratorTypesDto]),
|
|
85
|
+
__metadata("design:returntype", void 0)
|
|
86
|
+
], OperationsOrgStructureController.prototype, "reorderCollaboratorTypes", null);
|
|
75
87
|
__decorate([
|
|
76
88
|
(0, common_1.Patch)('collaborator-types/:id'),
|
|
77
89
|
__param(0, (0, api_1.User)()),
|
|
@@ -99,8 +111,9 @@ __decorate([
|
|
|
99
111
|
__decorate([
|
|
100
112
|
(0, common_1.Get)('departments'),
|
|
101
113
|
__param(0, (0, api_1.User)()),
|
|
114
|
+
__param(1, (0, common_1.Query)()),
|
|
102
115
|
__metadata("design:type", Function),
|
|
103
|
-
__metadata("design:paramtypes", [Object]),
|
|
116
|
+
__metadata("design:paramtypes", [Object, list_departments_dto_1.ListDepartmentsDto]),
|
|
104
117
|
__metadata("design:returntype", void 0)
|
|
105
118
|
], OperationsOrgStructureController.prototype, "listDepartments", null);
|
|
106
119
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-org-structure.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-org-structure.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,
|
|
1
|
+
{"version":3,"file":"operations-org-structure.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-org-structure.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,2CASwB;AACxB,sFAAgF;AAChF,oFAA8E;AAC9E,sEAAiE;AACjE,0FAAoF;AACpF,sFAAgF;AAChF,8DAA0D;AAInD,IAAM,gCAAgC,GAAtC,MAAM,gCAAgC;IAC3C,YAA6B,iBAAoC;QAApC,sBAAiB,GAAjB,iBAAiB,CAAmB;IAAG,CAAC;IAGrE,qBAAqB,CACX,IAAI,EACH,OAAiC;QAE1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,qBAAqB,CACjD,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EACrB,OAAO,CACR,CAAC;IACJ,CAAC;IAGD,sBAAsB,CAAS,IAAI,EAAU,IAA+B;QAC1E,OAAO,IAAI,CAAC,iBAAiB,CAAC,sBAAsB,CAClD,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EACrB,IAAI,CACL,CAAC;IACJ,CAAC;IAGD,wBAAwB,CACd,IAAI,EACJ,IAAiC;QAEzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,wBAAwB,CACpD,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EACrB,IAAI,CAAC,GAAG,CACT,CAAC;IACJ,CAAC;IAGD,sBAAsB,CACZ,IAAI,EACe,EAAU,EAC7B,IAA+B;QAEvC,OAAO,IAAI,CAAC,iBAAiB,CAAC,sBAAsB,CAClD,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EACrB,EAAE,EACF,IAAI,CACL,CAAC;IACJ,CAAC;IAGD,gBAAgB,CAAS,IAAI;QAC3B,OAAO,IAAI,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,CAAC,CAAC;IACxE,CAAC;IAGD,iBAAiB,CAAS,IAAI,EAAU,IAAI;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;IAGD,eAAe,CAAS,IAAI,EAAW,OAA2B;QAChE,OAAO,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IAChF,CAAC;IAGD,gBAAgB,CAAS,IAAI,EAAU,IAAI;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;IAGD,gBAAgB,CACN,IAAI,EACe,EAAU,EAC7B,IAAI;QAEZ,OAAO,IAAI,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC;IAClF,CAAC;IAGD,aAAa,CAAS,IAAI;QACxB,OAAO,IAAI,CAAC,iBAAiB,CAAC,aAAa,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,CAAC,CAAC;IACrE,CAAC;IAGD,cAAc,CAAS,IAAI,EAAU,IAAI;QACvC,OAAO,IAAI,CAAC,iBAAiB,CAAC,cAAc,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;IAC5E,CAAC;CACF,CAAA;AApFY,4EAAgC;AAI3C;IADC,IAAA,YAAG,EAAC,oBAAoB,CAAC;IAEvB,WAAA,IAAA,UAAI,GAAE,CAAA;IACN,WAAA,IAAA,cAAK,GAAE,CAAA;;6CAAU,sDAAwB;;6EAM3C;AAGD;IADC,IAAA,aAAI,EAAC,oBAAoB,CAAC;IACH,WAAA,IAAA,UAAI,GAAE,CAAA;IAAQ,WAAA,IAAA,aAAI,GAAE,CAAA;;6CAAO,wDAAyB;;8EAK3E;AAGD;IADC,IAAA,cAAK,EAAC,4BAA4B,CAAC;IAEjC,WAAA,IAAA,UAAI,GAAE,CAAA;IACN,WAAA,IAAA,aAAI,GAAE,CAAA;;6CAAO,4DAA2B;;gFAM1C;AAGD;IADC,IAAA,cAAK,EAAC,wBAAwB,CAAC;IAE7B,WAAA,IAAA,UAAI,GAAE,CAAA;IACN,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,qBAAY,CAAC,CAAA;IACzB,WAAA,IAAA,aAAI,GAAE,CAAA;;qDAAO,wDAAyB;;8EAOxC;AAGD;IADC,IAAA,YAAG,EAAC,eAAe,CAAC;IACH,WAAA,IAAA,UAAI,GAAE,CAAA;;;;wEAEvB;AAGD;IADC,IAAA,aAAI,EAAC,eAAe,CAAC;IACH,WAAA,IAAA,UAAI,GAAE,CAAA;IAAQ,WAAA,IAAA,aAAI,GAAE,CAAA;;;;yEAEtC;AAGD;IADC,IAAA,YAAG,EAAC,aAAa,CAAC;IACF,WAAA,IAAA,UAAI,GAAE,CAAA;IAAQ,WAAA,IAAA,cAAK,GAAE,CAAA;;6CAAU,yCAAkB;;uEAEjE;AAGD;IADC,IAAA,aAAI,EAAC,aAAa,CAAC;IACF,WAAA,IAAA,UAAI,GAAE,CAAA;IAAQ,WAAA,IAAA,aAAI,GAAE,CAAA;;;;wEAErC;AAGD;IADC,IAAA,cAAK,EAAC,iBAAiB,CAAC;IAEtB,WAAA,IAAA,UAAI,GAAE,CAAA;IACN,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,qBAAY,CAAC,CAAA;IACzB,WAAA,IAAA,aAAI,GAAE,CAAA;;;;wEAGR;AAGD;IADC,IAAA,YAAG,EAAC,YAAY,CAAC;IACH,WAAA,IAAA,UAAI,GAAE,CAAA;;;;qEAEpB;AAGD;IADC,IAAA,aAAI,EAAC,YAAY,CAAC;IACH,WAAA,IAAA,UAAI,GAAE,CAAA;IAAQ,WAAA,IAAA,aAAI,GAAE,CAAA;;;;sEAEnC;2CAnFU,gCAAgC;IAF5C,IAAA,UAAI,GAAE;IACN,IAAA,mBAAU,EAAC,YAAY,CAAC;qCAEyB,sCAAiB;GADtD,gCAAgC,CAoF5C"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ListOperationsProjectOptionsDto } from '../dto/list-project-options.dto';
|
|
2
|
+
import { ListProjectsDto } from '../dto/list-projects.dto';
|
|
2
3
|
import { OperationsService } from '../operations.service';
|
|
3
4
|
export declare class OperationsProjectsController {
|
|
4
5
|
private readonly operationsService;
|
|
@@ -23,7 +24,30 @@ export declare class OperationsProjectsController {
|
|
|
23
24
|
endDate: string | null;
|
|
24
25
|
}[];
|
|
25
26
|
}>;
|
|
26
|
-
listProjects(user: any): Promise<Record<string, unknown>[]
|
|
27
|
+
listProjects(user: any, filters: ListProjectsDto): Promise<Record<string, unknown>[] | {
|
|
28
|
+
total: number;
|
|
29
|
+
lastPage: number;
|
|
30
|
+
page: number;
|
|
31
|
+
pageSize: number;
|
|
32
|
+
prev: number;
|
|
33
|
+
next: number;
|
|
34
|
+
data: Record<string, unknown>[];
|
|
35
|
+
}>;
|
|
36
|
+
getProjectStats(user: any, id: number): Promise<{
|
|
37
|
+
weeklyVelocity: {
|
|
38
|
+
weekLabel: string;
|
|
39
|
+
loggedHours: number;
|
|
40
|
+
}[];
|
|
41
|
+
allocationByCollaborator: {
|
|
42
|
+
name: string;
|
|
43
|
+
allocation: number;
|
|
44
|
+
}[];
|
|
45
|
+
quickRadar: {
|
|
46
|
+
activeAssignments: number;
|
|
47
|
+
pendingTimesheets: number;
|
|
48
|
+
totalWeeklyHours: number;
|
|
49
|
+
};
|
|
50
|
+
}>;
|
|
27
51
|
getProject(user: any, id: number): Promise<{
|
|
28
52
|
assignments: {
|
|
29
53
|
id: number;
|
|
@@ -49,7 +73,7 @@ export declare class OperationsProjectsController {
|
|
|
49
73
|
};
|
|
50
74
|
operationalIndicators: {
|
|
51
75
|
activeAssignments: number;
|
|
52
|
-
|
|
76
|
+
completedAssignments: number;
|
|
53
77
|
averageAllocation: number;
|
|
54
78
|
totalWeeklyHours: number;
|
|
55
79
|
};
|
|
@@ -101,7 +125,7 @@ export declare class OperationsProjectsController {
|
|
|
101
125
|
};
|
|
102
126
|
operationalIndicators: {
|
|
103
127
|
activeAssignments: number;
|
|
104
|
-
|
|
128
|
+
completedAssignments: number;
|
|
105
129
|
averageAllocation: number;
|
|
106
130
|
totalWeeklyHours: number;
|
|
107
131
|
};
|
|
@@ -153,7 +177,7 @@ export declare class OperationsProjectsController {
|
|
|
153
177
|
};
|
|
154
178
|
operationalIndicators: {
|
|
155
179
|
activeAssignments: number;
|
|
156
|
-
|
|
180
|
+
completedAssignments: number;
|
|
157
181
|
averageAllocation: number;
|
|
158
182
|
totalWeeklyHours: number;
|
|
159
183
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-projects.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-projects.controller.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,+BAA+B,EAAE,MAAM,iCAAiC,CAAC;AAClF,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,
|
|
1
|
+
{"version":3,"file":"operations-projects.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-projects.controller.ts"],"names":[],"mappings":"AAWA,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,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGhF"}
|
|
@@ -14,9 +14,9 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.OperationsProjectsController = void 0;
|
|
16
16
|
const api_1 = require("@hed-hog/api");
|
|
17
|
-
const api_pagination_1 = require("@hed-hog/api-pagination");
|
|
18
17
|
const common_1 = require("@nestjs/common");
|
|
19
18
|
const list_project_options_dto_1 = require("../dto/list-project-options.dto");
|
|
19
|
+
const list_projects_dto_1 = require("../dto/list-projects.dto");
|
|
20
20
|
const operations_service_1 = require("../operations.service");
|
|
21
21
|
let OperationsProjectsController = class OperationsProjectsController {
|
|
22
22
|
constructor(operationsService) {
|
|
@@ -25,8 +25,11 @@ let OperationsProjectsController = class OperationsProjectsController {
|
|
|
25
25
|
listProjectOptions(user, paginationParams) {
|
|
26
26
|
return this.operationsService.listProjectOptions(Number((user === null || user === void 0 ? void 0 : user.id) || 0), paginationParams);
|
|
27
27
|
}
|
|
28
|
-
listProjects(user) {
|
|
29
|
-
return this.operationsService.listProjects(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
28
|
+
listProjects(user, filters) {
|
|
29
|
+
return this.operationsService.listProjects(Number((user === null || user === void 0 ? void 0 : user.id) || 0), filters);
|
|
30
|
+
}
|
|
31
|
+
getProjectStats(user, id) {
|
|
32
|
+
return this.operationsService.getProjectStats(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
30
33
|
}
|
|
31
34
|
getProject(user, id) {
|
|
32
35
|
return this.operationsService.getProjectById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
@@ -42,7 +45,7 @@ exports.OperationsProjectsController = OperationsProjectsController;
|
|
|
42
45
|
__decorate([
|
|
43
46
|
(0, common_1.Get)('projects/options'),
|
|
44
47
|
__param(0, (0, api_1.User)()),
|
|
45
|
-
__param(1, (0,
|
|
48
|
+
__param(1, (0, common_1.Query)()),
|
|
46
49
|
__metadata("design:type", Function),
|
|
47
50
|
__metadata("design:paramtypes", [Object, list_project_options_dto_1.ListOperationsProjectOptionsDto]),
|
|
48
51
|
__metadata("design:returntype", void 0)
|
|
@@ -50,10 +53,19 @@ __decorate([
|
|
|
50
53
|
__decorate([
|
|
51
54
|
(0, common_1.Get)('projects'),
|
|
52
55
|
__param(0, (0, api_1.User)()),
|
|
56
|
+
__param(1, (0, common_1.Query)()),
|
|
53
57
|
__metadata("design:type", Function),
|
|
54
|
-
__metadata("design:paramtypes", [Object]),
|
|
58
|
+
__metadata("design:paramtypes", [Object, list_projects_dto_1.ListProjectsDto]),
|
|
55
59
|
__metadata("design:returntype", void 0)
|
|
56
60
|
], OperationsProjectsController.prototype, "listProjects", null);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, common_1.Get)('projects/:id/stats'),
|
|
63
|
+
__param(0, (0, api_1.User)()),
|
|
64
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
65
|
+
__metadata("design:type", Function),
|
|
66
|
+
__metadata("design:paramtypes", [Object, Number]),
|
|
67
|
+
__metadata("design:returntype", void 0)
|
|
68
|
+
], OperationsProjectsController.prototype, "getProjectStats", null);
|
|
57
69
|
__decorate([
|
|
58
70
|
(0, common_1.Get)('projects/:id'),
|
|
59
71
|
__param(0, (0, api_1.User)()),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-projects.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-projects.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,
|
|
1
|
+
{"version":3,"file":"operations-projects.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-projects.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { CreateScheduleAdjustmentRequestDto } from '../dto/create-schedule-adjustment-request.dto';
|
|
2
2
|
import { CreateTimeOffRequestDto } from '../dto/create-time-off-request.dto';
|
|
3
3
|
import { CreateTimesheetEntryDto } from '../dto/create-timesheet-entry.dto';
|
|
4
|
+
import { ListScheduleAdjustmentsDto } from '../dto/list-schedule-adjustments.dto';
|
|
5
|
+
import { ListTimeOffRequestsDto } from '../dto/list-time-off-requests.dto';
|
|
4
6
|
import { ListTimesheetEntriesDto } from '../dto/list-timesheet-entries.dto';
|
|
7
|
+
import { ListTimesheetsDto } from '../dto/list-timesheets.dto';
|
|
5
8
|
import { OperationsService } from '../operations.service';
|
|
6
9
|
export declare class OperationsTimesheetsController {
|
|
7
10
|
private readonly operationsService;
|
|
8
11
|
constructor(operationsService: OperationsService);
|
|
9
|
-
listTimesheets(user: any): Promise<{
|
|
12
|
+
listTimesheets(user: any, filters: ListTimesheetsDto): Promise<{
|
|
10
13
|
id: number;
|
|
11
14
|
collaboratorId: number;
|
|
12
15
|
collaboratorName: string;
|
|
@@ -20,7 +23,15 @@ export declare class OperationsTimesheetsController {
|
|
|
20
23
|
reviewedAt: string | null;
|
|
21
24
|
notes: string | null;
|
|
22
25
|
decisionNote: string | null;
|
|
23
|
-
}[]
|
|
26
|
+
}[] | {
|
|
27
|
+
total: number;
|
|
28
|
+
lastPage: number;
|
|
29
|
+
page: number;
|
|
30
|
+
pageSize: number;
|
|
31
|
+
prev: number;
|
|
32
|
+
next: number;
|
|
33
|
+
data: any[];
|
|
34
|
+
}>;
|
|
24
35
|
listTimesheetEntries(user: any, paginationParams: ListTimesheetEntriesDto): Promise<{
|
|
25
36
|
total: number;
|
|
26
37
|
lastPage: number;
|
|
@@ -71,15 +82,52 @@ export declare class OperationsTimesheetsController {
|
|
|
71
82
|
weekEndDate: string;
|
|
72
83
|
createdAt: string;
|
|
73
84
|
}>;
|
|
85
|
+
updateTimesheetEntry(user: any, id: number, data: CreateTimesheetEntryDto): Promise<{
|
|
86
|
+
label: string;
|
|
87
|
+
id: number;
|
|
88
|
+
timesheetId: number;
|
|
89
|
+
collaboratorId: number;
|
|
90
|
+
projectId: number | null;
|
|
91
|
+
projectAssignmentId: number | null;
|
|
92
|
+
projectCode: string | null;
|
|
93
|
+
projectName: string | null;
|
|
94
|
+
taskId: number | null;
|
|
95
|
+
taskName: string | null;
|
|
96
|
+
activityLabel: string | null;
|
|
97
|
+
workDate: string;
|
|
98
|
+
durationMinutes: number | null;
|
|
99
|
+
hours: number | null;
|
|
100
|
+
description: string | null;
|
|
101
|
+
status: string;
|
|
102
|
+
weekStartDate: string;
|
|
103
|
+
weekEndDate: string;
|
|
104
|
+
createdAt: string;
|
|
105
|
+
}>;
|
|
74
106
|
removeTimesheetEntry(user: any, id: number): Promise<{
|
|
75
107
|
success: boolean;
|
|
76
108
|
}>;
|
|
77
109
|
createTimesheet(user: any, data: any): Promise<any>;
|
|
78
110
|
updateTimesheet(user: any, id: number, data: any): Promise<any>;
|
|
79
111
|
submitTimesheet(user: any, id: number): Promise<any>;
|
|
80
|
-
listTimeOffRequests(user: any): Promise<Record<string, unknown>[]
|
|
112
|
+
listTimeOffRequests(user: any, filters: ListTimeOffRequestsDto): Promise<Record<string, unknown>[] | {
|
|
113
|
+
total: number;
|
|
114
|
+
lastPage: number;
|
|
115
|
+
page: number;
|
|
116
|
+
pageSize: number;
|
|
117
|
+
prev: number;
|
|
118
|
+
next: number;
|
|
119
|
+
data: Record<string, unknown>[];
|
|
120
|
+
}>;
|
|
81
121
|
createTimeOffRequest(user: any, data: CreateTimeOffRequestDto): Promise<Record<string, unknown>>;
|
|
82
|
-
listScheduleAdjustments(user: any): Promise<{
|
|
122
|
+
listScheduleAdjustments(user: any, filters: ListScheduleAdjustmentsDto): Promise<{
|
|
123
|
+
total: number;
|
|
124
|
+
lastPage: number;
|
|
125
|
+
page: number;
|
|
126
|
+
pageSize: number;
|
|
127
|
+
prev: number;
|
|
128
|
+
next: number;
|
|
129
|
+
data: any[];
|
|
130
|
+
} | {
|
|
83
131
|
id: number;
|
|
84
132
|
collaboratorId: number;
|
|
85
133
|
collaboratorName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations-timesheets.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-timesheets.controller.ts"],"names":[],"mappings":"AAYA,OAAO,EAAE,kCAAkC,EAAE,MAAM,+CAA+C,CAAC;AACnG,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,8BAA8B;IAC7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,cAAc,CAAS,IAAI,KAAA
|
|
1
|
+
{"version":3,"file":"operations-timesheets.controller.d.ts","sourceRoot":"","sources":["../../src/controllers/operations-timesheets.controller.ts"],"names":[],"mappings":"AAYA,OAAO,EAAE,kCAAkC,EAAE,MAAM,+CAA+C,CAAC;AACnG,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,OAAO,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAEa,8BAA8B;IAC7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,cAAc,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;IAKhE,oBAAoB,CACV,IAAI,KAAA,EACH,gBAAgB,EAAE,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASpD,oBAAoB,CAAS,IAAI,KAAA,EAAU,IAAI,EAAE,uBAAuB;;;;;;;;;;;;;;;;;;;;;IAQxE,oBAAoB,CACV,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EAC7B,IAAI,EAAE,uBAAuB;;;;;;;;;;;;;;;;;;;;;IAUvC,oBAAoB,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;;;IAKxE,eAAe,CAAS,IAAI,KAAA,EAAU,IAAI,KAAA;IAK1C,eAAe,CACL,IAAI,KAAA,EACe,EAAE,EAAE,MAAM,EAC7B,IAAI,KAAA;IAMd,eAAe,CAAS,IAAI,KAAA,EAA6B,EAAE,EAAE,MAAM;IAKnE,mBAAmB,CAAS,IAAI,KAAA,EAAW,OAAO,EAAE,sBAAsB;;;;;;;;;IAK1E,oBAAoB,CACV,IAAI,KAAA,EACJ,IAAI,EAAE,uBAAuB;IAMvC,uBAAuB,CACb,IAAI,KAAA,EACH,OAAO,EAAE,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;IAS9C,+BAA+B,CACrB,IAAI,KAAA,EACJ,IAAI,EAAE,kCAAkC;CAOnD"}
|