forked from Mapan/odoo17e
27 lines
1.2 KiB
XML
27 lines
1.2 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.sale.subscription</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="sale.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@id='order_default_values_div']" position="inside">
|
|
<div class="mt16">
|
|
<label for="subscription_default_plan_id" class="me-2"/>
|
|
<field name="subscription_default_plan_id"/>
|
|
</div>
|
|
<div class="text-muted">
|
|
Default period to use as recurrence for a new quotation.
|
|
</div>
|
|
</xpath>
|
|
<setting id="down_payments" position="after">
|
|
<setting id="invoice_consolidation" help="Consolidate all of a customer's subscriptions that are due to be billed on the same day onto a single invoice.">
|
|
<field name="invoice_consolidation"/>
|
|
</setting>
|
|
</setting>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|