~grzegorz-og.pl/openobject-addons/extra-5.0_account_asset

« back to all changes in this revision

Viewing changes to cci_country/cci_country.py

*added specified module for the cci: cci_country as Philmer made it

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2008 CCILV ASBL. (http://www.ccilv.be) All Rights Reserved.
 
5
#
 
6
# WARNING: This program as such is intended to be used by professional
 
7
# programmers who take the whole responsability of assessing all potential
 
8
# consequences resulting from its eventual inadequacies and bugs
 
9
# End users who are looking for a ready-to-use solution with commercial
 
10
# garantees and support are strongly adviced to contract a Free Software
 
11
# Service Company
 
12
#
 
13
# This program is Free Software; you can redistribute it and/or
 
14
# modify it under the terms of the GNU General Public License
 
15
# as published by the Free Software Foundation; either version 2
 
16
# of the License, or (at your option) any later version.
 
17
#
 
18
# This program is distributed in the hope that it will be useful,
 
19
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
# GNU General Public License for more details.
 
22
#
 
23
# You should have received a copy of the GNU General Public License
 
24
# along with this program; if not, write to the Free Software
 
25
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
26
#
 
27
##############################################################################
 
28
 
 
29
from osv import fields, osv
 
30
 
 
31
class cci_country(osv.osv):
 
32
    _name = "cci_country"
 
33
    _description = "country or area for CCI"
 
34
    _columns = {
 
35
        'code' : fields.char('Code',size=3,required=True),
 
36
        'name' : fields.char('Name',size=64,required=True),
 
37
        'official_name' : fields.char('Official Name',size=120),
 
38
        'postalabbrev' : fields.char('Postal Abbreviation',size=4),
 
39
        'phoneprefix' : fields.integer('Phone Prefix'),
 
40
        'description' : fields.text('Description'),
 
41
        'iscountry' : fields.boolean('Country',help='Indicates if this code designates a country; if False, designates an area'),
 
42
        'active' : fields.boolean('Active',help='Indicates if we can still use this country-area code'),
 
43
        'valid4certificate' : fields.boolean('Certificates',help='Indicates if this code can be used for certificates'),
 
44
        'valid4ata' : fields.boolean('ATA',help='Indicates if this code can be used for carnets ATA'),
 
45
        'valid4embassy' : fields.boolean('Embassy',help='Indicates if this code can be used for Embassies'),
 
46
        'cci_country_ids' : fields.many2many('cci.country','cci_country_rel','country_id','current_country_id','Linked Countries-Areas'),
 
47
    }
 
48
    _defaults = {
 
49
        'iscountry' : lambda *a: True,
 
50
        'active' : lambda *a : True,
 
51
        'valid4certificate' : lambda *a : True,
 
52
        'valid4ata' : lambda *a: False,
 
53
        'valid4embassy' : lambda *a: True,
 
54
    }
 
55
cci_country()
 
56
 
 
57