mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-14 12:25:09 +00:00
fix: Added a message to enable appontment booking if disabled (#26334)
This commit is contained in:
committed by
GitHub
parent
dfe11aca6a
commit
842674ce79
@@ -2,6 +2,7 @@ import frappe
|
||||
import datetime
|
||||
import json
|
||||
import pytz
|
||||
from frappe import _
|
||||
|
||||
|
||||
WEEKDAYS = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
|
||||
@@ -14,7 +15,8 @@ def get_context(context):
|
||||
if is_enabled:
|
||||
return context
|
||||
else:
|
||||
frappe.local.flags.redirect_location = '/404'
|
||||
frappe.redirect_to_message(_("Appointment Scheduling Disabled"), _("Appointment Scheduling has been disabled for this site"),
|
||||
http_status_code=302, indicator_color="red")
|
||||
raise frappe.Redirect
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
|
||||
Reference in New Issue
Block a user