trytond-party_company/carrier.py

11 lines
291 B
Python
Raw 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.model import ModelSQL, ModelView
from . import party
2017-05-26 09:59:23 +02:00
__all__ = ['Carrier']
class Carrier(ModelSQL, ModelView, party.PartyCompanyMixin):
2017-05-26 09:59:23 +02:00
__name__ = 'carrier'