Files
odoo-usability/sale_quotation_title/sale.py
2021-11-26 18:57:02 +03:00

12 lines
334 B
Python

# Copyright 2016-2019 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 fields, models
class SaleOrder(models.Model):
_inherit = "sale.order"
quotation_title = fields.Char(string="Quotation Title")