trytonpsk-sale_pos_frontend.../__init__.py

16 lines
402 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import Pool
import restaurant
import sale
def register():
Pool.register(
restaurant.SaleShopTable,
restaurant.Reservation,
sale.Shop,
sale.Sale,
module='sale_pos_frontend_rest', type_='model')