แจ้งการถึงแก่กรรม
This commit is contained in:
parent
8d3b845f0f
commit
1c93bca3df
1 changed files with 6 additions and 5 deletions
|
|
@ -110,11 +110,12 @@ const fectListDecased = async () => {
|
|||
rows.value = res.data.result.map((e: any) => ({
|
||||
personalId: e.id,
|
||||
fullname: `${e.prefix ?? ""}${e.firstName ?? ""} ${e.lastName ?? ""}`,
|
||||
positionType: e.positionType,
|
||||
position: e.positionLine,
|
||||
positionLevel: e.positionLevel,
|
||||
positionExecutive: e.positionExecutive,
|
||||
oc: e.organization,
|
||||
positionType: e.positionType == null ? "-" : e.positionType,
|
||||
position: e.positionLine == null ? "-" : e.positionLine,
|
||||
positionLevel: e.positionLevel === null ? "-" : e.positionLevel,
|
||||
positionExecutive:
|
||||
e.positionExecutive == null ? "-" : e.positionExecutive,
|
||||
oc: e.organization == null ? "-" : e.organization,
|
||||
createdAt: date2Thai(e.createdAt),
|
||||
}));
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue