no message
This commit is contained in:
parent
2d6cf2524b
commit
389bec8ec8
1 changed files with 13 additions and 13 deletions
|
|
@ -2113,12 +2113,12 @@ export class OrganizationDotnetController extends Controller {
|
||||||
id: profile.id,
|
id: profile.id,
|
||||||
avatar: profile.avatar,
|
avatar: profile.avatar,
|
||||||
avatarName: profile.avatarName,
|
avatarName: profile.avatarName,
|
||||||
rank: profile.rank,
|
rank: profile.rank ?? "",
|
||||||
prefix: profile.prefix,
|
prefix: profile.prefix ?? "",
|
||||||
firstName: profile.firstName,
|
firstName: profile.firstName ?? "",
|
||||||
lastName: profile.lastName,
|
lastName: profile.lastName ?? "",
|
||||||
citizenId: profile.citizenId,
|
citizenId: profile.citizenId ?? "",
|
||||||
position: profile.position,
|
position: profile.position ?? "",
|
||||||
posLevelId: profile.posLevelId,
|
posLevelId: profile.posLevelId,
|
||||||
posTypeId: profile.posTypeId,
|
posTypeId: profile.posTypeId,
|
||||||
email: profile.email,
|
email: profile.email,
|
||||||
|
|
@ -2137,10 +2137,10 @@ export class OrganizationDotnetController extends Controller {
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
gender: profile.gender,
|
gender: profile.gender ?? "",
|
||||||
relationship: profile.relationship,
|
relationship: profile.relationship ?? "",
|
||||||
religion: profile.religion,
|
religion: profile.religion ?? "",
|
||||||
bloodGroup: profile.bloodGroup,
|
bloodGroup: profile.bloodGroup ?? "",
|
||||||
registrationAddress: profile.registrationAddress,
|
registrationAddress: profile.registrationAddress,
|
||||||
registrationProvinceId: profile.registrationProvinceId,
|
registrationProvinceId: profile.registrationProvinceId,
|
||||||
registrationDistrictId: profile.registrationDistrictId,
|
registrationDistrictId: profile.registrationDistrictId,
|
||||||
|
|
@ -2152,8 +2152,8 @@ export class OrganizationDotnetController extends Controller {
|
||||||
currentZipCode: profile.currentZipCode,
|
currentZipCode: profile.currentZipCode,
|
||||||
dutyTimeId: profile.dutyTimeId,
|
dutyTimeId: profile.dutyTimeId,
|
||||||
dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate,
|
dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate,
|
||||||
posLevel: profile.posLevel?.posLevelName ?? null,
|
posLevel: profile.posLevel?.posLevelName ?? "",
|
||||||
posType: profile.posType?.posTypeName ?? null,
|
posType: profile.posType?.posTypeName ?? "",
|
||||||
profileSalary: profile.profileSalary,
|
profileSalary: profile.profileSalary,
|
||||||
profileInsignia: profile.profileInsignias.map((x) => {
|
profileInsignia: profile.profileInsignias.map((x) => {
|
||||||
return { ...x, insignia: x.insignia.name };
|
return { ...x, insignia: x.insignia.name };
|
||||||
|
|
@ -2174,7 +2174,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
x.orgRevision?.orgRevisionIsDraft == false &&
|
x.orgRevision?.orgRevisionIsDraft == false &&
|
||||||
x.orgRevision?.orgRevisionIsCurrent == true,
|
x.orgRevision?.orgRevisionIsCurrent == true,
|
||||||
)?.orgRootId ?? null,
|
)?.orgRootId ?? null,
|
||||||
posNo: shortName,
|
posNo: shortName ?? "",
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue