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, -]