diff --git a/account_credit_control/__openerp__.py b/account_credit_control/__openerp__.py index 0f8871bf0..72379a7bd 100644 --- a/account_credit_control/__openerp__.py +++ b/account_credit_control/__openerp__.py @@ -48,9 +48,12 @@ Usage Menu entries are located in ``Accounting > Periodical Processing > Credit Control``. -Create a new "run" in the ``Credit Control Run`` menu with the controlling date. -Then, use the ``Compute credit lines`` button. All the credit control lines will -be generated. You can find them in the ``Credit Control Lines`` menu. +Create a new "run" in the ``Credit Control Run`` menu +with the controlling date. + +Then, use the ``Compute credit lines`` button. +All the credit control lines will be generated. +You can find them in the ``Credit Control Lines`` menu. On each generated line, you have many choices: * Send a email diff --git a/account_credit_control/wizard/credit_control_policy_changer.py b/account_credit_control/wizard/credit_control_policy_changer.py index 78544161e..c4f2416e9 100644 --- a/account_credit_control/wizard/credit_control_policy_changer.py +++ b/account_credit_control/wizard/credit_control_policy_changer.py @@ -64,8 +64,10 @@ class credit_control_policy_changer(orm.TransientModel): # raise ValueError('No active_ids passed in context') for invoice in inv_model.browse(cr, uid, active_ids, context=context): if invoice.type in ('in_invoice', 'in_refund', 'out_refund'): - raise orm.except_orm(_('User error'), - _('Please use wizard on cutomer invoices')) + raise orm.except_orm( + _('User error'), + _('Please use wizard on cutomer invoices') + ) domain = [('account_id', '=', invoice.account_id.id), ('move_id', '=', invoice.move_id.id), diff --git a/account_default_draft_move/__openerp__.py b/account_default_draft_move/__openerp__.py index d919e8507..87e8da64f 100644 --- a/account_default_draft_move/__openerp__.py +++ b/account_default_draft_move/__openerp__.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- ############################################################################## # -# Author Vincent Renaville/Joel Grand-Guillaume. Copyright 2012 Camptocamp SA +# Author Vincent Renaville/Joel Grand-Guillaume. +# 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 diff --git a/account_move_validation_improvement/__openerp__.py b/account_move_validation_improvement/__openerp__.py index a53be7173..1163dc0bf 100644 --- a/account_move_validation_improvement/__openerp__.py +++ b/account_move_validation_improvement/__openerp__.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- ############################################################################## # -# Author Vincent Renaville/Joel Grand-Guillaume. Copyright 2012 Camptocamp SA +# Author Vincent Renaville/Joel Grand-Guillaume. +# 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 @@ -24,8 +25,8 @@ 'license': 'AGPL-3', "description": """ Re-defining a base wizard (validate all moves in a period for a journal), -but extending it to multiple periods and multiple journals. It replaces the -base one defined in addons/account/wizard. +but extending it to multiple periods and multiple journals. +It replaces the base one defined in addons/account/wizard. """, 'website': 'http://www.camptocamp.com', 'data': ['wizard/account_validate_move_view.xml'],