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