[ADD] account_partner_account_number:

new module to add account number on partner, visible in account move lines payable and receivable
This commit is contained in:
clementthomas
2023-06-08 14:47:40 +02:00
parent 2c3a647c17
commit 5074244aa6
8 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from odoo import fields, models, _
class ResPartner(models.Model):
_inherit = "res.partner"
account_number = fields.Char('Account number')