mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
51 lines
2.5 KiB
XML
51 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2020 Tecnativa - Ernesto Tejeda
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="website.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<div id="webmaster_settings" position="after">
|
|
<h2>Return Merchandise Authorization (RMA)</h2>
|
|
<div class="row mt16 o_settings_container" id="rma_settings">
|
|
<div
|
|
class="col-12 col-lg-6 o_setting_box"
|
|
id="contact_form_install_setting"
|
|
title="Set the default RMA Team and RMA responsible of the RMAs created from the Request RMA page."
|
|
>
|
|
<div class="o_setting_right_pane">
|
|
<label
|
|
for="rma_default_team_id"
|
|
string="Request RMA Form"
|
|
/>
|
|
<div class="text-muted" id="website_rma_settings">
|
|
Set the default RMA Team and RMA responsible of the RMAs created from the <a
|
|
href="/requestrma"
|
|
>Request RMA</a> page
|
|
</div>
|
|
<div class="row">
|
|
<label
|
|
class="col-lg-3 o_light_label"
|
|
string="RMA Team"
|
|
for="rma_default_team_id"
|
|
/>
|
|
<field name="rma_default_team_id" class="oe_inline" />
|
|
</div>
|
|
<div class="row">
|
|
<label
|
|
class="col-lg-3 o_light_label"
|
|
string="RMA Responsible"
|
|
for="rma_default_user_id"
|
|
/>
|
|
<field name="rma_default_user_id" class="oe_inline" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|