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

8
shop.py Normal file
View File

@@ -0,0 +1,8 @@
from trytond.model import Model, ModelSQL, ModelView, fields
from trytond.pool import Pool, PoolMeta
class Shop(metaclass=PoolMeta):
"Shop"
__name__ = 'sale.shop'
printers = fields.One2Many('sale.printer', 'shop', "Printers")