no message
This commit is contained in:
parent
5fcaf51908
commit
5e4ea343dc
1 changed files with 4 additions and 4 deletions
|
|
@ -2091,8 +2091,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 ? profile.posLevel : null,
|
posLevel: profile.posLevel?.posLevelName ?? null,
|
||||||
posType: profile.posType ? profile.posType : null,
|
posType: profile.posType?.posTypeName ?? null,
|
||||||
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 };
|
||||||
|
|
@ -2228,8 +2228,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 ? profile.posLevel : null,
|
posLevel: profile.posLevel?.posLevelName ?? null,
|
||||||
posType: profile.posType ? profile.posType : null,
|
posType: profile.posType?.posTypeName ?? null,
|
||||||
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 };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue