trytond-farm_breeding/__init__.py

20 lines
552 B
Python
Raw Permalink Normal View History

2014-05-20 16:59:44 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2019-06-10 23:24:45 +02:00
from . import analytic
from . import farm
2014-05-20 16:59:44 +02:00
def register():
Pool.register(
2019-06-10 23:24:45 +02:00
analytic.Account,
analytic.StockMove,
farm.Group,
farm.MoveEvent,
farm.TransformationEvent,
farm.CreateBreedingStart,
farm.Specie,
2014-05-20 16:59:44 +02:00
module='farm_breeding', type_='model')
Pool.register(
2019-06-10 23:24:45 +02:00
farm.CreateBreeding,
module='farm_breeding', type_='wizard')