trytonpsk-analytic_sale_pos/__init__.py

17 lines
404 B
Python
Raw Normal View History

2021-04-03 19:34:02 +02:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import Pool
2021-11-08 20:16:17 +01:00
from . import move
2021-07-20 19:29:28 +02:00
from . import rule
2021-11-08 20:16:17 +01:00
from . import sale
2021-04-03 19:34:02 +02:00
def register():
Pool.register(
2021-11-08 20:16:17 +01:00
move.MoveLine,
2021-04-03 19:34:02 +02:00
rule.Rule,
2021-11-08 20:16:17 +01:00
sale.Sale,
sale.SaleShop,
2021-04-03 19:34:02 +02:00
module='analytic_sale_pos', type_='model')