trytond-carrier_load_ul/party.py

13 lines
362 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import PoolMeta
class Party(metaclass=PoolMeta):
__name__ = 'party.party'
@classmethod
def __setup__(cls):
super().__setup__()
cls.load_grouping_method.selection.extend([('unit_load', 'Unit load')])