blob: 3232929380796c900743b39364e03f1c4d6fe560 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
from odoo import http
from odoo.http import request
from odoo.addons.payment_adyen.controllers.main import AdyenController
_logger = logging.getLogger(__name__)
class PosRestaurantAdyenController(AdyenController):
@http.route()
def adyen_notification(self, **post):
if post.get('eventCode') in ['CAPTURE', 'AUTHORISATION_ADJUSTMENT'] and post.get('success') != 'true':
_logger.warning('%s for transaction_id %s failed', post.get('eventCode'), post.get('originalReference'))
return super(PosRestaurantAdyenController, self).adyen_notification(**post)
|