Features: - Multi-menu support with time-based availability - Menu hours validation against business operating hours - Setup wizard now creates Menu records and links categories - New menus.cfm API for menu CRUD operations - Category schedule filtering (day/time based visibility) - Beacon UUID lookup API for customer app - Parent/child business relationships for franchises - Category listing API for menu builder Portal improvements: - Menu builder theming to match admin UI - Brand color picker fix - Header image preview improvements API fixes: - Filter demo/hidden businesses from restaurant list - Improved error handling throughout Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
1.3 KiB
Text
46 lines
1.3 KiB
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
|
|
<cfscript>
|
|
/**
|
|
* Link a child business to a parent
|
|
* POST: { "ChildBusinessID": 49, "ParentBusinessID": 51 }
|
|
*/
|
|
|
|
function readJsonBody() {
|
|
var raw = getHttpRequestData().content;
|
|
if (isNull(raw) || len(trim(raw)) == 0) return {};
|
|
try {
|
|
return deserializeJSON(raw);
|
|
} catch (any e) {
|
|
return {};
|
|
}
|
|
}
|
|
|
|
response = { "OK": false };
|
|
|
|
try {
|
|
data = readJsonBody();
|
|
childID = val(data.ChildBusinessID ?: 0);
|
|
parentID = val(data.ParentBusinessID ?: 0);
|
|
|
|
if (childID <= 0) {
|
|
response["ERROR"] = "ChildBusinessID required";
|
|
} else {
|
|
queryExecute("
|
|
UPDATE Businesses SET BusinessParentBusinessID = :parentId WHERE BusinessID = :childId
|
|
", {
|
|
parentId: { value = parentID > 0 ? parentID : javaCast("null", ""), cfsqltype = "cf_sql_integer", null = parentID == 0 },
|
|
childId: childID
|
|
}, { datasource = "payfrit" });
|
|
|
|
response["OK"] = true;
|
|
response["MESSAGE"] = "Updated BusinessID " & childID & " parent to " & (parentID > 0 ? parentID : "NULL");
|
|
}
|
|
} catch (any e) {
|
|
response["ERROR"] = e.message;
|
|
}
|
|
|
|
writeOutput(serializeJSON(response));
|
|
</cfscript>
|