[MIG] sale_confirm_wizard and sale_quotation_title

Update sale_usability to take advantage of base_view_inheritance_extension in v16
This commit is contained in:
Alexis de Lattre
2022-12-08 08:40:53 +01:00
parent 767c6a7fd9
commit 6d69bc659e
8 changed files with 30 additions and 40 deletions

View File

@@ -1,11 +1,11 @@
# Copyright 2016-2019 Akretion (http://www.akretion.com)
# Copyright 2016-2022 Akretion (http://www.akretion.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
# @author Alexis de Lattre <alexis.delattre@akretion.com>
from odoo import models, fields
from odoo import fields, models
class SaleOrder(models.Model):
_inherit = 'sale.order'
quotation_title = fields.Char(string="Quotation Title")
quotation_title = fields.Char(tracking=True)