add factory-to-supplier

This commit is contained in:
Rayhan Ardiansyah
2026-03-03 16:04:13 +07:00
parent 736c23227b
commit 244071ee24
4 changed files with 444 additions and 0 deletions

View File

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