Merge branch 'develop' into adiDev
This commit is contained in:
commit
fd13f25468
1 changed files with 6 additions and 5 deletions
|
|
@ -1981,6 +1981,9 @@ export class CommandController extends Controller {
|
||||||
level?: string | null;
|
level?: string | null;
|
||||||
unStigma?: string | null;
|
unStigma?: string | null;
|
||||||
commandId?: string | null;
|
commandId?: string | null;
|
||||||
|
amount?: Double | null;
|
||||||
|
positionSalaryAmount?: Double | null;
|
||||||
|
mouthSalaryAmount?: Double | null;
|
||||||
}[];
|
}[];
|
||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
|
|
@ -2018,11 +2021,9 @@ export class CommandController extends Controller {
|
||||||
profile.profileSalary.length > 0 ? profile.profileSalary[0].positionPathSide : null,
|
profile.profileSalary.length > 0 ? profile.profileSalary[0].positionPathSide : null,
|
||||||
positionExecutive:
|
positionExecutive:
|
||||||
profile.profileSalary.length > 0 ? profile.profileSalary[0].positionExecutive : null,
|
profile.profileSalary.length > 0 ? profile.profileSalary[0].positionExecutive : null,
|
||||||
amount: profile.profileSalary.length > 0 ? profile.profileSalary[0].amount : null,
|
amount: item.amount ? item.amount : null,
|
||||||
positionSalaryAmount:
|
positionSalaryAmount: item.positionSalaryAmount ? item.positionSalaryAmount : null,
|
||||||
profile.profileSalary.length > 0 ? profile.profileSalary[0].positionSalaryAmount : null,
|
mouthSalaryAmount: item.mouthSalaryAmount ? item.mouthSalaryAmount : null,
|
||||||
mouthSalaryAmount:
|
|
||||||
profile.profileSalary.length > 0 ? profile.profileSalary[0].mouthSalaryAmount : null,
|
|
||||||
order:
|
order:
|
||||||
profile.profileSalary.length >= 0
|
profile.profileSalary.length >= 0
|
||||||
? profile.profileSalary.length > 0
|
? profile.profileSalary.length > 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue