trytond-sale_pos_esc/__init__.py

16 lines
394 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .device import *
from .reporting import *
def register():
Pool.register(
SaleDevice,
module='sale_pos_esc', type_='model')
Pool.register(
Receipt,
Display,
module='sale_pos_esc', type_='report')