no message
This commit is contained in:
parent
168e59fdf4
commit
822035838d
1 changed files with 4 additions and 1 deletions
|
|
@ -251,7 +251,10 @@ export class SalaryFormulaEmployeeController extends Controller {
|
||||||
|
|
||||||
const mapFormula = getFormula.map((item) => ({
|
const mapFormula = getFormula.map((item) => ({
|
||||||
id: item.id,
|
id: item.id,
|
||||||
posLevel: item.posLevel != null ? item.posLevel.posLevelName : null,
|
posLevel:
|
||||||
|
item.posLevel != null && item.posType != null
|
||||||
|
? `${item.posType.posTypeShortName} ${item.posLevel.posLevelName}`
|
||||||
|
: null,
|
||||||
position: item.position,
|
position: item.position,
|
||||||
posType: item.posType != null ? item.posType.posTypeName : null,
|
posType: item.posType != null ? item.posType.posTypeName : null,
|
||||||
details: item.details,
|
details: item.details,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue