This commit is contained in:
2026-04-16 12:25:50 +07:00
parent 5f31e562eb
commit c1e217464c
3 changed files with 49 additions and 8 deletions

View File

@ -6,15 +6,14 @@ import { OrmHelper } from "../helpers/orm";
export class DiagnosisModel {
static async list(filter = {}): Promise<SelectQueryBuilder<any>> {
const repo = OrmHelper.DB.getRepository(Diagnosis);
let whereAttr = [];
let whereAttr: string[] = [];
let whereVal: any = {};
if (filter) {
if (filter && Object.keys(filter).length > 0) {
whereAttr = [...whereAttr, ...CommonHelper.handleQueryFilter(filter).whereAttr];
whereVal = { ...whereVal, ...CommonHelper.handleQueryFilter(filter).whereVal };
}
var query = null;
query = repo.createQueryBuilder("Diagnosis");
var query = repo.createQueryBuilder("Diagnosis");
if (whereAttr.length != 0) {
query = query.where(whereAttr.join(" and "), whereVal);
}