mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
17 lines
573 B
XML
17 lines
573 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
|
|
<record id="view_website_form" model="ir.ui.view">
|
|
<field name="name">view.website.form.inherit.payment.terms</field>
|
|
<field name="model">website</field>
|
|
<field name="inherit_id" ref="website.view_website_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='other']" position="inside">
|
|
<field name="currency_id" invisible="1"/>
|
|
<field name="payment_deposit_threshold"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|