trytond-edocument_edifact/incoterm.py

14 lines
315 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
__all__ = ['Rule']
class Rule:
__metaclass__ = PoolMeta
__name__ = 'incoterm.rule'
EDI_code = fields.Char('EDI Code')