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

23
src/model/item_status.ts Normal file
View File

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