#This file is part party_comment module for Tryton. #The COPYRIGHT file at the top level of this repository contains #the full copyright notices and license terms. from trytond.model import fields from trytond.pool import PoolMeta from . import aeat __all__ = ['Party'] class Party: __name__ = 'party.party' __metaclass__ = PoolMeta # TODO: v4 change to party.identifier module identifier_type = fields.Selection( [('','')] + aeat.PARTY_IDENTIFIER_TYPE, 'Identifier Type', )