update: add new module inital stock

This commit is contained in:
wayanrivan
2026-03-12 12:09:59 +07:00
parent 8427eb438d
commit b426f0ad83
5 changed files with 175 additions and 2 deletions

View File

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