From ac56dc27aa5478bd1a10b60ecd185a6e90c8bb38 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Wed, 21 Jun 2017 12:11:10 +0200 Subject: [PATCH] Fix README and headers --- account_move_locking/README.rst | 4 ++-- account_move_locking/__init__.py | 1 - account_move_locking/__manifest__.py | 2 ++ account_move_locking/models/__init__.py | 1 - account_move_locking/models/account.py | 2 ++ account_move_locking/wizard/__init__.py | 1 - account_move_locking/wizard/account_lock_account_move.py | 3 ++- 7 files changed, 8 insertions(+), 6 deletions(-) diff --git a/account_move_locking/README.rst b/account_move_locking/README.rst index 467cfae3c..de2edc945 100644 --- a/account_move_locking/README.rst +++ b/account_move_locking/README.rst @@ -13,9 +13,9 @@ Usage In order to lock the journal entry, you need to follow this process: * You need to post your entry, with the standard wizard Post Journal Entries - (Invoicing -> Periodic Processing -> Draft Entries -> Post Journal Entries) + (Invoicing -> Adviser -> Journal Entries -> Post Journal Entries) * Then, you can use the wizard Lock Journal Entries - (Invoicing -> Periodic Processing -> Draft Entries -> Lock Journal Entries) + (Invoicing -> Adviser -> Lock Journal Entries) .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot diff --git a/account_move_locking/__init__.py b/account_move_locking/__init__.py index 408a6001b..9b4296142 100644 --- a/account_move_locking/__init__.py +++ b/account_move_locking/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import models from . import wizard diff --git a/account_move_locking/__manifest__.py b/account_move_locking/__manifest__.py index 3038a9a14..ce8a04ec4 100644 --- a/account_move_locking/__manifest__.py +++ b/account_move_locking/__manifest__.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Move locked to prevent modification", "version": "10.0.1.0.0", diff --git a/account_move_locking/models/__init__.py b/account_move_locking/models/__init__.py index d90384dfb..2b77ae28f 100644 --- a/account_move_locking/models/__init__.py +++ b/account_move_locking/models/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import account diff --git a/account_move_locking/models/account.py b/account_move_locking/models/account.py index c9b8e0110..e2d2aa619 100644 --- a/account_move_locking/models/account.py +++ b/account_move_locking/models/account.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields, api, exceptions, _ diff --git a/account_move_locking/wizard/__init__.py b/account_move_locking/wizard/__init__.py index c68ab1cc0..99396978b 100644 --- a/account_move_locking/wizard/__init__.py +++ b/account_move_locking/wizard/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import account_lock_account_move diff --git a/account_move_locking/wizard/account_lock_account_move.py b/account_move_locking/wizard/account_lock_account_move.py index 1f71e2c29..985f533bc 100644 --- a/account_move_locking/wizard/account_lock_account_move.py +++ b/account_move_locking/wizard/account_lock_account_move.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- - +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models, api, _, exceptions