diff options
Diffstat (limited to 'addons/adyen_platforms/models/res_company.py')
| -rw-r--r-- | addons/adyen_platforms/models/res_company.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/addons/adyen_platforms/models/res_company.py b/addons/adyen_platforms/models/res_company.py new file mode 100644 index 00000000..c4767889 --- /dev/null +++ b/addons/adyen_platforms/models/res_company.py @@ -0,0 +1,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) |
