Files
odoo-usability/sale_quotation_title/sale.py
Alexis de Lattre 79826ab525 Remove SO from quotations menu
Port sale_quotation_title to v10
2019-01-31 19:26:03 +01:00

13 lines
346 B
Python

# -*- coding: utf-8 -*-
# © 2016 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
class SaleOrder(models.Model):
_inherit = 'sale.order'
quotation_title = fields.Char(string="Quotation Title")