init pharmacy master data

This commit is contained in:
Muhammad Rayhan Ardiansyah
2026-02-26 16:30:08 +07:00
parent 4c861f7597
commit a2a628c1a1
18 changed files with 2659 additions and 3 deletions

View File

@ -0,0 +1,23 @@
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;
}
}