blob: 9bd3969e65ae92b890419d7fd54719da2690f859 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="action_timesheet_from_invoice" model="ir.actions.act_window">
<field name="name">Timesheet</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">account.analytic.line</field>
<field name="view_mode">tree,form,graph</field>
<field name="context">{}</field>
<field name="domain">[('timesheet_invoice_id', '=', active_id)]</field>
</record>
<record id="account_invoice_view_form_inherit_sale_timesheet" model="ir.ui.view">
<field name="name">account.invoice.form.inherit.timesheet</field>
<field name="model">account.move</field>
<field name="inherit_id" ref="account.view_move_form"/>
<field name="arch" type="xml">
<xpath expr="//div[@name='button_box']" position="inside">
<button name="%(sale_timesheet.action_timesheet_from_invoice)d" type="action" class="oe_stat_button" icon="fa-calendar" attrs="{'invisible':[('timesheet_count','=', 0)]}">
<field name="timesheet_count" widget="statinfo" string="Timesheets"/>
</button>
</xpath>
</field>
</record>
</odoo>
|