firts commit

This commit is contained in:
2023-07-22 10:49:32 -05:00
commit e26ee969cd
31 changed files with 1636 additions and 0 deletions

17
__init__.py Normal file
View File

@@ -0,0 +1,17 @@
from trytond.pool import Pool
from . import printer, shop
__all__ = ['register']
def register():
Pool.register(
printer.Device,
printer.Api,
printer.Printer,
shop.Shop,
module='sale_printer', type_='model')
Pool.register(
module='sale_printer', type_='wizard')
Pool.register(
module='sale_printer', type_='report')