mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.payment.terms</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="website_sale.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@id='website_tax_inclusion_setting']" position="after">
|
|
<div class="col-12 col-lg-6 o_setting_box" id="website_payment_deposit_threshold">
|
|
<div class="o_setting_right_pane">
|
|
<label string="Deposit Threshold" for="payment_deposit_threshold"/>
|
|
<div class="text-muted">
|
|
Allow customers to make percentage or flat deposits above this amount on website.
|
|
</div>
|
|
<div class="content-group">
|
|
<div class="mt16">
|
|
<field name="payment_deposit_threshold" class="o_light_label"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|