@hed-hog/operations 0.0.303 → 0.0.305
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/README.md +200 -43
- package/dist/controllers/operations-approvals.controller.d.ts +9 -0
- package/dist/controllers/operations-approvals.controller.d.ts.map +1 -0
- package/dist/controllers/operations-approvals.controller.js +64 -0
- package/dist/controllers/operations-approvals.controller.js.map +1 -0
- package/dist/controllers/operations-collaborators.controller.d.ts +223 -0
- package/dist/controllers/operations-collaborators.controller.d.ts.map +1 -0
- package/dist/controllers/operations-collaborators.controller.js +96 -0
- package/dist/controllers/operations-collaborators.controller.js.map +1 -0
- package/dist/controllers/operations-contracts.controller.d.ts +683 -0
- package/dist/controllers/operations-contracts.controller.d.ts.map +1 -0
- package/dist/controllers/operations-contracts.controller.js +198 -0
- package/dist/controllers/operations-contracts.controller.js.map +1 -0
- package/dist/controllers/operations-org-structure.controller.d.ts +108 -0
- package/dist/controllers/operations-org-structure.controller.d.ts.map +1 -0
- package/dist/controllers/operations-org-structure.controller.js +143 -0
- package/dist/controllers/operations-org-structure.controller.js.map +1 -0
- package/dist/controllers/operations-projects.controller.d.ts +184 -0
- package/dist/controllers/operations-projects.controller.d.ts.map +1 -0
- package/dist/controllers/operations-projects.controller.js +87 -0
- package/dist/controllers/operations-projects.controller.js.map +1 -0
- package/dist/controllers/operations-tasks.controller.d.ts +85 -0
- package/dist/controllers/operations-tasks.controller.d.ts.map +1 -0
- package/dist/controllers/operations-tasks.controller.js +90 -0
- package/dist/controllers/operations-tasks.controller.js.map +1 -0
- package/dist/controllers/operations-timesheets.controller.d.ts +99 -0
- package/dist/controllers/operations-timesheets.controller.d.ts.map +1 -0
- package/dist/controllers/operations-timesheets.controller.js +154 -0
- package/dist/controllers/operations-timesheets.controller.js.map +1 -0
- package/dist/dto/create-collaborator-type.dto.d.ts +10 -0
- package/dist/dto/create-collaborator-type.dto.d.ts.map +1 -0
- package/dist/dto/create-collaborator-type.dto.js +56 -0
- package/dist/dto/create-collaborator-type.dto.js.map +1 -0
- package/dist/dto/create-collaborator.dto.d.ts +42 -0
- package/dist/dto/create-collaborator.dto.d.ts.map +1 -0
- package/dist/dto/create-collaborator.dto.js +228 -0
- package/dist/dto/create-collaborator.dto.js.map +1 -0
- package/dist/dto/create-schedule-adjustment-request.dto.d.ts +17 -0
- package/dist/dto/create-schedule-adjustment-request.dto.d.ts.map +1 -0
- package/dist/dto/create-schedule-adjustment-request.dto.js +89 -0
- package/dist/dto/create-schedule-adjustment-request.dto.js.map +1 -0
- package/dist/dto/create-task.dto.d.ts +14 -0
- package/dist/dto/create-task.dto.d.ts.map +1 -0
- package/dist/dto/create-task.dto.js +83 -0
- package/dist/dto/create-task.dto.js.map +1 -0
- package/dist/dto/create-time-off-request.dto.d.ts +9 -0
- package/dist/dto/create-time-off-request.dto.d.ts.map +1 -0
- package/dist/dto/create-time-off-request.dto.js +54 -0
- package/dist/dto/create-time-off-request.dto.js.map +1 -0
- package/dist/dto/create-timesheet-entry.dto.d.ts +12 -0
- package/dist/dto/create-timesheet-entry.dto.d.ts.map +1 -0
- package/dist/dto/create-timesheet-entry.dto.js +75 -0
- package/dist/dto/create-timesheet-entry.dto.js.map +1 -0
- package/dist/dto/list-collaborator-types.dto.d.ts +4 -0
- package/dist/dto/list-collaborator-types.dto.d.ts.map +1 -0
- package/dist/dto/list-collaborator-types.dto.js +29 -0
- package/dist/dto/list-collaborator-types.dto.js.map +1 -0
- package/dist/dto/list-collaborators.dto.d.ts +8 -0
- package/dist/dto/list-collaborators.dto.d.ts.map +1 -0
- package/dist/dto/list-collaborators.dto.js +42 -0
- package/dist/dto/list-collaborators.dto.js.map +1 -0
- package/dist/dto/list-project-options.dto.d.ts +4 -0
- package/dist/dto/list-project-options.dto.d.ts.map +1 -0
- package/dist/dto/list-project-options.dto.js +8 -0
- package/dist/dto/list-project-options.dto.js.map +1 -0
- package/dist/dto/list-tasks.dto.d.ts +7 -0
- package/dist/dto/list-tasks.dto.d.ts.map +1 -0
- package/dist/dto/list-tasks.dto.js +38 -0
- package/dist/dto/list-tasks.dto.js.map +1 -0
- package/dist/dto/list-timesheet-entries.dto.d.ts +10 -0
- package/dist/dto/list-timesheet-entries.dto.d.ts.map +1 -0
- package/dist/dto/list-timesheet-entries.dto.js +54 -0
- package/dist/dto/list-timesheet-entries.dto.js.map +1 -0
- package/dist/dto/update-collaborator-type.dto.d.ts +4 -0
- package/dist/dto/update-collaborator-type.dto.d.ts.map +1 -0
- package/dist/dto/update-collaborator-type.dto.js +8 -0
- package/dist/dto/update-collaborator-type.dto.js.map +1 -0
- package/dist/dto/update-collaborator.dto.d.ts +4 -0
- package/dist/dto/update-collaborator.dto.d.ts.map +1 -0
- package/dist/dto/update-collaborator.dto.js +8 -0
- package/dist/dto/update-collaborator.dto.js.map +1 -0
- package/dist/dto/update-task.dto.d.ts +14 -0
- package/dist/dto/update-task.dto.d.ts.map +1 -0
- package/dist/dto/update-task.dto.js +84 -0
- package/dist/dto/update-task.dto.js.map +1 -0
- package/dist/operations.controller.d.ts +0 -1045
- package/dist/operations.controller.d.ts.map +1 -1
- package/dist/operations.controller.js +0 -429
- package/dist/operations.controller.js.map +1 -1
- package/dist/operations.module.d.ts.map +1 -1
- package/dist/operations.module.js +23 -2
- package/dist/operations.module.js.map +1 -1
- package/dist/operations.service.d.ts +429 -8
- package/dist/operations.service.d.ts.map +1 -1
- package/dist/operations.service.js +1931 -165
- package/dist/operations.service.js.map +1 -1
- package/dist/operations.service.spec.js +315 -1
- package/dist/operations.service.spec.js.map +1 -1
- package/dist/services/shared/operations-access.service.d.ts +16 -0
- package/dist/services/shared/operations-access.service.d.ts.map +1 -0
- package/dist/services/shared/operations-access.service.js +48 -0
- package/dist/services/shared/operations-access.service.js.map +1 -0
- package/hedhog/data/dashboard.yaml +20 -0
- package/hedhog/data/dashboard_component.yaml +274 -0
- package/hedhog/data/dashboard_component_role.yaml +174 -0
- package/hedhog/data/dashboard_item.yaml +299 -0
- package/hedhog/data/dashboard_role.yaml +20 -0
- package/hedhog/data/menu.yaml +30 -13
- package/hedhog/data/operations_collaborator_type.yaml +76 -0
- package/hedhog/data/route.yaml +196 -0
- package/hedhog/frontend/app/_components/async-options-combobox.tsx.ejs +231 -0
- package/hedhog/frontend/app/_components/collaborator-details-screen.tsx.ejs +125 -40
- package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +740 -106
- package/hedhog/frontend/app/_components/collaborator-select-with-create.tsx.ejs +256 -256
- package/hedhog/frontend/app/_components/contract-form-screen.tsx.ejs +7 -7
- package/hedhog/frontend/app/_components/contract-template-form-screen.tsx.ejs +306 -306
- package/hedhog/frontend/app/_components/contract-template-select-with-create.tsx.ejs +247 -247
- package/hedhog/frontend/app/_components/contract-wizard-sheet.tsx.ejs +3520 -3520
- package/hedhog/frontend/app/_components/department-select-with-create.tsx.ejs +38 -16
- package/hedhog/frontend/app/_components/project-details-screen.tsx.ejs +1504 -52
- package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +1017 -649
- package/hedhog/frontend/app/_components/section-card.tsx.ejs +25 -18
- package/hedhog/frontend/app/_components/system-user-select-with-create.tsx.ejs +609 -0
- package/hedhog/frontend/app/_components/timesheet-task-create-sheet.tsx.ejs +213 -0
- package/hedhog/frontend/app/_lib/api.ts.ejs +30 -1
- package/hedhog/frontend/app/_lib/types.ts.ejs +147 -39
- package/hedhog/frontend/app/_lib/utils/format.ts.ejs +40 -9
- package/hedhog/frontend/app/_lib/utils/forms.ts.ejs +48 -1
- package/hedhog/frontend/app/approvals/page.tsx.ejs +116 -98
- package/hedhog/frontend/app/collaborator-types/page.tsx.ejs +502 -0
- package/hedhog/frontend/app/collaborators/page.tsx.ejs +116 -72
- package/hedhog/frontend/app/contracts/page.tsx.ejs +938 -938
- package/hedhog/frontend/app/contracts/templates/page.tsx.ejs +11 -9
- package/hedhog/frontend/app/departments/page.tsx.ejs +1 -1
- package/hedhog/frontend/app/projects/[id]/edit/page.tsx.ejs +1 -1
- package/hedhog/frontend/app/projects/page.tsx.ejs +364 -133
- package/hedhog/frontend/app/schedule-adjustments/page.tsx.ejs +244 -120
- package/hedhog/frontend/app/team/page.tsx.ejs +15 -2
- package/hedhog/frontend/app/time-off/page.tsx.ejs +158 -82
- package/hedhog/frontend/app/timesheets/page.tsx.ejs +814 -357
- package/hedhog/frontend/messages/en.json +268 -53
- package/hedhog/frontend/messages/pt.json +484 -271
- package/hedhog/table/operations_collaborator.yaml +26 -13
- package/hedhog/table/operations_collaborator_equity_participation.yaml +43 -0
- package/hedhog/table/operations_collaborator_type.yaml +33 -0
- package/hedhog/table/operations_job_title.yaml +24 -0
- package/hedhog/table/operations_project.yaml +9 -0
- package/hedhog/table/operations_project_assignment.yaml +9 -0
- package/hedhog/table/operations_project_role.yaml +39 -0
- package/hedhog/table/operations_task.yaml +69 -0
- package/hedhog/table/operations_timesheet_entry.yaml +12 -0
- package/package.json +6 -6
- package/src/controllers/operations-approvals.controller.ts +24 -0
- package/src/controllers/operations-collaborators.controller.ts +60 -0
- package/src/controllers/operations-contracts.controller.ts +138 -0
- package/src/controllers/operations-org-structure.controller.ts +92 -0
- package/src/controllers/operations-projects.controller.ts +50 -0
- package/src/controllers/operations-tasks.controller.ts +63 -0
- package/src/controllers/operations-timesheets.controller.ts +100 -0
- package/src/dto/create-collaborator-type.dto.ts +43 -0
- package/src/dto/create-collaborator.dto.ts +223 -0
- package/src/dto/create-schedule-adjustment-request.dto.ts +91 -0
- package/src/dto/create-task.dto.ts +75 -0
- package/src/dto/create-time-off-request.dto.ts +53 -0
- package/src/dto/create-timesheet-entry.dto.ts +67 -0
- package/src/dto/list-collaborator-types.dto.ts +15 -0
- package/src/dto/list-collaborators.dto.ts +30 -0
- package/src/dto/list-project-options.dto.ts +3 -0
- package/src/dto/list-tasks.dto.ts +25 -0
- package/src/dto/list-timesheet-entries.dto.ts +40 -0
- package/src/dto/update-collaborator-type.dto.ts +3 -0
- package/src/dto/update-collaborator.dto.ts +3 -0
- package/src/dto/update-task.dto.ts +76 -0
- package/src/operations.controller.ts +1 -278
- package/src/operations.module.ts +23 -2
- package/src/operations.service.spec.ts +450 -0
- package/src/operations.service.ts +4507 -1561
- package/src/services/shared/operations-access.service.ts +52 -0
|
@@ -0,0 +1,198 @@
|
|
|
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
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.OperationsContractsController = void 0;
|
|
16
|
+
const api_1 = require("@hed-hog/api");
|
|
17
|
+
const common_1 = require("@nestjs/common");
|
|
18
|
+
const operations_service_1 = require("../operations.service");
|
|
19
|
+
let OperationsContractsController = class OperationsContractsController {
|
|
20
|
+
constructor(operationsService) {
|
|
21
|
+
this.operationsService = operationsService;
|
|
22
|
+
}
|
|
23
|
+
listContractTemplates(user) {
|
|
24
|
+
return this.operationsService.listContractTemplates(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
25
|
+
}
|
|
26
|
+
getContractTemplate(user, id) {
|
|
27
|
+
return this.operationsService.getContractTemplateById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
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));
|
|
37
|
+
}
|
|
38
|
+
getContract(user, id) {
|
|
39
|
+
return this.operationsService.getContractById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
40
|
+
}
|
|
41
|
+
createContractDraft(user, data) {
|
|
42
|
+
return this.operationsService.createContractDraft(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
43
|
+
}
|
|
44
|
+
createContract(user, data) {
|
|
45
|
+
return this.operationsService.createContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
46
|
+
}
|
|
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
|
+
updateContract(user, id, data) {
|
|
60
|
+
return this.operationsService.updateContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
61
|
+
}
|
|
62
|
+
removeContract(user, id) {
|
|
63
|
+
return this.operationsService.removeContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
64
|
+
}
|
|
65
|
+
generateContractPdf(user, id) {
|
|
66
|
+
return this.operationsService.generateContractPdf(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
exports.OperationsContractsController = OperationsContractsController;
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, common_1.Get)('contract-templates'),
|
|
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'),
|
|
95
|
+
__param(0, (0, api_1.User)()),
|
|
96
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
97
|
+
__param(2, (0, common_1.Body)()),
|
|
98
|
+
__metadata("design:type", Function),
|
|
99
|
+
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
100
|
+
__metadata("design:returntype", void 0)
|
|
101
|
+
], OperationsContractsController.prototype, "updateContractTemplate", null);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, common_1.Get)('contracts'),
|
|
104
|
+
__param(0, (0, api_1.User)()),
|
|
105
|
+
__metadata("design:type", Function),
|
|
106
|
+
__metadata("design:paramtypes", [Object]),
|
|
107
|
+
__metadata("design:returntype", void 0)
|
|
108
|
+
], OperationsContractsController.prototype, "listContracts", null);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, common_1.Get)('contracts/:id'),
|
|
111
|
+
__param(0, (0, api_1.User)()),
|
|
112
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
113
|
+
__metadata("design:type", Function),
|
|
114
|
+
__metadata("design:paramtypes", [Object, Number]),
|
|
115
|
+
__metadata("design:returntype", void 0)
|
|
116
|
+
], 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
|
+
__decorate([
|
|
126
|
+
(0, common_1.Post)('contracts'),
|
|
127
|
+
__param(0, (0, api_1.User)()),
|
|
128
|
+
__param(1, (0, common_1.Body)()),
|
|
129
|
+
__metadata("design:type", Function),
|
|
130
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
131
|
+
__metadata("design:returntype", void 0)
|
|
132
|
+
], 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
|
+
__decorate([
|
|
169
|
+
(0, common_1.Patch)('contracts/:id'),
|
|
170
|
+
__param(0, (0, api_1.User)()),
|
|
171
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
172
|
+
__param(2, (0, common_1.Body)()),
|
|
173
|
+
__metadata("design:type", Function),
|
|
174
|
+
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
175
|
+
__metadata("design:returntype", void 0)
|
|
176
|
+
], OperationsContractsController.prototype, "updateContract", null);
|
|
177
|
+
__decorate([
|
|
178
|
+
(0, common_1.Delete)('contracts/:id'),
|
|
179
|
+
__param(0, (0, api_1.User)()),
|
|
180
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
181
|
+
__metadata("design:type", Function),
|
|
182
|
+
__metadata("design:paramtypes", [Object, Number]),
|
|
183
|
+
__metadata("design:returntype", void 0)
|
|
184
|
+
], 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
|
+
exports.OperationsContractsController = OperationsContractsController = __decorate([
|
|
194
|
+
(0, api_1.Role)(),
|
|
195
|
+
(0, common_1.Controller)('operations'),
|
|
196
|
+
__metadata("design:paramtypes", [operations_service_1.OperationsService])
|
|
197
|
+
], OperationsContractsController);
|
|
198
|
+
//# sourceMappingURL=operations-contracts.controller.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations-contracts.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-contracts.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { CreateCollaboratorTypeDto } from '../dto/create-collaborator-type.dto';
|
|
2
|
+
import { ListCollaboratorTypesDto } from '../dto/list-collaborator-types.dto';
|
|
3
|
+
import { UpdateCollaboratorTypeDto } from '../dto/update-collaborator-type.dto';
|
|
4
|
+
import { OperationsService } from '../operations.service';
|
|
5
|
+
export declare class OperationsOrgStructureController {
|
|
6
|
+
private readonly operationsService;
|
|
7
|
+
constructor(operationsService: OperationsService);
|
|
8
|
+
listCollaboratorTypes(user: any, filters: ListCollaboratorTypesDto): Promise<{
|
|
9
|
+
id: number;
|
|
10
|
+
slug: string;
|
|
11
|
+
name: string;
|
|
12
|
+
description: string | null;
|
|
13
|
+
category: string | null;
|
|
14
|
+
isActive: boolean;
|
|
15
|
+
sortOrder: number;
|
|
16
|
+
status: "active" | "inactive";
|
|
17
|
+
collaboratorCount: number;
|
|
18
|
+
createdAt: string;
|
|
19
|
+
updatedAt: string;
|
|
20
|
+
}[]>;
|
|
21
|
+
createCollaboratorType(user: any, data: CreateCollaboratorTypeDto): Promise<{
|
|
22
|
+
id: number;
|
|
23
|
+
slug: string;
|
|
24
|
+
name: string;
|
|
25
|
+
description: string | null;
|
|
26
|
+
category: string | null;
|
|
27
|
+
isActive: boolean;
|
|
28
|
+
sortOrder: number;
|
|
29
|
+
status: "active" | "inactive";
|
|
30
|
+
collaboratorCount: number;
|
|
31
|
+
createdAt: string | null;
|
|
32
|
+
updatedAt: string | null;
|
|
33
|
+
deletedAt: string | null;
|
|
34
|
+
}>;
|
|
35
|
+
updateCollaboratorType(user: any, id: number, data: UpdateCollaboratorTypeDto): Promise<{
|
|
36
|
+
id: number;
|
|
37
|
+
slug: string;
|
|
38
|
+
name: string;
|
|
39
|
+
description: string | null;
|
|
40
|
+
category: string | null;
|
|
41
|
+
isActive: boolean;
|
|
42
|
+
sortOrder: number;
|
|
43
|
+
status: "active" | "inactive";
|
|
44
|
+
collaboratorCount: number;
|
|
45
|
+
createdAt: string | null;
|
|
46
|
+
updatedAt: string | null;
|
|
47
|
+
deletedAt: string | null;
|
|
48
|
+
}>;
|
|
49
|
+
listProjectRoles(user: any): Promise<{
|
|
50
|
+
id: number;
|
|
51
|
+
slug: string;
|
|
52
|
+
code: string | null;
|
|
53
|
+
name: string;
|
|
54
|
+
description: string | null;
|
|
55
|
+
isActive: boolean;
|
|
56
|
+
sortOrder: number;
|
|
57
|
+
createdAt: string;
|
|
58
|
+
updatedAt: string;
|
|
59
|
+
}[]>;
|
|
60
|
+
createProjectRole(user: any, data: any): Promise<{
|
|
61
|
+
id: number;
|
|
62
|
+
slug: string;
|
|
63
|
+
code: string | null;
|
|
64
|
+
name: string;
|
|
65
|
+
description: string | null;
|
|
66
|
+
isActive: boolean;
|
|
67
|
+
sortOrder: number;
|
|
68
|
+
createdAt: string | null;
|
|
69
|
+
updatedAt: string | null;
|
|
70
|
+
deletedAt: string | null;
|
|
71
|
+
}>;
|
|
72
|
+
listDepartments(user: any): Promise<Record<string, unknown>[]>;
|
|
73
|
+
createDepartment(user: any, data: any): Promise<{
|
|
74
|
+
id: number;
|
|
75
|
+
slug: string;
|
|
76
|
+
code: string | null;
|
|
77
|
+
name: string;
|
|
78
|
+
description: string | null;
|
|
79
|
+
createdAt: string | null;
|
|
80
|
+
updatedAt: string | null;
|
|
81
|
+
deletedAt: string | null;
|
|
82
|
+
status: "active" | "inactive";
|
|
83
|
+
}>;
|
|
84
|
+
updateDepartment(user: any, id: number, data: any): Promise<{
|
|
85
|
+
id: number;
|
|
86
|
+
slug: string;
|
|
87
|
+
code: string | null;
|
|
88
|
+
name: string;
|
|
89
|
+
description: string | null;
|
|
90
|
+
createdAt: string | null;
|
|
91
|
+
updatedAt: string | null;
|
|
92
|
+
deletedAt: string | null;
|
|
93
|
+
status: "active" | "inactive";
|
|
94
|
+
}>;
|
|
95
|
+
listJobTitles(user: any): Promise<Record<string, unknown>[]>;
|
|
96
|
+
createJobTitle(user: any, data: any): Promise<{
|
|
97
|
+
id: number;
|
|
98
|
+
slug: string;
|
|
99
|
+
code: string | null;
|
|
100
|
+
name: string;
|
|
101
|
+
description: string | null;
|
|
102
|
+
createdAt: string | null;
|
|
103
|
+
updatedAt: string | null;
|
|
104
|
+
deletedAt: string | null;
|
|
105
|
+
status: "active" | "inactive";
|
|
106
|
+
}>;
|
|
107
|
+
}
|
|
108
|
+
//# sourceMappingURL=operations-org-structure.controller.d.ts.map
|
|
@@ -0,0 +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,EACE,OAAO,EAAE,wBAAwB;;;;;;;;;;;;;IASjD,sBAAsB,CAAS,IAAI,KAAA,EAAU,IAAI,EAAE,yBAAyB;;;;;;;;;;;;;;IAQ5E,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;IAK5B,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"}
|
|
@@ -0,0 +1,143 @@
|
|
|
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
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.OperationsOrgStructureController = void 0;
|
|
16
|
+
const api_1 = require("@hed-hog/api");
|
|
17
|
+
const api_pagination_1 = require("@hed-hog/api-pagination");
|
|
18
|
+
const common_1 = require("@nestjs/common");
|
|
19
|
+
const create_collaborator_type_dto_1 = require("../dto/create-collaborator-type.dto");
|
|
20
|
+
const list_collaborator_types_dto_1 = require("../dto/list-collaborator-types.dto");
|
|
21
|
+
const update_collaborator_type_dto_1 = require("../dto/update-collaborator-type.dto");
|
|
22
|
+
const operations_service_1 = require("../operations.service");
|
|
23
|
+
let OperationsOrgStructureController = class OperationsOrgStructureController {
|
|
24
|
+
constructor(operationsService) {
|
|
25
|
+
this.operationsService = operationsService;
|
|
26
|
+
}
|
|
27
|
+
listCollaboratorTypes(user, filters) {
|
|
28
|
+
return this.operationsService.listCollaboratorTypes(Number((user === null || user === void 0 ? void 0 : user.id) || 0), filters);
|
|
29
|
+
}
|
|
30
|
+
createCollaboratorType(user, data) {
|
|
31
|
+
return this.operationsService.createCollaboratorType(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
32
|
+
}
|
|
33
|
+
updateCollaboratorType(user, id, data) {
|
|
34
|
+
return this.operationsService.updateCollaboratorType(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
35
|
+
}
|
|
36
|
+
listProjectRoles(user) {
|
|
37
|
+
return this.operationsService.listProjectRoles(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
38
|
+
}
|
|
39
|
+
createProjectRole(user, data) {
|
|
40
|
+
return this.operationsService.createProjectRole(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
41
|
+
}
|
|
42
|
+
listDepartments(user) {
|
|
43
|
+
return this.operationsService.listDepartments(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
44
|
+
}
|
|
45
|
+
createDepartment(user, data) {
|
|
46
|
+
return this.operationsService.createDepartment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
47
|
+
}
|
|
48
|
+
updateDepartment(user, id, data) {
|
|
49
|
+
return this.operationsService.updateDepartment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
50
|
+
}
|
|
51
|
+
listJobTitles(user) {
|
|
52
|
+
return this.operationsService.listJobTitles(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
53
|
+
}
|
|
54
|
+
createJobTitle(user, data) {
|
|
55
|
+
return this.operationsService.createJobTitle(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
exports.OperationsOrgStructureController = OperationsOrgStructureController;
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, common_1.Get)('collaborator-types'),
|
|
61
|
+
__param(0, (0, api_1.User)()),
|
|
62
|
+
__param(1, (0, api_pagination_1.Pagination)()),
|
|
63
|
+
__metadata("design:type", Function),
|
|
64
|
+
__metadata("design:paramtypes", [Object, list_collaborator_types_dto_1.ListCollaboratorTypesDto]),
|
|
65
|
+
__metadata("design:returntype", void 0)
|
|
66
|
+
], OperationsOrgStructureController.prototype, "listCollaboratorTypes", null);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, common_1.Post)('collaborator-types'),
|
|
69
|
+
__param(0, (0, api_1.User)()),
|
|
70
|
+
__param(1, (0, common_1.Body)()),
|
|
71
|
+
__metadata("design:type", Function),
|
|
72
|
+
__metadata("design:paramtypes", [Object, create_collaborator_type_dto_1.CreateCollaboratorTypeDto]),
|
|
73
|
+
__metadata("design:returntype", void 0)
|
|
74
|
+
], OperationsOrgStructureController.prototype, "createCollaboratorType", null);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, common_1.Patch)('collaborator-types/:id'),
|
|
77
|
+
__param(0, (0, api_1.User)()),
|
|
78
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
79
|
+
__param(2, (0, common_1.Body)()),
|
|
80
|
+
__metadata("design:type", Function),
|
|
81
|
+
__metadata("design:paramtypes", [Object, Number, update_collaborator_type_dto_1.UpdateCollaboratorTypeDto]),
|
|
82
|
+
__metadata("design:returntype", void 0)
|
|
83
|
+
], OperationsOrgStructureController.prototype, "updateCollaboratorType", null);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, common_1.Get)('project-roles'),
|
|
86
|
+
__param(0, (0, api_1.User)()),
|
|
87
|
+
__metadata("design:type", Function),
|
|
88
|
+
__metadata("design:paramtypes", [Object]),
|
|
89
|
+
__metadata("design:returntype", void 0)
|
|
90
|
+
], OperationsOrgStructureController.prototype, "listProjectRoles", null);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, common_1.Post)('project-roles'),
|
|
93
|
+
__param(0, (0, api_1.User)()),
|
|
94
|
+
__param(1, (0, common_1.Body)()),
|
|
95
|
+
__metadata("design:type", Function),
|
|
96
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
97
|
+
__metadata("design:returntype", void 0)
|
|
98
|
+
], OperationsOrgStructureController.prototype, "createProjectRole", null);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, common_1.Get)('departments'),
|
|
101
|
+
__param(0, (0, api_1.User)()),
|
|
102
|
+
__metadata("design:type", Function),
|
|
103
|
+
__metadata("design:paramtypes", [Object]),
|
|
104
|
+
__metadata("design:returntype", void 0)
|
|
105
|
+
], OperationsOrgStructureController.prototype, "listDepartments", null);
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, common_1.Post)('departments'),
|
|
108
|
+
__param(0, (0, api_1.User)()),
|
|
109
|
+
__param(1, (0, common_1.Body)()),
|
|
110
|
+
__metadata("design:type", Function),
|
|
111
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
112
|
+
__metadata("design:returntype", void 0)
|
|
113
|
+
], OperationsOrgStructureController.prototype, "createDepartment", null);
|
|
114
|
+
__decorate([
|
|
115
|
+
(0, common_1.Patch)('departments/:id'),
|
|
116
|
+
__param(0, (0, api_1.User)()),
|
|
117
|
+
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
118
|
+
__param(2, (0, common_1.Body)()),
|
|
119
|
+
__metadata("design:type", Function),
|
|
120
|
+
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
121
|
+
__metadata("design:returntype", void 0)
|
|
122
|
+
], OperationsOrgStructureController.prototype, "updateDepartment", null);
|
|
123
|
+
__decorate([
|
|
124
|
+
(0, common_1.Get)('job-titles'),
|
|
125
|
+
__param(0, (0, api_1.User)()),
|
|
126
|
+
__metadata("design:type", Function),
|
|
127
|
+
__metadata("design:paramtypes", [Object]),
|
|
128
|
+
__metadata("design:returntype", void 0)
|
|
129
|
+
], OperationsOrgStructureController.prototype, "listJobTitles", null);
|
|
130
|
+
__decorate([
|
|
131
|
+
(0, common_1.Post)('job-titles'),
|
|
132
|
+
__param(0, (0, api_1.User)()),
|
|
133
|
+
__param(1, (0, common_1.Body)()),
|
|
134
|
+
__metadata("design:type", Function),
|
|
135
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
136
|
+
__metadata("design:returntype", void 0)
|
|
137
|
+
], OperationsOrgStructureController.prototype, "createJobTitle", null);
|
|
138
|
+
exports.OperationsOrgStructureController = OperationsOrgStructureController = __decorate([
|
|
139
|
+
(0, api_1.Role)(),
|
|
140
|
+
(0, common_1.Controller)('operations'),
|
|
141
|
+
__metadata("design:paramtypes", [operations_service_1.OperationsService])
|
|
142
|
+
], OperationsOrgStructureController);
|
|
143
|
+
//# sourceMappingURL=operations-org-structure.controller.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations-org-structure.controller.js","sourceRoot":"","sources":["../../src/controllers/operations-org-structure.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
import { ListOperationsProjectOptionsDto } from '../dto/list-project-options.dto';
|
|
2
|
+
import { OperationsService } from '../operations.service';
|
|
3
|
+
export declare class OperationsProjectsController {
|
|
4
|
+
private readonly operationsService;
|
|
5
|
+
constructor(operationsService: OperationsService);
|
|
6
|
+
listProjectOptions(user: any, paginationParams: ListOperationsProjectOptionsDto): Promise<{
|
|
7
|
+
total: number;
|
|
8
|
+
lastPage: number;
|
|
9
|
+
page: number;
|
|
10
|
+
pageSize: number;
|
|
11
|
+
prev: number;
|
|
12
|
+
next: number;
|
|
13
|
+
data: {
|
|
14
|
+
label: string;
|
|
15
|
+
id: number;
|
|
16
|
+
code: string | null;
|
|
17
|
+
name: string;
|
|
18
|
+
clientName: string | null;
|
|
19
|
+
projectAssignmentId: number | null;
|
|
20
|
+
roleLabel: string | null;
|
|
21
|
+
status: string;
|
|
22
|
+
startDate: string | null;
|
|
23
|
+
endDate: string | null;
|
|
24
|
+
}[];
|
|
25
|
+
}>;
|
|
26
|
+
listProjects(user: any): Promise<Record<string, unknown>[]>;
|
|
27
|
+
getProject(user: any, id: number): Promise<{
|
|
28
|
+
assignments: {
|
|
29
|
+
id: number;
|
|
30
|
+
collaboratorId: number;
|
|
31
|
+
userId: number | null;
|
|
32
|
+
personAvatarId: number | null;
|
|
33
|
+
userPhotoId: number | null;
|
|
34
|
+
collaboratorName: string;
|
|
35
|
+
projectRoleId: number | null;
|
|
36
|
+
roleLabel: string | null;
|
|
37
|
+
allocationPercent: number | null;
|
|
38
|
+
weeklyHours: number | null;
|
|
39
|
+
isBillable: boolean;
|
|
40
|
+
startDate: string | null;
|
|
41
|
+
endDate: string | null;
|
|
42
|
+
status: string;
|
|
43
|
+
}[];
|
|
44
|
+
relatedContract: any;
|
|
45
|
+
timesheetSummary: {
|
|
46
|
+
totalTimesheets: number;
|
|
47
|
+
pendingTimesheets: number;
|
|
48
|
+
totalHours: number;
|
|
49
|
+
};
|
|
50
|
+
operationalIndicators: {
|
|
51
|
+
activeAssignments: number;
|
|
52
|
+
billableAssignments: number;
|
|
53
|
+
averageAllocation: number;
|
|
54
|
+
totalWeeklyHours: number;
|
|
55
|
+
};
|
|
56
|
+
id: number;
|
|
57
|
+
contractId: number | null;
|
|
58
|
+
managerCollaboratorId: number | null;
|
|
59
|
+
clientPersonId: number | null;
|
|
60
|
+
clientAvatarId: number | null;
|
|
61
|
+
code: string;
|
|
62
|
+
name: string;
|
|
63
|
+
clientName: string | null;
|
|
64
|
+
summary: string | null;
|
|
65
|
+
status: string;
|
|
66
|
+
progressPercent: number | null;
|
|
67
|
+
deliveryModel: string | null;
|
|
68
|
+
budgetAmount: number | null;
|
|
69
|
+
startDate: string | null;
|
|
70
|
+
endDate: string | null;
|
|
71
|
+
contractName: string | null;
|
|
72
|
+
contractStatus: string | null;
|
|
73
|
+
contractCategory: string | null;
|
|
74
|
+
managerName: string | null;
|
|
75
|
+
myAssignmentId: number | null;
|
|
76
|
+
myRoleLabel: string | null;
|
|
77
|
+
teamSize: number;
|
|
78
|
+
}>;
|
|
79
|
+
createProject(user: any, data: any): Promise<{
|
|
80
|
+
assignments: {
|
|
81
|
+
id: number;
|
|
82
|
+
collaboratorId: number;
|
|
83
|
+
userId: number | null;
|
|
84
|
+
personAvatarId: number | null;
|
|
85
|
+
userPhotoId: number | null;
|
|
86
|
+
collaboratorName: string;
|
|
87
|
+
projectRoleId: number | null;
|
|
88
|
+
roleLabel: string | null;
|
|
89
|
+
allocationPercent: number | null;
|
|
90
|
+
weeklyHours: number | null;
|
|
91
|
+
isBillable: boolean;
|
|
92
|
+
startDate: string | null;
|
|
93
|
+
endDate: string | null;
|
|
94
|
+
status: string;
|
|
95
|
+
}[];
|
|
96
|
+
relatedContract: any;
|
|
97
|
+
timesheetSummary: {
|
|
98
|
+
totalTimesheets: number;
|
|
99
|
+
pendingTimesheets: number;
|
|
100
|
+
totalHours: number;
|
|
101
|
+
};
|
|
102
|
+
operationalIndicators: {
|
|
103
|
+
activeAssignments: number;
|
|
104
|
+
billableAssignments: number;
|
|
105
|
+
averageAllocation: number;
|
|
106
|
+
totalWeeklyHours: number;
|
|
107
|
+
};
|
|
108
|
+
id: number;
|
|
109
|
+
contractId: number | null;
|
|
110
|
+
managerCollaboratorId: number | null;
|
|
111
|
+
clientPersonId: number | null;
|
|
112
|
+
clientAvatarId: number | null;
|
|
113
|
+
code: string;
|
|
114
|
+
name: string;
|
|
115
|
+
clientName: string | null;
|
|
116
|
+
summary: string | null;
|
|
117
|
+
status: string;
|
|
118
|
+
progressPercent: number | null;
|
|
119
|
+
deliveryModel: string | null;
|
|
120
|
+
budgetAmount: number | null;
|
|
121
|
+
startDate: string | null;
|
|
122
|
+
endDate: string | null;
|
|
123
|
+
contractName: string | null;
|
|
124
|
+
contractStatus: string | null;
|
|
125
|
+
contractCategory: string | null;
|
|
126
|
+
managerName: string | null;
|
|
127
|
+
myAssignmentId: number | null;
|
|
128
|
+
myRoleLabel: string | null;
|
|
129
|
+
teamSize: number;
|
|
130
|
+
}>;
|
|
131
|
+
updateProject(user: any, id: number, data: any): Promise<{
|
|
132
|
+
assignments: {
|
|
133
|
+
id: number;
|
|
134
|
+
collaboratorId: number;
|
|
135
|
+
userId: number | null;
|
|
136
|
+
personAvatarId: number | null;
|
|
137
|
+
userPhotoId: number | null;
|
|
138
|
+
collaboratorName: string;
|
|
139
|
+
projectRoleId: number | null;
|
|
140
|
+
roleLabel: string | null;
|
|
141
|
+
allocationPercent: number | null;
|
|
142
|
+
weeklyHours: number | null;
|
|
143
|
+
isBillable: boolean;
|
|
144
|
+
startDate: string | null;
|
|
145
|
+
endDate: string | null;
|
|
146
|
+
status: string;
|
|
147
|
+
}[];
|
|
148
|
+
relatedContract: any;
|
|
149
|
+
timesheetSummary: {
|
|
150
|
+
totalTimesheets: number;
|
|
151
|
+
pendingTimesheets: number;
|
|
152
|
+
totalHours: number;
|
|
153
|
+
};
|
|
154
|
+
operationalIndicators: {
|
|
155
|
+
activeAssignments: number;
|
|
156
|
+
billableAssignments: number;
|
|
157
|
+
averageAllocation: number;
|
|
158
|
+
totalWeeklyHours: number;
|
|
159
|
+
};
|
|
160
|
+
id: number;
|
|
161
|
+
contractId: number | null;
|
|
162
|
+
managerCollaboratorId: number | null;
|
|
163
|
+
clientPersonId: number | null;
|
|
164
|
+
clientAvatarId: number | null;
|
|
165
|
+
code: string;
|
|
166
|
+
name: string;
|
|
167
|
+
clientName: string | null;
|
|
168
|
+
summary: string | null;
|
|
169
|
+
status: string;
|
|
170
|
+
progressPercent: number | null;
|
|
171
|
+
deliveryModel: string | null;
|
|
172
|
+
budgetAmount: number | null;
|
|
173
|
+
startDate: string | null;
|
|
174
|
+
endDate: string | null;
|
|
175
|
+
contractName: string | null;
|
|
176
|
+
contractStatus: string | null;
|
|
177
|
+
contractCategory: string | null;
|
|
178
|
+
managerName: string | null;
|
|
179
|
+
myAssignmentId: number | null;
|
|
180
|
+
myRoleLabel: string | null;
|
|
181
|
+
teamSize: number;
|
|
182
|
+
}>;
|
|
183
|
+
}
|
|
184
|
+
//# sourceMappingURL=operations-projects.controller.d.ts.map
|
|
@@ -0,0 +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,EACE,gBAAgB,EAAE,+BAA+B;;;;;;;;;;;;;;;;;;;;IASjE,YAAY,CAAS,IAAI,KAAA;IAKzB,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"}
|