trytond-edocument_edifact/product.py

14 lines
326 B
Python

# The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import PoolMeta
from trytond.model import fields
__all__ = ['Template']
class Template:
__metaclass__ = PoolMeta
__name__ = 'product.template'
EDI_code = fields.Char('EDI Code')