trytond-edocument_edifact/product.py

14 lines
326 B
Python
Raw Normal View History

2018-05-02 13:50:39 +02:00
# 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')