trytondo-sale_fast_food/__init__.py

19 lines
447 B
Python

from trytond.pool import Pool
from . import product, sale, production, invoice
__all__ = ['register']
def register():
Pool.register(
product.Product,
invoice.InvoiceLine,
sale.Sale,
sale.Line,
production.Production,
module='sale_fast_food', type_='model')
Pool.register(
module='sale_fast_food', type_='wizard')
Pool.register(
module='sale_fast_food', type_='report')