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>
55 lines
1.5 KiB
Text
55 lines
1.5 KiB
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
|
|
<cfscript>
|
|
/**
|
|
* Delete a business (and its address)
|
|
* POST: { "BusinessID": 52 }
|
|
*/
|
|
|
|
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();
|
|
bizID = val(data.BusinessID ?: 0);
|
|
|
|
if (bizID <= 0) {
|
|
response["ERROR"] = "BusinessID required";
|
|
} else {
|
|
// Get address ID first
|
|
qBiz = queryExecute("SELECT BusinessAddressID FROM Businesses WHERE BusinessID = :id", { id: bizID }, { datasource = "payfrit" });
|
|
|
|
if (qBiz.recordCount == 0) {
|
|
response["ERROR"] = "Business not found";
|
|
} else {
|
|
addrID = qBiz.BusinessAddressID;
|
|
|
|
// Delete business
|
|
queryExecute("DELETE FROM Businesses WHERE BusinessID = :id", { id: bizID }, { datasource = "payfrit" });
|
|
|
|
// Delete address if exists
|
|
if (val(addrID) > 0) {
|
|
queryExecute("DELETE FROM Addresses WHERE AddressID = :id", { id: addrID }, { datasource = "payfrit" });
|
|
}
|
|
|
|
response["OK"] = true;
|
|
response["MESSAGE"] = "Deleted BusinessID " & bizID;
|
|
}
|
|
}
|
|
} catch (any e) {
|
|
response["ERROR"] = e.message;
|
|
}
|
|
|
|
writeOutput(serializeJSON(response));
|
|
</cfscript>
|