trytonpsk-sale_web_channel/product.py

15 lines
417 B
Python

# This file is part of sale_pos module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from decimal import Decimal
from trytond.model import fields
from trytond.pool import PoolMeta, Pool
__all__ = ['Template']
class Template(metaclass=PoolMeta):
__name__ = 'product.template'
id_reference = fields.Numeric('ID Reference Api')