fix ปรับระดับชั้นงานลูกจ้าง (ข้อมูลระดับชั้นงานแสดงไม่ครบ) #1172
This commit is contained in:
parent
8ab3cb26b5
commit
ec14148d72
1 changed files with 3 additions and 1 deletions
|
|
@ -6641,7 +6641,9 @@ export class ProfileController extends Controller {
|
|||
position: profile.position,
|
||||
leaveDate: profile.dateLeave,
|
||||
posMasterNo: posMaster == null ? null : posMaster.posMasterNo,
|
||||
posLevelName: profile.posLevel == null ? null : profile.posLevel.posLevelName,
|
||||
posLevelName: profile.posLevel == null
|
||||
? null
|
||||
: `${profile.posType.posTypeShortName ?? ""} ${profile.posLevel.posLevelName ?? ""}`,
|
||||
posLevelRank: profile.posLevel == null ? null : profile.posLevel.posLevelRank,
|
||||
posLevelId: profile.posLevel == null ? null : profile.posLevel.id,
|
||||
posTypeName: profile.posType == null ? null : profile.posType.posTypeName,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue