Commit 302a2021 authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

erp5_hal_json_style: fix

parent 0fb7f3e3
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
:param keep_items: is used mainly to pass "portal_status_message" to be showed to the user :param keep_items: is used mainly to pass "portal_status_message" to be showed to the user
the new UI supports "portal_status_level" with values "success" or "error" the new UI supports "portal_status_level" with values "success" or "error"
""" """
from zExceptions import Redirect from transaction import doom
from zExceptions import Success
from ZTUtils import make_query from ZTUtils import make_query
import json import json
...@@ -57,6 +58,6 @@ result_dict = { ...@@ -57,6 +58,6 @@ result_dict = {
} }
result = json.dumps(result_dict, indent=2) result = json.dumps(result_dict, indent=2)
if abort_transaction: if abort_transaction:
response.write(result) doom()
raise Redirect raise Success(result)
return result return result
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment