mirror of
https://github.com/NaN-tic/trytond-farm_feed_production.git
synced 2023-12-14 05:52:53 +01:00
13 lines
381 B
Python
13 lines
381 B
Python
#The COPYRIGHT file at the top level of this repository contains the full
|
|
#copyright notices and license terms.
|
|
|
|
from trytond.pool import Pool
|
|
from . import feed_production
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
feed_production.SupplyRequestLine,
|
|
feed_production.Production,
|
|
feed_production.Prescription,
|
|
module='farm_feed_production', type_='model')
|