#. Go to *Settings > Technical > Database Structure > Attachments* and select some files. #. Go to *Actions > Download* and a zip file containing the selected files will be downloaded. ## For developer You can reuse the `IrAttachmentActionDownloadMixin` on your favorite models:: from odoo import models class StockPicking(models.Model): _name = "stock.picking" _inherit = ["stock.picking", "ir.attachment.action_download"] Then you can add an action button on list view line or on the action button (when multiple lines are selected) to download all files:: stock.picking.tree download attachments stock.picking