update
This commit is contained in:
28
src/model/inpatient_room.ts
Normal file
28
src/model/inpatient_room.ts
Normal file
@ -0,0 +1,28 @@
|
||||
import { InpatientRoom } from "entity";
|
||||
import { SelectQueryBuilder } from "typeorm";
|
||||
import CommonHelper from "../helpers/common";
|
||||
import { OrmHelper } from "../helpers/orm";
|
||||
|
||||
export class InpatientRoomModel {
|
||||
static async list(filter = {}): Promise<SelectQueryBuilder<any>> {
|
||||
const repo = OrmHelper.DB.getRepository(InpatientRoom);
|
||||
let whereAttr = [];
|
||||
let whereVal: any = {};
|
||||
if (filter) {
|
||||
whereAttr = [...whereAttr, ...CommonHelper.handleQueryFilter(filter).whereAttr];
|
||||
whereVal = {
|
||||
...whereVal,
|
||||
...CommonHelper.handleQueryFilter(filter).whereVal,
|
||||
};
|
||||
}
|
||||
|
||||
var query = null;
|
||||
query = repo.createQueryBuilder();
|
||||
if (whereAttr.length != 0) {
|
||||
query = query.where(whereAttr.join(" and "), whereVal);
|
||||
}
|
||||
|
||||
return query;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user