trytond-party_company/carrier.py

9 lines
255 B
Python
Raw Permalink Normal View History

2017-05-26 09:59:23 +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 . import party
2017-05-26 09:59:23 +02:00
2018-08-17 18:51:03 +02:00
class Carrier(party.PartyCompanyMixin, metaclass=PoolMeta):
2017-05-26 09:59:23 +02:00
__name__ = 'carrier'