12 lines
343 B
Python
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)
|