14 lines
427 B
Python
14 lines
427 B
Python
# Copyright (C) 2022: Criptomart (https://criptomart.net)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
#import logging
|
|
|
|
from odoo import tools, models, fields, api, _
|
|
|
|
#_logger = logging.getLogger(__name__)
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
in_distribution = fields.Boolean('En distribución')
|
|
retail_margin = fields.Float('Margen aplicado a minoristas')
|