trytond-sale_pos_esc/__init__.py

16 lines
394 B
Python
Raw Permalink Normal View History

2014-01-31 21:16:01 +01:00
# 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,
2014-01-31 21:16:01 +01:00
module='sale_pos_esc', type_='model')
Pool.register(
Receipt,
Display,
module='sale_pos_esc', type_='report')