trytonpsk-dash_sale/product.py

10 lines
324 B
Python
Raw Normal View History

2022-05-02 16:18:12 +02:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
2022-11-04 05:20:14 +01:00
from trytond.model import fields
from trytond.pool import PoolMeta
2022-05-02 16:18:12 +02:00
class Product(metaclass=PoolMeta):
__name__ = 'product.product'
short_name = fields.Char('Short Name')