Initial MRP foundation scaffold

This commit is contained in:
2026-03-14 14:44:40 -05:00
commit ee833ed074
77 changed files with 10218 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { prisma } from "../../lib/prisma.js";
export async function listCustomers() {
return prisma.customer.findMany({
orderBy: { name: "asc" },
});
}
export async function listVendors() {
return prisma.vendor.findMany({
orderBy: { name: "asc" },
});
}