no message
This commit is contained in:
parent
6599aa513e
commit
505baa7bba
1 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ import {
|
|||
updateKpiUserReqEditEvaluation,
|
||||
updateKpiUserResultEvaluation,
|
||||
} from "../entities/kpiUserEvaluation";
|
||||
import { Like, In, Brackets } from "typeorm";
|
||||
import { Like, In, Brackets, IsNull, Not } from "typeorm";
|
||||
import CallAPI from "../interfaces/call-api";
|
||||
import { KpiCapacity } from "../entities/kpiCapacity";
|
||||
import { Position } from "../entities/position";
|
||||
|
|
@ -389,7 +389,7 @@ export class KpiUserEvaluationController extends Controller {
|
|||
|
||||
// GROUP CAPACITY
|
||||
const findPosition = await this.kpiPositionRepository.findOne({
|
||||
where: { name: kpiUserEvaluation.position },
|
||||
where: { name: kpiUserEvaluation.position, kpiLinkId: Not(IsNull()) },
|
||||
});
|
||||
|
||||
let levelForGourp: any = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue