fix
This commit is contained in:
parent
f382e3622f
commit
18b457c466
1 changed files with 2 additions and 1 deletions
|
|
@ -99,6 +99,7 @@ export class KpiUserEvaluationController extends Controller {
|
|||
// }
|
||||
const [kpiUserEvaluation, total] = await AppDataSource.getRepository(KpiUserEvaluation)
|
||||
.createQueryBuilder("kpiUserEvaluation")
|
||||
.leftJoinAndSelect("kpiUserEvaluation.kpiPeriod", "kpiPeriod")
|
||||
.andWhere(
|
||||
requestBody.kpiPeriodId ? "kpiUserEvaluation.kpiPeriodId LIKE :kpiPeriodId" : "1=1",
|
||||
{
|
||||
|
|
@ -106,7 +107,7 @@ export class KpiUserEvaluationController extends Controller {
|
|||
},
|
||||
)
|
||||
.andWhere(
|
||||
requestBody.year ? "kpiUserEvaluation.year LIKE :year" : "1=1", {year: requestBody.year},
|
||||
requestBody.year ? "kpiPeriod.year LIKE :year" : "1=1", {year: requestBody.year},
|
||||
)
|
||||
.andWhere(
|
||||
requestBody.status != null && requestBody.status != undefined
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue