fix validate
This commit is contained in:
parent
2688e8267c
commit
e27bb54b39
1 changed files with 6 additions and 6 deletions
|
|
@ -290,14 +290,14 @@ export class KpiUserEvaluationController extends Controller {
|
||||||
evaluatorId: item.evaluatorId,
|
evaluatorId: item.evaluatorId,
|
||||||
commanderId: item.commanderId,
|
commanderId: item.commanderId,
|
||||||
commanderHighId: item.commanderHighId,
|
commanderHighId: item.commanderHighId,
|
||||||
root: item.org,
|
root: item.org?item.org:null,
|
||||||
rootId: item.orgId,
|
rootId: item.orgId?item.orgId:null,
|
||||||
position: item.position,
|
position: item.position?item.position:null,
|
||||||
// posTypeId: item.posTypeId,
|
// posTypeId: item.posTypeId,
|
||||||
posTypeName: item.posTypeName,
|
posTypeName: item.posTypeName?item.posTypeName:null,
|
||||||
// posLevelId: item.posLevelId,
|
// posLevelId: item.posLevelId,
|
||||||
posLevelName: item.posLevelName,
|
posLevelName: item.posLevelName?item.posLevelName:null,
|
||||||
organization: organization,
|
organization: organization?organization:null,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
return new HttpSuccess({ data: mapData, total });
|
return new HttpSuccess({ data: mapData, total });
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue