Add sale_quotation_title module

This commit is contained in:
Alexis de Lattre
2016-04-01 12:09:14 +02:00
parent ae17f5752e
commit e4dae53dba
4 changed files with 86 additions and 0 deletions

View 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")