mirror of https://github.com/OCA/social.git
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<record id="account_invoice_send_wizard_form_inherit" model="ir.ui.view">
|
|
<field name="name">account.invoice.send.form.inherit</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="//field[@name='partner_ids']/.." position="after">
|
|
<field
|
|
name="partner_cc_ids"
|
|
widget="many2many_tags_email"
|
|
context="{'force_email':True, 'show_email':True}"
|
|
attrs="{'invisible': [('composition_mode', '!=', 'comment')]}"
|
|
/>
|
|
<field
|
|
name="partner_bcc_ids"
|
|
widget="many2many_tags_email"
|
|
context="{'force_email':True, 'show_email':True}"
|
|
attrs="{'invisible': [('composition_mode', '!=', 'comment')]}"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|