feat: Se añade Tipo USB

This commit is contained in:
2023-12-22 08:26:22 -05:00
parent 69e81993d4
commit f3367ebbe5
7 changed files with 38 additions and 21 deletions

View File

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