Add sale_quotation_title module
This commit is contained in:
12
sale_quotation_title/sale.py
Normal file
12
sale_quotation_title/sale.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- 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 openerp import models, fields
|
||||
|
||||
|
||||
class SaleOrder(models.Model):
|
||||
_inherit = 'sale.order'
|
||||
|
||||
quotation_title = fields.Char(string="Quotation Title")
|
||||
Reference in New Issue
Block a user