FIX configuration file

This commit is contained in:
resteve 2013-03-21 17:54:19 +01:00
parent 14c6c4f44e
commit 7583340137
1 changed files with 16 additions and 0 deletions

16
configuration.py Normal file
View File

@ -0,0 +1,16 @@
#This file is part country_zip 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_prefix_zip = fields.Property(
fields.Char('Prefix Zip', help='Default prefix country (uppercase).'))