35 lines
659 B
TypeScript
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;
|