summaryrefslogtreecommitdiff
path: root/addons/sale_timesheet/views/res_config_settings_views.xml
blob: ffefb17ba85390ac292ec108e5ed5646579f4d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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.timesheet</field>
        <field name="model">res.config.settings</field>
        <field name="priority" eval="1"/>
        <field name="inherit_id" ref="hr_timesheet.res_config_settings_view_form"/>
        <field name="arch" type="xml">
            <xpath expr="//div[@name='section_leaves']" position="before">
                <h2>Billing</h2>
                <div name="timesheet_billing" class="row mt16 o_settings_container">
                    <div class="col-12 col-lg-6 o_setting_box" id="time_billing_setting">
                        <div class="o_setting_right_pane">
                            <span class="o_form_label">Time Billing</span>
                            <div class="text-muted">
                                Sell services and invoice time spent
                            </div>
                            <div class="content-group" name="msg_module_sale_timesheet">
                                <div class="mt8">
                                    <div>
                                        <button name="%(sale_timesheet.product_template_action_default_services)d" string="Configure your services" type="action" class="btn-link" icon="fa-arrow-right"/>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </xpath>
        </field>
    </record>

</odoo>