product_retail_cm gestiona las ventas a minoristas
quitado archivo de backup
This commit is contained in:
parent
1ff451205a
commit
3dffeeba00
5 changed files with 98 additions and 0 deletions
4
product_retail_cm/models/__init__.py
Normal file
4
product_retail_cm/models/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
from . import product_template
|
||||
|
||||
|
||||
|
14
product_retail_cm/models/product_template.py
Normal file
14
product_retail_cm/models/product_template.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# 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')
|
Loading…
Add table
Add a link
Reference in a new issue