feat: add Lab RX feature with template management and auto-seed defaults
- New lab_rx_template table with sortOrder and Prisma migrations - Backend CRUD + reorder routes at /api/lab-rx/templates - Auto-seeds 3 Highland Dental Studio defaults on first use per user - LabRxModal: template picker, inline rename, up/down reorder, full template form with sections (Template Name / Lab Info / Case Details) - RX popup: Tooth Number, Shade, Due Date, Doctor (from NPI providers), Instructions pre-filled with "Please make / Thank you!", print output - lab-rx-templates.ts config file for future git-managed additions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -43,6 +43,7 @@ import shoppingVendorsRoutes from "./shopping-vendors";
|
||||
import feeScheduleRoutes from "./feeSchedule";
|
||||
import licenseRoutes from "./license";
|
||||
import insuranceStatusBcbsMaRoutes from "./insuranceStatusBcbsMa";
|
||||
import labRxRoutes from "./lab-rx";
|
||||
|
||||
const router = Router();
|
||||
|
||||
@@ -90,5 +91,6 @@ router.use("/commissions", commissionsRoutes);
|
||||
router.use("/shopping-vendors", shoppingVendorsRoutes);
|
||||
router.use("/fee-schedule", feeScheduleRoutes);
|
||||
router.use("/license", licenseRoutes);
|
||||
router.use("/lab-rx", labRxRoutes);
|
||||
|
||||
export default router;
|
||||
|
||||
92
apps/Backend/src/routes/lab-rx.ts
Normal file
92
apps/Backend/src/routes/lab-rx.ts
Normal file
@@ -0,0 +1,92 @@
|
||||
import express, { Request, Response } from "express";
|
||||
import { storage } from "../storage";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.get("/templates", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
const userId = req.user?.id;
|
||||
if (!userId) return res.status(401).json({ message: "Unauthorized" });
|
||||
const templates = await storage.getLabRxTemplates(userId);
|
||||
return res.json(templates);
|
||||
} catch (err) {
|
||||
return res.status(500).json({ error: "Failed to fetch lab RX templates", details: String(err) });
|
||||
}
|
||||
});
|
||||
|
||||
router.post("/templates", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
const userId = req.user?.id;
|
||||
if (!userId) return res.status(401).json({ message: "Unauthorized" });
|
||||
const { name, labName, labPhone, labFax, labAddress, labAccount, caseType, material, instructions } = req.body;
|
||||
if (!name?.trim()) return res.status(400).json({ message: "Template name is required" });
|
||||
const template = await storage.createLabRxTemplate(userId, {
|
||||
name: name.trim(),
|
||||
labName: labName?.trim() || undefined,
|
||||
labPhone: labPhone?.trim() || undefined,
|
||||
labFax: labFax?.trim() || undefined,
|
||||
labAddress: labAddress?.trim() || undefined,
|
||||
labAccount: labAccount?.trim() || undefined,
|
||||
caseType: caseType?.trim() || undefined,
|
||||
material: material?.trim() || undefined,
|
||||
instructions: instructions?.trim() || undefined,
|
||||
});
|
||||
return res.status(201).json(template);
|
||||
} catch (err) {
|
||||
return res.status(500).json({ error: "Failed to create lab RX template", details: String(err) });
|
||||
}
|
||||
});
|
||||
|
||||
router.put("/templates/:id", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
const userId = req.user?.id;
|
||||
if (!userId) return res.status(401).json({ message: "Unauthorized" });
|
||||
const id = Number(req.params.id);
|
||||
if (isNaN(id)) return res.status(400).json({ message: "Invalid ID" });
|
||||
const { name, labName, labPhone, labFax, labAddress, labAccount, caseType, material, instructions } = req.body;
|
||||
if (name !== undefined && !name?.trim()) return res.status(400).json({ message: "Name cannot be empty" });
|
||||
const template = await storage.updateLabRxTemplate(userId, id, {
|
||||
name: name?.trim(),
|
||||
labName: labName?.trim() || undefined,
|
||||
labPhone: labPhone?.trim() || undefined,
|
||||
labFax: labFax?.trim() || undefined,
|
||||
labAddress: labAddress?.trim() || undefined,
|
||||
labAccount: labAccount?.trim() || undefined,
|
||||
caseType: caseType?.trim() || undefined,
|
||||
material: material?.trim() || undefined,
|
||||
instructions: instructions?.trim() || undefined,
|
||||
});
|
||||
return res.json(template);
|
||||
} catch (err) {
|
||||
return res.status(500).json({ error: "Failed to update lab RX template", details: String(err) });
|
||||
}
|
||||
});
|
||||
|
||||
router.post("/templates/reorder", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
const userId = req.user?.id;
|
||||
if (!userId) return res.status(401).json({ message: "Unauthorized" });
|
||||
const { orderedIds } = req.body;
|
||||
if (!Array.isArray(orderedIds)) return res.status(400).json({ message: "orderedIds must be an array" });
|
||||
await storage.reorderLabRxTemplates(userId, orderedIds);
|
||||
return res.status(204).send();
|
||||
} catch (err) {
|
||||
return res.status(500).json({ error: "Failed to reorder templates", details: String(err) });
|
||||
}
|
||||
});
|
||||
|
||||
router.delete("/templates/:id", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
const userId = req.user?.id;
|
||||
if (!userId) return res.status(401).json({ message: "Unauthorized" });
|
||||
const id = Number(req.params.id);
|
||||
if (isNaN(id)) return res.status(400).json({ message: "Invalid ID" });
|
||||
const ok = await storage.deleteLabRxTemplate(userId, id);
|
||||
if (!ok) return res.status(404).json({ message: "Template not found" });
|
||||
return res.status(204).send();
|
||||
} catch (err) {
|
||||
return res.status(500).json({ error: "Failed to delete lab RX template", details: String(err) });
|
||||
}
|
||||
});
|
||||
|
||||
export default router;
|
||||
@@ -25,6 +25,7 @@ import { procedureTimeslotStorage } from "./procedure-timeslot-storage";
|
||||
import { insuranceContactStorage } from "./insurance-contact-storage";
|
||||
import { commissionsStorage } from "./commissions-storage";
|
||||
import { shoppingVendorStorage } from "./shopping-vendor-storage";
|
||||
import { labRxStorage } from "./lab-rx-storage";
|
||||
|
||||
|
||||
export const storage = {
|
||||
@@ -53,6 +54,7 @@ export const storage = {
|
||||
...insuranceContactStorage,
|
||||
...commissionsStorage,
|
||||
...shoppingVendorStorage,
|
||||
...labRxStorage,
|
||||
|
||||
};
|
||||
|
||||
|
||||
90
apps/Backend/src/storage/lab-rx-storage.ts
Normal file
90
apps/Backend/src/storage/lab-rx-storage.ts
Normal file
@@ -0,0 +1,90 @@
|
||||
import { prisma as db } from "@repo/db/client";
|
||||
|
||||
export type LabRxTemplateInput = {
|
||||
name: string;
|
||||
labName?: string;
|
||||
labPhone?: string;
|
||||
labFax?: string;
|
||||
labAddress?: string;
|
||||
labAccount?: string;
|
||||
caseType?: string;
|
||||
material?: string;
|
||||
instructions?: string;
|
||||
};
|
||||
|
||||
const DEFAULT_TEMPLATES: LabRxTemplateInput[] = [
|
||||
{
|
||||
name: "Highland Dental Crown",
|
||||
labName: "Highland Dental Studio",
|
||||
labPhone: "781-552-5198",
|
||||
labAddress: "87 Cambridge Street, Burlington, MA 01803",
|
||||
caseType: "Crown",
|
||||
material: "Zirconia",
|
||||
},
|
||||
{
|
||||
name: "Highland Dental Full Denture",
|
||||
labName: "Highland Dental Studio",
|
||||
labPhone: "781-552-5198",
|
||||
labAddress: "87 Cambridge Street, Burlington, MA 01803",
|
||||
caseType: "Full Denture",
|
||||
},
|
||||
{
|
||||
name: "Highland Dental Partial Denture",
|
||||
labName: "Highland Dental Studio",
|
||||
labPhone: "781-552-5198",
|
||||
labAddress: "87 Cambridge Street, Burlington, MA 01803",
|
||||
caseType: "Partial Denture",
|
||||
},
|
||||
];
|
||||
|
||||
export const labRxStorage = {
|
||||
async getLabRxTemplates(userId: number) {
|
||||
const existing = await db.labRxTemplate.findMany({
|
||||
where: { userId },
|
||||
orderBy: { sortOrder: "asc" },
|
||||
});
|
||||
|
||||
if (existing.length === 0) {
|
||||
await db.labRxTemplate.createMany({
|
||||
data: DEFAULT_TEMPLATES.map((t, index) => ({ userId, sortOrder: index, ...t })),
|
||||
});
|
||||
return db.labRxTemplate.findMany({
|
||||
where: { userId },
|
||||
orderBy: { sortOrder: "asc" },
|
||||
});
|
||||
}
|
||||
|
||||
return existing;
|
||||
},
|
||||
|
||||
async reorderLabRxTemplates(userId: number, orderedIds: number[]) {
|
||||
await db.$transaction(
|
||||
orderedIds.map((id, index) =>
|
||||
db.labRxTemplate.updateMany({
|
||||
where: { id, userId },
|
||||
data: { sortOrder: index },
|
||||
})
|
||||
)
|
||||
);
|
||||
},
|
||||
|
||||
async createLabRxTemplate(userId: number, data: LabRxTemplateInput) {
|
||||
return db.labRxTemplate.create({
|
||||
data: { userId, ...data },
|
||||
});
|
||||
},
|
||||
|
||||
async updateLabRxTemplate(userId: number, id: number, data: Partial<LabRxTemplateInput>) {
|
||||
return db.labRxTemplate.update({
|
||||
where: { id, userId },
|
||||
data,
|
||||
});
|
||||
},
|
||||
|
||||
async deleteLabRxTemplate(userId: number, id: number) {
|
||||
const existing = await db.labRxTemplate.findFirst({ where: { id, userId } });
|
||||
if (!existing) return false;
|
||||
await db.labRxTemplate.delete({ where: { id } });
|
||||
return true;
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user