Hi,
I have a price_bruto field and want to freeze it when the invoice is != draft
class AccountInvoiceLine(models.Model):
_inherit = "account.invoice.line"
price_bruto = fields.Float(related='product_id.price_bruto', string="Price bruto", store=True)
Is it posible?