blob: c4767889f10c3ff4105aa76b074b885dcca6e7bd (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
adyen_account_id = fields.Many2one('adyen.account', string='Adyen Account', readonly=True)
|