forked from Mapan/odoo17e
27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<odoo>
|
|
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.form.rental.stock</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="sale_renting.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//setting[@id='rental_sign']" position="inside">
|
|
<div class="content-group" invisible="not module_sale_renting_sign">
|
|
<div class="row mt16">
|
|
<label for="rental_sign_tmpl_id" class="col-lg-4 o_light_label"/>
|
|
<field name="rental_sign_tmpl_id"
|
|
options="{'no_create_edit': True, 'no_create': True, 'no_open': True}"
|
|
context="{'kanban_view_ref': 'sign.sign_template_view_kanban_mobile'}"/>
|
|
</div>
|
|
<button name="%(sign.sign_template_action)d"
|
|
string="Upload Template"
|
|
type="action"
|
|
class="btn-primary"
|
|
context="{'default_privacy': 'employee'}" />
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|