diff --git a/src/api/02_organizational/api.organization.ts b/src/api/02_organizational/api.organization.ts index b497f4431..ec907dceb 100644 --- a/src/api/02_organizational/api.organization.ts +++ b/src/api/02_organizational/api.organization.ts @@ -84,4 +84,6 @@ export default { orgPosMoveEmp: `${orgEmployeePos}/move`, orgProfileEmp: `${orgEmployeePos}/profile`, orgSearchProfileEmp: `${orgProfile}-employee/search`, + + orgProfileById:(id:string)=>`${orgProfile}/${id}` }; diff --git a/src/components/Dialogs/PopupPersonalNew.vue b/src/components/Dialogs/PopupPersonalNew.vue new file mode 100644 index 000000000..3dedffa82 --- /dev/null +++ b/src/components/Dialogs/PopupPersonalNew.vue @@ -0,0 +1,424 @@ + + + + + diff --git a/src/components/information/interface/response/Information.ts b/src/components/information/interface/response/Information.ts index 53fda083a..65e4e7e80 100644 --- a/src/components/information/interface/response/Information.ts +++ b/src/components/information/interface/response/Information.ts @@ -27,7 +27,7 @@ interface PersonalImformation { firstName: string; lastName: string; birthDate: string | null; - age: string; + age: any; gender: string; }