diff --git a/src/modules/05_placement/components/PersonalList/Table.vue b/src/modules/05_placement/components/PersonalList/Table.vue index 5aff24e89..a3363d966 100644 --- a/src/modules/05_placement/components/PersonalList/Table.vue +++ b/src/modules/05_placement/components/PersonalList/Table.vue @@ -379,6 +379,7 @@ async function getTable() { lastName: data.lastname, citizenId: data.citizenId, id: data.id, + profileId: data.profileId, }; rowsAll.value.push(rowData); }); diff --git a/src/modules/18_command/components/DialogCreateCommand.vue b/src/modules/18_command/components/DialogCreateCommand.vue index 414f7ed72..bd8bb3aac 100644 --- a/src/modules/18_command/components/DialogCreateCommand.vue +++ b/src/modules/18_command/components/DialogCreateCommand.vue @@ -160,6 +160,7 @@ function createCommand(isRedirect: boolean) { firstName: e.firstName, lastName: e.lastName, citizenId: e.citizenId, + profileId: e.profileId, })); const body = { commandYear: commandYear.value, @@ -167,6 +168,7 @@ function createCommand(isRedirect: boolean) { commandTypeId: commandType.value, persons: data, }; + await http .post(config.API.command + `/person`, body) .then(async (res) => { diff --git a/src/stores/structureTree.ts b/src/stores/structureTree.ts index a4f8f6a0b..1de8bf225 100644 --- a/src/stores/structureTree.ts +++ b/src/stores/structureTree.ts @@ -74,7 +74,6 @@ export const useStructureTree = defineStore("structureTree", () => { messageError($q, err); } finally { isLoad && hideLoader(); - console.log(123) } }