diff options
Diffstat (limited to 'addons/account_edi/wizard/account_invoice_send_views.xml')
| -rw-r--r-- | addons/account_edi/wizard/account_invoice_send_views.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/addons/account_edi/wizard/account_invoice_send_views.xml b/addons/account_edi/wizard/account_invoice_send_views.xml new file mode 100644 index 00000000..510cb7f5 --- /dev/null +++ b/addons/account_edi/wizard/account_invoice_send_views.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <record model="ir.ui.view" id="account_invoice_send_inherit_account_wizard_form"> + <!-- Deprecated, the field is now invisible. This view will be removed in future versions. --> + <field name="name">account.invoice.send.form.inherited.edi</field> + <field name="model">account.invoice.send</field> + <field name="inherit_id" ref="account.account_invoice_send_wizard_form"/> + <field name="arch" type="xml"> + <xpath expr="//div[@name='mail_form']" position='before'> + <div name="edi_format_option" invisible='1'> + <group> + <label for="edi_format_ids"/> + <div class="oe_inline"> + <field name="edi_format_ids" + nolabel="1" + widget="many2many_tags" + placeholder="You can set default electronic invoicing formats on the journal"/> + </div> + </group> + </div> + </xpath> + </field> + </record> + </data> +</odoo> |
