new module to add account number on partner, visible in account move lines payable and receivable
8 lines
150 B
Python
8 lines
150 B
Python
from odoo import fields, models, _
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
account_number = fields.Char('Account number')
|