เพิ่มฟิว short type
This commit is contained in:
parent
c32883f2e8
commit
9ae76f6592
2 changed files with 4 additions and 0 deletions
|
|
@ -409,6 +409,8 @@ export class OrganizationUnauthorizeController extends Controller {
|
|||
position: item.current_holder.position,
|
||||
posType:
|
||||
item.current_holder.posType == null ? null : item.current_holder.posType.posTypeName,
|
||||
posTypeShort:
|
||||
item.current_holder.posType == null ? null : item.current_holder.posType.posTypeShortName,
|
||||
posLevel:
|
||||
item.current_holder.posLevel == null ? null : item.current_holder.posLevel.posLevelName,
|
||||
amount: amount ? amount : null,
|
||||
|
|
|
|||
|
|
@ -1014,6 +1014,8 @@ export class ProfileEmployeeController extends Controller {
|
|||
position: item.current_holder.position,
|
||||
posType:
|
||||
item.current_holder.posType == null ? null : item.current_holder.posType.posTypeName,
|
||||
posTypeShort:
|
||||
item.current_holder.posType == null ? null : item.current_holder.posType.posTypeShortName,
|
||||
posLevel:
|
||||
item.current_holder.posLevel == null ? null : item.current_holder.posLevel.posLevelName,
|
||||
amount: amount ? amount : null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue