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

erp5_hal_json_style: fix

parent 0fb7f3e3
......@@ -3,7 +3,8 @@
: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"
"""
from zExceptions import Redirect
from transaction import doom
from zExceptions import Success
from ZTUtils import make_query
import json
......@@ -57,6 +58,6 @@ result_dict = {
}
result = json.dumps(result_dict, indent=2)
if abort_transaction:
response.write(result)
raise Redirect
doom()
raise Success(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