trytond-edocument_edifact/incoterm.py

11 lines
286 B
Python
Raw Normal View History

2018-05-08 09:19:02 +02:00
# The COPYRIGHT file at the top level of
2018-05-02 13:50:39 +02:00
# this repository contains the full copyright notices and license terms.
from trytond.model import fields
from trytond.pool import PoolMeta
2019-02-28 13:56:45 +01:00
class Rule(metaclass=PoolMeta):
2018-05-02 13:50:39 +02:00
__name__ = 'incoterm.rule'
EDI_code = fields.Char('EDI Code')