Hi everyone,
I'm developing an Odoo 17 addon to add a custom field for invoicing. I'm targeting the Invoicing tree view.
Here's my code structure:
account_move py
from odoo import models, fields
class AccountMove(models.Model):
_inherit = 'account.move'
custom_field = fields.Char(string='Custom Field')
odoo import models, fields
account_move_views.xml
account.move.tree.inherit
account.move
The problem is, the custom field isn't showing up in the tree view. There are no errors in the console either.
Can anyone help me troubleshoot this?