Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
38
account_invoice_transmit_method/views/res_partner.xml
Normal file
38
account_invoice_transmit_method/views/res_partner.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright 2017-2022 Akretion France (http://www.akretion.com/)
|
||||
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
Copyright 2021-2022 Camptocamp SA (https://www.camptocamp.com).
|
||||
@author: Iván Todorovich <ivan.todorovich@camptocamp.com>
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
<record id="view_partner_property_form" model="ir.ui.view">
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="account.view_partner_property_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="property_payment_term_id" position="after">
|
||||
<field name="customer_invoice_transmit_method_id" widget="selection" />
|
||||
</field>
|
||||
<field name="property_supplier_payment_term_id" position="after">
|
||||
<field name="supplier_invoice_transmit_method_id" widget="selection" />
|
||||
</field>
|
||||
<field name="child_ids" position="attributes">
|
||||
<attribute name="context" operation="update">
|
||||
{
|
||||
"default_customer_invoice_transmit_method_code": customer_invoice_transmit_method_code,
|
||||
"default_supplier_invoice_transmit_method_code": supplier_invoice_transmit_method_code,
|
||||
}
|
||||
</attribute>
|
||||
</field>
|
||||
<xpath
|
||||
expr="//field[@name='child_ids']/form//field[@name='email']"
|
||||
position="attributes"
|
||||
>
|
||||
<attribute
|
||||
name="required"
|
||||
>customer_invoice_transmit_method_code == 'mail' and type == 'invoice'</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user