diff --git a/attachment_zipped_download/README.rst b/attachment_zipped_download/README.rst index 80f2bf69..e737525f 100644 --- a/attachment_zipped_download/README.rst +++ b/attachment_zipped_download/README.rst @@ -7,7 +7,7 @@ Attachment Zipped Download !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:ff7e96407afd1498d4d7a92046727ac078de41e9e3789dcbe61c469b4b13ae67 + !! source digest: sha256:4163544eb16787f39f46edcd97305586594a6f708c1e489908d344467c82483e !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/attachment_zipped_download/__manifest__.py b/attachment_zipped_download/__manifest__.py index ed6ac02b..3bb3c99b 100644 --- a/attachment_zipped_download/__manifest__.py +++ b/attachment_zipped_download/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Attachment Zipped Download", - "version": "16.0.2.0.0", + "version": "16.0.2.0.2", "category": "Tools", "website": "https://github.com/OCA/knowledge", "author": "Tecnativa, Odoo Community Association (OCA)", diff --git a/attachment_zipped_download/models/ir_attachment_action_download.py b/attachment_zipped_download/models/ir_attachment_action_download.py index 4316b4cb..6e84206d 100644 --- a/attachment_zipped_download/models/ir_attachment_action_download.py +++ b/attachment_zipped_download/models/ir_attachment_action_download.py @@ -5,7 +5,6 @@ from odoo import _, models class IrAttachmentActionDownloadMixin(models.AbstractModel): - _name = "ir.attachment.action_download" _description = """ Mixin to help download attachments linked to record(s). diff --git a/attachment_zipped_download/static/description/index.html b/attachment_zipped_download/static/description/index.html index 5833d441..1ab288bd 100644 --- a/attachment_zipped_download/static/description/index.html +++ b/attachment_zipped_download/static/description/index.html @@ -1,4 +1,3 @@ -
@@ -367,7 +366,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:ff7e96407afd1498d4d7a92046727ac078de41e9e3789dcbe61c469b4b13ae67 +!! source digest: sha256:4163544eb16787f39f46edcd97305586594a6f708c1e489908d344467c82483e !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->This module allows downloading multiple attachments as a zip file.
diff --git a/attachment_zipped_download/tests/test_ir_attachment_action_download.py b/attachment_zipped_download/tests/test_ir_attachment_action_download.py index 1a595359..5a5dc988 100644 --- a/attachment_zipped_download/tests/test_ir_attachment_action_download.py +++ b/attachment_zipped_download/tests/test_ir_attachment_action_download.py @@ -11,7 +11,7 @@ from .test_attachment_zipped_download import TestAttachmentZippedDownloadBase class TestMixin(SavepointCase, TestAttachmentZippedDownloadBase): @classmethod def setUpClass(cls): - super(TestMixin, cls).setUpClass() + super().setUpClass() cls.loader = FakeModelLoader(cls.env, cls.__module__) cls.addClassCleanup(cls.loader.restore_registry) cls.loader.backup_registry()