Files
Odoo-18.0-20251222/fetchmail_attach_from_folder/wizard/attach_mail_manually.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

42 lines
1.6 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record model="ir.ui.view" id="view_attach_mail_manually">
<field name="name">fetchmail.attach.mail.manually</field>
<field name="model">fetchmail.attach.mail.manually</field>
<field name="arch" type="xml">
<form col="4" string="Attach mail manually">
<group>
<field name="folder_id" invisible="1" />
<field name="mail_ids" nolabel="1" colspan="4">
<list create="0">
<field name="email_from" />
<field name="subject" />
<field name="date" />
<field name="object_id" />
</list>
<form>
<group>
<field name="email_from" />
<field name="subject" />
<field name="date" />
<field name="object_id" />
</group>
<field name="body" />
</form>
</field>
</group>
<footer>
<button
string="Save"
type="object"
name="attach_mails"
class="oe_highlight"
/>
or
<button special="cancel" string="Cancel" class="oe_link" />
</footer>
</form>
</field>
</record>
</odoo>