trytond-sale_farm/__init__.py
Albert Cervera i Areny 29b24cc591 Adapt to Tryton 5.2
2019-06-17 02:00:27 +02:00

11 lines
308 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 sale
def register():
Pool.register(
sale.MoveEvent,
sale.Sale,
sale.SaleLine,
module='sale_farm', type_='model')