squashed commit

This commit is contained in:
hoangvv
2026-09-18 13:55:25 +07:00
commit 039c98d4d0
45882 changed files with 24235585 additions and 0 deletions
@@ -0,0 +1,3 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import main
+18
View File
@@ -0,0 +1,18 @@
# 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')