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