summaryrefslogtreecommitdiff
path: root/addons/product/models/__init__.py
blob: 6e6333f642d2186a060278bf4fba0f52efaa9b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

# flake8: noqa: F401

from . import res_config_settings
from . import decimal_precision
from . import uom_uom

# don't try to be a good boy and sort imports alphabetically.
# `product.template` should be initialised before `product.product`
from . import product_template
from . import product

from . import product_attribute
from . import product_pricelist
from . import res_company
from . import res_partner