Files
Odoo-18.0-20251222/attachment_queue/wizards/attachement_queue_reschedule.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

33 lines
1.3 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_reschedule_attachment" model="ir.ui.view">
<field name="name">Reschedule Attachments</field>
<field name="model">attachment.queue.reschedule</field>
<field name="arch" type="xml">
<form string="Requeue Attachments">
<group string="The selected attachments will be rescheduled.">
<field name="attachment_ids" nolabel="1" colspan="2" />
</group>
<footer>
<button
name="reschedule"
string="Reschedule"
type="object"
class="oe_highlight"
/>
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
<record id="action_reschedule_attachment" model="ir.actions.act_window">
<field name="name">Reschedule Attachment</field>
<field name="res_model">attachment.queue.reschedule</field>
<field name="view_mode">form</field>
<field name="view_id" ref="view_reschedule_attachment" />
<field name="target">new</field>
<field name="binding_model_id" ref="attachment_queue.model_attachment_queue" />
</record>
</odoo>