Files
service-master-data-revenue/src/model/patient_group.ts
Rayhan Ardiansyah 2d8256f6da add patient group
2026-03-06 13:32:25 +07:00

23 lines
906 B
TypeScript

import { PatientGroup } from "entity";
import { SelectQueryBuilder } from "typeorm";
import CommonHelper from "../helpers/common";
import { OrmHelper } from "../helpers/orm";
export class PatientGroupModel {
static async list(filter = {}): Promise<SelectQueryBuilder<any>> {
const repo = OrmHelper.DB.getRepository(PatientGroup);
let whereAttr: string[] = [];
let whereVal: any = {};
if (filter && Object.keys(filter).length > 0) {
whereAttr = [...whereAttr, ...CommonHelper.handleQueryFilter(filter, "patient_group").whereAttr];
whereVal = { ...whereVal, ...CommonHelper.handleQueryFilter(filter, "patient_group").whereVal };
}
var query = repo.createQueryBuilder("patient_group");
if (whereAttr.length != 0) {
query = query.where(whereAttr.join(" and "), whereVal);
}
return query;
}
}