- Move menu manager button to toolbar next to Save Menu for visibility - Implement server-side photo upload for menu items - Strip base64 data URLs from save payload to reduce size - Add scheduled tasks, quick tasks, ratings, and task categories APIs - Add vertical support and brand color features Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
<cfsetting showdebugoutput="false">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
|
|
<cfscript>
|
|
// Fix orphaned tasks that had old category ID 4 (deleted Service Point)
|
|
// Update them to use new category ID 25 (new Service Point)
|
|
try {
|
|
// First check how many tasks are affected
|
|
qCount = queryExecute("
|
|
SELECT COUNT(*) as cnt FROM Tasks WHERE TaskCategoryID = 4
|
|
", [], { datasource: "payfrit" });
|
|
|
|
affectedCount = qCount.cnt;
|
|
|
|
if (affectedCount > 0) {
|
|
// Update them to the new category
|
|
queryExecute("
|
|
UPDATE Tasks SET TaskCategoryID = 25 WHERE TaskCategoryID = 4
|
|
", [], { datasource: "payfrit" });
|
|
|
|
writeOutput(serializeJSON({
|
|
"OK": true,
|
|
"MESSAGE": "Updated " & affectedCount & " tasks from category 4 to category 25"
|
|
}));
|
|
} else {
|
|
writeOutput(serializeJSON({
|
|
"OK": true,
|
|
"MESSAGE": "No tasks found with category ID 4"
|
|
}));
|
|
}
|
|
} catch (any e) {
|
|
writeOutput(serializeJSON({
|
|
"OK": false,
|
|
"ERROR": e.message
|
|
}));
|
|
}
|
|
</cfscript>
|