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:
@@ -0,0 +1,22 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: z.number().int().optional(),
|
||||
name: z.string(),
|
||||
labName: z.string().optional().nullable(),
|
||||
labPhone: z.string().optional().nullable(),
|
||||
labFax: z.string().optional().nullable(),
|
||||
labAddress: z.string().optional().nullable(),
|
||||
labAccount: z.string().optional().nullable(),
|
||||
caseType: z.string().optional().nullable(),
|
||||
material: z.string().optional().nullable(),
|
||||
instructions: z.string().optional().nullable(),
|
||||
doctorName: z.string().optional().nullable(),
|
||||
sortOrder: z.number().int().optional(),
|
||||
createdAt: z.coerce.date().optional(),
|
||||
updatedAt: z.coerce.date().optional()
|
||||
}).strict();
|
||||
export const LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.LabRxTemplateUncheckedCreateWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.LabRxTemplateUncheckedCreateWithoutUserInput>;
|
||||
export const LabRxTemplateUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user