This commit is contained in:
Tom
2016-12-06 17:36:27 +01:00
parent c0e57a569a
commit f002abfda9
5 changed files with 9 additions and 34 deletions

View File

@@ -62,6 +62,7 @@ Contributors
* Alexis de Lattre, Akretion <alexis.delattre@akretion.com>
* Luc De Meyer, Noviat <info@noviat.com>
* Tom Blauwendraat, Sunflower IT <info@sunflowerweb.nl>
Maintainer
----------

View File

@@ -1,2 +1,3 @@
# -*- coding: utf-8 -*-
from . import models

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<odoo noupdate="1">
<record id="base.fr" model="res.country">
<field name="intrastat" eval="True"/>
@@ -86,5 +85,5 @@
<record id="base.hr" model="res.country">
<field name="intrastat" eval="True"/>
</record>
</data>
</openerp>
</odoo>

View File

@@ -1,25 +1,5 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module created 2014 by Sunflower IT (<http://sunflowerweb.nl>).
# Sponsored by FreshFilter BV (<http://freshfilter.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# © 2011-2016 Akretion (http://www.akretion.com).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import intrastat_base_tests
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
# © 2016 Sunflower IT (http://sunflowerweb.nl).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp.tests.common import TransactionCase
@@ -21,11 +23,3 @@ class TestIntrastatBase(TransactionCase):
})
# then check if intrastat_email_list contains the email of the user
self.assertEquals(demo_company.intrastat_email_list, demo_user.email)