feat(datamart): delivery by date ranged added in, includes inhouse

This commit is contained in:
2025-04-13 10:09:12 -05:00
parent 99abded7b9
commit d96cd4416e
5 changed files with 215 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import getArticles from "./route/getActiveArticles.js";
import currentInv from "./route/getInventory.js";
import getCustomerInv from "./route/getCustomerInv.js";
import getOpenOrders from "./route/getOpenOrders.js";
import getDeliveryByDate from "./route/getDeliveryDateByRange.js";
const app = new OpenAPIHono();
@@ -13,6 +14,7 @@ const routes = [
currentInv,
getCustomerInv,
getOpenOrders,
getDeliveryByDate,
] as const;
const appRoutes = routes.forEach((route) => {