feat(eom): all endpoints created for the eom template to run in all plants

This commit is contained in:
2025-09-30 19:55:35 -05:00
parent a7f45abfeb
commit 9a14f250b6
25 changed files with 872 additions and 33 deletions

View File

@@ -1,8 +1,15 @@
import { eq } from "drizzle-orm";
import { db } from "../../../../database/dbclient.js";
import { settings } from "../../../../database/schema/settings.js";
import { tryCatch } from "../../../globalUtils/tryCatch.js";
import { query } from "../../sqlServer/prodSqlServer.js";
import { lastSalesPriceCheck } from "../../sqlServer/querys/eom/lastSalesprice.js";
import { format } from "date-fns-tz";
export const lastSales = async (date: string) => {
export const lastSales = async (
date: string,
includePlantToken: boolean = false
) => {
const { data, error } = (await tryCatch(
query(lastSalesPriceCheck.replace("[date]", date), "Last sales price")
)) as any;
@@ -15,9 +22,34 @@ export const lastSales = async (date: string) => {
};
}
return {
success: true,
message: `Last sales price for all av in the last 5 years`,
data: data.data,
};
if (includePlantToken) {
const { data: s, error: se } = (await tryCatch(
db.select().from(settings).where(eq(settings.name, "plantToken"))
)) as any;
if (se) {
console.log("Error getting articles");
return data.data;
}
return {
success: true,
message: `Historical inventory for ${date}`,
data: data.data.map((n: any) => {
return {
plantToken: s[0].value,
...n,
validDate: format(n.validDate, "M/d/yyyy"),
};
}),
};
} else {
return {
success: true,
message: `Last sales price for all av in the last 5 years`,
data: data.data.map((n: any) => {
return { ...n, validDate: format(n.validDate, "M/d/yyyy") };
}),
};
}
};