This commit is contained in:
Narul Hidayah
2026-02-11 11:20:24 +07:00
parent 505cfe5b59
commit 9102d5b097
12 changed files with 1511 additions and 2 deletions

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

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