trytond-farm_feed_production/__init__.py

14 lines
381 B
Python
Raw Normal View History

2013-11-13 17:11:40 +01: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-15 02:01:30 +02:00
from . import feed_production
2013-11-13 17:11:40 +01:00
def register():
Pool.register(
2019-06-15 02:01:30 +02:00
feed_production.SupplyRequestLine,
feed_production.Production,
feed_production.Prescription,
2013-11-13 17:11:40 +01:00
module='farm_feed_production', type_='model')