45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# © 2015-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
name = fields.Char(track_visibility='onchange')
|
|
type = fields.Selection(track_visibility='onchange')
|
|
categ_id = fields.Many2one(track_visibility='onchange')
|
|
list_price = fields.Float(track_visibility='onchange')
|
|
sale_ok = fields.Boolean(track_visibility='onchange')
|
|
purchase_ok = fields.Boolean(track_visibility='onchange')
|
|
|
|
|
|
class ProductProduct(models.Model):
|
|
_inherit = 'product.product'
|
|
|
|
default_code = fields.Char(track_visibility='onchange')
|
|
barcode = fields.Char(track_visibility='onchange')
|
|
weight = fields.Float(track_visibility='onchange')
|
|
price_history_ids = fields.One2many(
|
|
'product.price.history', 'product_id',
|
|
string='Product Price History')
|
|
|
|
_sql_constraints = [(
|
|
# Maybe it could be better to have a constrain per company
|
|
# but the company_id field is on product.template,
|
|
# not on product.product
|
|
# If it's a problem, we'll create a company_id field on
|
|
# product.product
|
|
'default_code_uniq',
|
|
'unique(default_code)',
|
|
'This internal reference already exists!')]
|
|
|
|
|
|
class ProductSupplierinfo(models.Model):
|
|
_inherit = 'product.supplierinfo'
|
|
|
|
name = fields.Many2one(
|
|
domain=[('supplier', '=', True), ('parent_id', '=', False)])
|