firs commit

This commit is contained in:
2023-06-24 09:56:25 -05:00
commit 8ae0930cb8
31 changed files with 1617 additions and 0 deletions

16
__init__.py Normal file
View File

@@ -0,0 +1,16 @@
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')