trytond-country_zip/configuration.py

15 lines
448 B
Python
Raw Permalink Normal View History

2013-03-21 17:54:19 +01:00
#This file is part country_zip module for Tryton.
2013-04-16 23:25:30 +02:00
#The COPYRIGHT file at the top level of this repository contains
2013-03-21 17:54:19 +01:00
#the full copyright notices and license terms.
from trytond.model import fields
from trytond.pool import PoolMeta
__all__ = ['Configuration']
__metaclass__ = PoolMeta
2013-04-30 13:45:14 +02:00
2013-03-21 17:54:19 +01:00
class Configuration:
__name__ = 'party.configuration'
default_country = fields.Property(fields.Many2One('country.country',
'Default Country'))