Files
account-tools/account_sub_accounts/models/res_parter.py
2025-06-06 10:27:09 +02:00

9 lines
234 B
Python

from odoo import fields, models
class Partner(models.Model):
_inherit = "res.partner"
sub_account_customer = fields.Char(string="Custommer sub-account")
sub_account_supplier = fields.Char(string="Supplier sub-account")