Odoo18-Base/addons/payment_adyen/models/payment_token.py
2025-01-06 10:57:38 +07:00

12 lines
343 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import _, fields, models
class PaymentToken(models.Model):
_inherit = 'payment.token'
adyen_shopper_reference = fields.Char(
string="Shopper Reference", help="The unique reference of the partner owning this token",
readonly=True)