Files
Stackq/src/lib/constants/items.ts
T
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

35 lines
659 B
TypeScript

/** UOM options for Stackq_Items (single select). */
export const UOM_OPTIONS = ["EA", "BX", "CA", "PK", "PLT", "LF"] as const;
/** Catagory options (single select in schema). */
export const CATAGORY_OPTIONS = [
"Framing",
"Insulation",
"Drywall",
"T-Bar",
"Painting",
"Masking",
"Misc",
] as const;
/** Sub_Catagory options (single select in schema). */
export const SUB_CATAGORY_OPTIONS = [
"ACT",
"Channel",
"Fasteners",
"Finishing Materials",
"Adhesives",
"Mud",
"Corner Bead",
"Sanding",
"Tape",
"Metal Studs",
"Metal Tracks",
"FRP",
"Gyp",
"Insulation",
"Paint",
"Weatherproofing",
"Misc",
] as const;