oca-ocb-accounting/odoo-bringout-oca-ocb-account/account/wizard/account_move_send_wizard.xml
Ernad Husremovic 768b70e05e 19.0 vanilla
2026-03-09 09:30:07 +01:00

88 lines
4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="account_move_send_wizard_form" model="ir.ui.view">
<field name="name">account.move.send.wizard.form</field>
<field name="model">account.move.send.wizard</field>
<field name="arch" type="xml">
<form class="o_account_move_send_wizard">
<field name="move_id" invisible="1"/>
<field name="attachments_not_supported" invisible="1"/>
<!-- Warnings -->
<div class="m-0" id="alerts" invisible="not alerts">
<field name="alerts" class="o_field_html" widget="actionable_errors"/>
</div>
<!-- EDIs and Sending method -->
<div class="m-0" id="extra_edis">
<field name="extra_edi_checkboxes" widget="account_json_checkboxes" invisible="not extra_edi_checkboxes"/>
<field name="sending_method_checkboxes" widget="account_json_checkboxes"/>
</div>
<!-- PDF template -->
<field name="pdf_report_id" invisible="1"/>
<group invisible="not display_pdf_report_id or 'email' in sending_methods">
<field name="pdf_report_id" options="{'no_create': True, 'no_edit': True}"/>
</group>
<!-- Mail composer -->
<div invisible="'email' not in sending_methods">
<field name="model" invisible="1"/>
<field name="res_ids" invisible="1"/>
<field name="render_model" invisible="1"/>
<group>
<field name="pdf_report_id" options="{'no_create': True, 'no_edit': True}" invisible="not display_pdf_report_id"/>
<label for="mail_partner_ids" string="To"/>
<div>
<field name="mail_partner_ids"
widget="many2many_tags_email"
placeholder="Add contacts to notify..."
options="{'no_quick_create': True}"
required="'email' in sending_methods"
context="{'show_email': True, 'form_view_ref': 'base.view_partner_simple_form'}"/>
</div>
<field name="subject"
placeholder="Subject..."
required="'email' in sending_methods"/>
</group>
<field name="body"
class="oe-bordered-editor"
widget="html_mail"/>
</div>
<field name="mail_attachments_widget"
widget="mail_attachments"
string="Attach a file"
nolabel="1"
colspan="2"
invisible="not display_attachments_widget"/>
<footer>
<button string="Send"
data-hotkey="q"
name="action_send_and_print"
type="object"
class="btn-primary"
invisible="not sending_methods"/>
<button string="Generate"
data-hotkey="q"
name="action_send_and_print"
type="object"
class="btn-primary"
invisible="sending_methods"/>
<button string="Discard"
data-hotkey="x"
special="cancel"
class="btn-secondary"/>
<field name="mail_attachments_widget" widget="mail_attachments_selector" invisible="not display_attachments_widget"/>
<field name="template_id" widget="mail_composer_template_selector"/>
</footer>
</form>
</field>
</record>
</odoo>