[REF] Move python object files to models folder

This commit is contained in:
Renato
2019-08-04 19:44:20 -03:00
parent dbd600bcd9
commit f258bf6fdb
4 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
# © 2017 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 ProductPricelist(models.Model):
_inherit = 'product.pricelist'
company_id = fields.Many2one(
default=lambda self: self.env['res.company']._company_default_get())