Odoo18-Base/addons/payment_custom/controllers/main.py
2025-01-06 10:57:38 +07:00

19 lines
642 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
import pprint
from odoo.http import Controller, request, route
_logger = logging.getLogger(__name__)
class CustomController(Controller):
_process_url = '/payment/custom/process'
@route(_process_url, type='http', auth='public', methods=['POST'], csrf=False)
def custom_process_transaction(self, **post):
_logger.info("Handling custom processing with data:\n%s", pprint.pformat(post))
request.env['payment.transaction'].sudo()._handle_notification_data('custom', post)
return request.redirect('/payment/status')