mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-23 08:42:05 +02:00
9 lines
295 B
Python
9 lines
295 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
pay_invoices_online = fields.Boolean(config_parameter='account_payment.enable_portal_payment')
|