feat: add contextual note field to sale order

This commit is contained in:
Kristof Bernaert
2026-05-29 21:14:23 +02:00
parent d8c0469dc3
commit 6dbd1ceb38
6 changed files with 40 additions and 0 deletions
@@ -0,0 +1,9 @@
from odoo import fields, models
class SaleOrderContextual(models.Model):
_inherit = 'sale.order'
contextual_note = fields.Text(
string='Contextuele opmerking',
)