Categories Migration: - Add ItemCategoryID column to Items table (api/admin/addItemCategoryColumn.cfm) - Migration script to populate Categories from unified schema (api/admin/migrateToCategories.cfm) - Updated items.cfm and getForBuilder.cfm to use Categories table with fallback KDS Station Selection: - KDS now prompts for station selection on load (Kitchen, Bar, or All Stations) - Station filter persists in localStorage - Updated listForKDS.cfm to filter orders by station - Simplified KDS UI with station badge in header Portal Improvements: - Fixed drag-and-drop in station assignment (proper event propagation) - Fixed Back button links to use BASE_PATH for local development - Added console logging for debugging station assignment - Order detail API now calculates Subtotal, Tax, Tip, Total properly Admin Tools: - setupBigDeansStations.cfm - Create Kitchen and Bar stations for Big Dean's 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
53 lines
1.5 KiB
Text
53 lines
1.5 KiB
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
<cfheader name="Cache-Control" value="no-store">
|
|
|
|
<cfscript>
|
|
/**
|
|
* Add ItemCategoryID column to Items table
|
|
*/
|
|
|
|
response = { "OK": false };
|
|
|
|
try {
|
|
// Check if column already exists
|
|
qCheck = queryExecute("
|
|
SELECT COLUMN_NAME
|
|
FROM INFORMATION_SCHEMA.COLUMNS
|
|
WHERE TABLE_SCHEMA = 'payfrit'
|
|
AND TABLE_NAME = 'Items'
|
|
AND COLUMN_NAME = 'ItemCategoryID'
|
|
", {}, { datasource: "payfrit" });
|
|
|
|
if (qCheck.recordCount > 0) {
|
|
response["OK"] = true;
|
|
response["MESSAGE"] = "ItemCategoryID column already exists";
|
|
} else {
|
|
// Add the column
|
|
queryExecute("
|
|
ALTER TABLE Items
|
|
ADD COLUMN ItemCategoryID INT NULL DEFAULT 0 AFTER ItemParentItemID
|
|
", {}, { datasource: "payfrit" });
|
|
|
|
// Add index for performance
|
|
try {
|
|
queryExecute("
|
|
CREATE INDEX idx_items_categoryid ON Items(ItemCategoryID)
|
|
", {}, { datasource: "payfrit" });
|
|
} catch (any indexErr) {
|
|
// Index might already exist
|
|
}
|
|
|
|
response["OK"] = true;
|
|
response["MESSAGE"] = "ItemCategoryID column added successfully";
|
|
}
|
|
|
|
} catch (any e) {
|
|
response["ERROR"] = "server_error";
|
|
response["MESSAGE"] = e.message;
|
|
response["DETAIL"] = e.detail;
|
|
}
|
|
|
|
writeOutput(serializeJSON(response));
|
|
</cfscript>
|