diff --git a/base_transaction_id/__init__.py b/base_transaction_id/__init__.py index de1d7c2d..038f720f 100644 --- a/base_transaction_id/__init__.py +++ b/base_transaction_id/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*# -*- coding: utf-8 -*- -# © 2012-2015 Yannick Vaucher -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).- +# © 2012-2015 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import models diff --git a/base_transaction_id/__openerp__.py b/base_transaction_id/__openerp__.py index b9a7ef67..cfe25a12 100644 --- a/base_transaction_id/__openerp__.py +++ b/base_transaction_id/__openerp__.py @@ -1,22 +1,6 @@ -# -*- coding: utf-8 -*- -# -# Author: Yannick Vaucher (Camptocamp) -# Copyright 2012 Camptocamp SA -# -# 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 . -# - +# -*- coding: utf-8 -*# -*- coding: utf-8 -*- +# © 2012 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). {'name': 'Base transaction id for financial institutes', 'version': '9.0.1.0.0', 'author': "Camptocamp,Odoo Community Association (OCA)", diff --git a/base_transaction_id/models/__init__.py b/base_transaction_id/models/__init__.py index e7f82dba..f4d17648 100644 --- a/base_transaction_id/models/__init__.py +++ b/base_transaction_id/models/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*# -*- coding: utf-8 -*- -# © 2012-2015 Yannick Vaucher -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# © 2012-2015 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import invoice from . import sale from . import account_move diff --git a/base_transaction_id/models/account_bank_statement_line.py b/base_transaction_id/models/account_bank_statement_line.py index bfe96543..49dc9618 100644 --- a/base_transaction_id/models/account_bank_statement_line.py +++ b/base_transaction_id/models/account_bank_statement_line.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Yannick Vaucher -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).- +# © 2016 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import api, models diff --git a/base_transaction_id/models/account_move.py b/base_transaction_id/models/account_move.py index 3000e753..45ddf7c2 100644 --- a/base_transaction_id/models/account_move.py +++ b/base_transaction_id/models/account_move.py @@ -1,21 +1,6 @@ # -*- coding: utf-8 -*- -# -# Author: Guewen Baconnier -# Copyright 2014 Camptocamp SA -# -# 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 . -# +# © 2014 Guewen Baconnier (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import models, fields, api from openerp.osv import expression diff --git a/base_transaction_id/models/invoice.py b/base_transaction_id/models/invoice.py index abb527ee..1594adba 100644 --- a/base_transaction_id/models/invoice.py +++ b/base_transaction_id/models/invoice.py @@ -1,21 +1,7 @@ # -*- coding: utf-8 -*- -# -# Author: Nicolas Bessi, Yannick Vaucher -# Copyright 2011-2015 Camptocamp SA -# -# 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 . -# +# © 2011-2012 Nicolas Bessi (Camptocamp) +# © 2012-2015 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import models, fields, api diff --git a/base_transaction_id/models/sale.py b/base_transaction_id/models/sale.py index 08cdb65b..45b8a102 100644 --- a/base_transaction_id/models/sale.py +++ b/base_transaction_id/models/sale.py @@ -1,21 +1,6 @@ # -*- coding: utf-8 -*- -# -# Author: Nicolas Bessi, Yannick Vaucher -# Copyright 2011-2015 Camptocamp SA -# -# 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 . -# +# © 2011-2012 Nicolas Bessi (Camptocamp) +# © 2012-2015 Yannick Vaucher (Camptocamp) from openerp import models, fields, api