From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/pos_restaurant_adyen/models/pos_payment.py | 32 +++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 addons/pos_restaurant_adyen/models/pos_payment.py (limited to 'addons/pos_restaurant_adyen/models/pos_payment.py') diff --git a/addons/pos_restaurant_adyen/models/pos_payment.py b/addons/pos_restaurant_adyen/models/pos_payment.py new file mode 100644 index 00000000..4c62cacf --- /dev/null +++ b/addons/pos_restaurant_adyen/models/pos_payment.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import json +import requests + +from odoo import models + +TIMEOUT = 10 + + +class PosPayment(models.Model): + _inherit = 'pos.payment' + + def _update_payment_line_for_tip(self, tip_amount): + """Capture the payment when a tip is set.""" + res = super(PosPayment, self)._update_payment_line_for_tip(tip_amount) + if self.payment_method_id.use_payment_terminal == 'adyen': + self._adyen_capture() + return res + + def _adyen_capture(self): + data = { + 'originalReference': self.transaction_id, + 'modificationAmount': { + 'value': int(self.amount * 10**self.currency_id.decimal_places), + 'currency': self.currency_id.name, + }, + 'merchantAccount': self.payment_method_id.adyen_merchant_account, + } + + return self.payment_method_id.proxy_adyen_request(data, 'capture') -- cgit v1.2.3