trytond-sale_pos_esc/__init__.py
2014-02-10 12:24:24 +01:00

16 lines
393 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(
PosDevice,
module='sale_pos_esc', type_='model')
Pool.register(
Receipt,
Display,
module='sale_pos_esc', type_='report')