Files
service-master-data-revenue/src/model/item_status.ts
Muhammad Rayhan Ardiansyah a2a628c1a1 init pharmacy master data
2026-02-26 16:30:08 +07:00

23 lines
894 B
TypeScript

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