[REF] Move python object files to models folder
This commit is contained in:
11
product_usability/models/pricelist.py
Normal file
11
product_usability/models/pricelist.py
Normal 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())
|
||||
Reference in New Issue
Block a user