[NEW] account_move_attachement_zipped_download

This commit is contained in:
Boris Gallet
2025-02-27 09:17:51 +01:00
parent 6b591cc5fc
commit 31b9c39f8c
22 changed files with 1630 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<odoo>
<!--
Add "Download attachments" item in the Action menu when
multiple records are selected
-->
<record id="action_download_account_move_attachements" model="ir.actions.server">
<field name="name">Download attachments</field>
<field name="model_id" ref="account.model_account_move"/>
<field name="binding_model_id" ref="account.model_account_move"/>
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
action = records.action_download_attachments()
</field>
</record>
</odoo>