From f80e49e8da7160fe9c732acaa64934f8044eb45d Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Tue, 23 Apr 2013 16:08:58 +0200 Subject: [PATCH] Update help message according to my change of commit 61. Fix copyright header. --- intrastat_base/country.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/intrastat_base/country.py b/intrastat_base/country.py index f747194..2542d72 100644 --- a/intrastat_base/country.py +++ b/intrastat_base/country.py @@ -1,8 +1,9 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (http://tiny.be). All Rights Reserved +# Report intrastat base module for OpenERP +# Copyright (C) 2011-2013 Akretion (http://www.akretion.com). All Rights Reserved +# @author Alexis de Lattre # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -24,8 +25,9 @@ from osv import osv, fields class res_country(osv.osv): _inherit = 'res.country' _columns = { - 'intrastat': fields.boolean('Intrastat country', help="Set as True for countries that must be selected in the intrastat reports, i.e. for all European Union countries other than your own country."), + 'intrastat': fields.boolean('EU country', help="Set to True for all European Union countries."), } + _defaults = { 'intrastat': False, }