From db78dcc7fd91e3b8d700cbd1b7f2a2a181eaf732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Thu, 26 Mar 2015 11:46:46 +0100 Subject: [PATCH] [IMP] account_payment_blocking: typo, authors and minor cleanup --- account_payment_blocking/README.rst | 2 +- account_payment_blocking/__openerp__.py | 12 +----------- account_payment_blocking/tests/__init__.py | 4 ---- 3 files changed, 2 insertions(+), 16 deletions(-) diff --git a/account_payment_blocking/README.rst b/account_payment_blocking/README.rst index 01698306e..80927ee3e 100644 --- a/account_payment_blocking/README.rst +++ b/account_payment_blocking/README.rst @@ -5,7 +5,7 @@ account_payment_blocking ======================== This module was written to extend the functionality of payment orders -to block invoices under litigation to be presented for inclusion un payment orders. +to block invoices under litigation to be presented for inclusion in payment orders. This module uses the 'blocked' flag that is present on move lines, to filter out lines proposed in payment orders. diff --git a/account_payment_blocking/__openerp__.py b/account_payment_blocking/__openerp__.py index 73bb262d8..40829ffe1 100644 --- a/account_payment_blocking/__openerp__.py +++ b/account_payment_blocking/__openerp__.py @@ -27,7 +27,7 @@ 'summary': """ Prevent invoices under litigation to be proposed in payment orders. """, - 'author': 'ACSONE SA/NV', + 'author': 'ACSONE SA/NV,Odoo Community Association (OCA)', 'website': 'http://acsone.eu', 'depends': [ 'base', @@ -36,16 +36,6 @@ 'data': [ 'view/account_invoice_view.xml' ], - 'test': [ - ], - 'demo': [ - ], - 'js': [ - ], - 'qweb': [ - ], - 'css': [ - ], 'installable': True, 'application': False, 'auto_install': False, diff --git a/account_payment_blocking/tests/__init__.py b/account_payment_blocking/tests/__init__.py index 625581235..2f65b479d 100644 --- a/account_payment_blocking/tests/__init__.py +++ b/account_payment_blocking/tests/__init__.py @@ -21,7 +21,3 @@ ############################################################################## from . import test_account_banking_payment_blocking - -checks = [ - test_account_banking_payment_blocking, -]