You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.7 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="view_attach_mail_manually">
  4. <field name="name">fetchmail.attach.mail.manually</field>
  5. <field name="model">fetchmail.attach.mail.manually</field>
  6. <field name="arch" type="xml">
  7. <form col="4" string="Attach mail manually">
  8. <group>
  9. <field name="folder_id" />
  10. <field name="mail_ids" nolabel="1" colspan="4">
  11. <tree create="0">
  12. <field name="email_from" />
  13. <field name="subject" />
  14. <field name="date" />
  15. <field name="object_id" />
  16. </tree>
  17. <form>
  18. <group>
  19. <field name="email_from" />
  20. <field name="subject" />
  21. <field name="date" />
  22. <field name="object_id" />
  23. </group>
  24. <field name="body" />
  25. </form>
  26. </field>
  27. </group>
  28. <footer>
  29. <button
  30. string="Save"
  31. type="object"
  32. name="attach_mails"
  33. class="oe_highlight" />
  34. or
  35. <button
  36. special="cancel"
  37. string="Cancel"
  38. class="oe_link" />
  39. </footer>
  40. </form>
  41. </field>
  42. </record>
  43. </odoo>