19 lines
642 B
Python
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')
|