trytond-party_country/configuration.py
2014-11-17 22:49:16 +01:00

15 lines
450 B
Python

#This file is part party_country 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
__all__ = ['Configuration']
__metaclass__ = PoolMeta
class Configuration:
__name__ = 'party.configuration'
default_country = fields.Property(fields.Many2One('country.country',
'Default Country'))