17 lines
366 B
Python
17 lines
366 B
Python
from trytond.pool import Pool
|
|
from . import product, sale
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
product.Product,
|
|
sale.Sale,
|
|
sale.Line,
|
|
module='sale_fast_food', type_='model')
|
|
Pool.register(
|
|
module='sale_fast_food', type_='wizard')
|
|
Pool.register(
|
|
module='sale_fast_food', type_='report')
|