fix-spelling #84

Merged
PotapovaA merged 2 commits from fix-spelling into test 2026-08-11 18:44:03 +03:00
Showing only changes of commit a858cd07c1 - Show all commits

View File

@ -1,45 +1,91 @@
import api from './client';
import api from "./client";
export const StagesApi = {
createStage(formId, payload) {
return api.post(`/stages/form/${formId}`, payload).then((r) => r.data);
},
updateStage(payload) {
const { budget_form_id, sheet, phase_code } = payload;
const { budget_form_id, sheet, phase_code, direction } = payload;
if (direction) {
return api
.patch(
`/stages/form/${budget_form_id}/${sheet}/${phase_code}/?direction=${direction}`,
payload,
)
.then((r) => r.data);
}
return api.patch(`/stages/form/${budget_form_id}/${sheet}/${phase_code}`, payload).then((r) => r.data);
return api
.patch(`/stages/form/${budget_form_id}/${sheet}/${phase_code}`, payload)
.then((r) => r.data);
},
deleteStage(formId, sheet, phaseCode) {
return api.delete(`/stages/form/${formId}/${sheet}/${phaseCode}`).then((r) => r.data);
return api
.delete(`/stages/form/${formId}/${sheet}/${phaseCode}`)
.then((r) => r.data);
},
getStages(formId) {
return api.get(`/stages/form/${formId}`).then((r) => r.data);
},
createStageAccessHeader(tableId, stageId, payload) {
return api.post(`/table-data/templates/templates/${tableId}/stages/${stageId}/access_headers/`, payload).then((r) => r.data);
return api
.post(
`/table-data/templates/templates/${tableId}/stages/${stageId}/access_headers/`,
payload,
)
.then((r) => r.data);
},
createStageAccessCell(tableId, stageId, payload) {
return api.post(`/table-data/templates/templates/${tableId}/stages/${stageId}/access_cells/`, payload).then((r) => r.data);
return api
.post(
`/table-data/templates/templates/${tableId}/stages/${stageId}/access_cells/`,
payload,
)
.then((r) => r.data);
},
updateStageAccessHeader(tableId, stageId, payload) {
return api
.put(`/table-data/templates/templates/${tableId}/stages/${stageId}/access_headers/${payload.id}/`, payload)
.put(
`/table-data/templates/templates/${tableId}/stages/${stageId}/access_headers/${payload.id}/`,
payload,
)
.then((r) => r.data);
},
updateStageAccessCell(tableId, stageId, payload) {
return api.put(`/table-data/templates/templates/${tableId}/stages/${stageId}/access_cells/${payload.id}/`, payload).then((r) => r.data);
return api
.put(
`/table-data/templates/templates/${tableId}/stages/${stageId}/access_cells/${payload.id}/`,
payload,
)
.then((r) => r.data);
},
deleteStageAccessHeader(tableId, stageId, accessHeaderId) {
return api.delete(`/table-data/templates/templates/${tableId}/stages/${stageId}/access_headers/${accessHeaderId}/`).then((r) => r.data);
return api
.delete(
`/table-data/templates/templates/${tableId}/stages/${stageId}/access_headers/${accessHeaderId}/`,
)
.then((r) => r.data);
},
getStageAccessHeader(template_id, stage_id) {
return api.get(`/table-data/templates/templates/${template_id}/stages/${stage_id}/access_headers/`).then((r) => r.data);
return api
.get(
`/table-data/templates/templates/${template_id}/stages/${stage_id}/access_headers/`,
)
.then((r) => r.data);
},
getStageAccessCell(template_id, stage_id) {
return api.get(`/table-data/templates/templates/${template_id}/stages/${stage_id}/access_cells/`).then((r) => r.data);
return api
.get(
`/table-data/templates/templates/${template_id}/stages/${stage_id}/access_cells/`,
)
.then((r) => r.data);
},
deleteStageAccessCell(tableId, stageId, accessCellId) {
return api.delete(`/table-data/templates/templates/${tableId}/stages/${stageId}/access_cells/${accessCellId}/`).then((r) => r.data);
return api
.delete(
`/table-data/templates/templates/${tableId}/stages/${stageId}/access_cells/${accessCellId}/`,
)
.then((r) => r.data);
},
getStagesForTask(taskId) {
return api.get(`/tasks/${taskId}/stages`).then((r) => r.data);