# 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 from . import restaurant from . import sale from . import production from . import product from . import invoice from . import party from . import agent def register(): Pool.register( restaurant.SaleShopTable, restaurant.Reservation, restaurant.PartyConsumer, sale.Shop, sale.Sale, sale.SaleForceDraft, sale.SaleLine, sale.SaleMove, production.Production, product.ProductMixOption, product.Product, invoice.InvoiceLine, party.Party, agent.Agent, module='sale_pos_frontend_rest', type_='model') Pool.register( sale.SaleForceDraft, module='sale_pos_frontend_rest', type_='wizard')