trytond-aeat_sii/party.py

17 lines
502 B
Python
Raw Normal View History

2017-04-28 09:26:42 +02:00
#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
2017-06-01 11:44:52 +02:00
identifier_type = fields.Selection([('', '')] + aeat.PARTY_IDENTIFIER_TYPE,
2017-04-28 09:26:42 +02:00
'Identifier Type', )