I have an one2many field imaged_ids, I am able to download images one by one using the following:
return {
'type': 'ir.actions.act_url',
'target': 'current',
'url': "web/content/?model=ir.attachment&id=" + str(attachment_id.id) + "&download=true&filename=" + attachment_id.name,
}
Now I need to show a button and download all images in a single click, is it possible? Can someone help me ut of this?
Thanks for the the help in advance.