โครงสร้างอัตรากำลัง => แสดงเลขที่ตำแห่นง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-25 10:16:35 +07:00
parent 3f0ddc0ef6
commit 8a7434ea45
2 changed files with 6 additions and 6 deletions

View file

@ -76,9 +76,9 @@ export const useOrganizational = defineStore("organizationalStore", () => {
: "ว่าง",
posMasterNo:
e.orgShortname +
e.posMasterNoPrefix +
e.posMasterNo +
e.posMasterNoSuffix,
(e.posMasterNoPrefix ? e.posMasterNoPrefix : "") +
(e.posMasterNo?e.posMasterNo:"") +
(e.posMasterNoSuffix?e.posMasterNoSuffix:""),
positionName: e.isSit ? e.profilePosition : e.positionName,
posTypeName: e.isSit ? e.profilePostype : e.posTypeName,
posLevelName: e.isSit ? e.profilePoslevel : e.posLevelName,

View file

@ -72,9 +72,9 @@ export const usePositionEmp = defineStore("positionEmpStore", () => {
: "ว่าง",
posMasterNo:
e.orgShortname +
e.posMasterNoPrefix +
e.posMasterNo +
e.posMasterNoSuffix,
(e.posMasterNoPrefix ? e.posMasterNoPrefix : "") +
(e.posMasterNo ? e.posMasterNo : "") +
(e.posMasterNoSuffix ? e.posMasterNoSuffix : ""),
positionName: e.isSit ? e.profilePosition : e.positionName,
posTypeName: e.isSit ? e.profilePostype : e.posTypeName,
posLevelName: e.isSit ? e.profilePoslevel : e.posLevelName,