blob: fbec83635500ab3b1ae931932dea92b5f7d86f65 (
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
|
<?xml version="1.0"?>
<odoo>
<record id="action_report_holidayssummary" model="ir.actions.report">
<field name="name">Time Off Summary</field>
<field name="model">hr.holidays.summary.dept</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">hr_holidays.report_holidayssummary</field>
<field name="report_file">hr_holidays.report_holidayssummary</field>
</record>
<record id="action_report_holidayssummary" model="ir.actions.report">
<field name="paperformat_id" ref="hr_holidays.paperformat_hrsummary"/>
</record>
<record id="action_report_holidayssummary2" model="ir.actions.report">
<field name="name">Time Off Summary</field>
<field name="model">hr.leave.allocation</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">hr_holidays.report_holidayssummary</field>
<field name="report_file">hr_holidays.report_holidayssummary</field>
</record>
<record id="action_report_holidayssummary" model="ir.actions.report">
<field name="paperformat_id" ref="hr_holidays.paperformat_hrsummary"/>
</record>
</odoo>
|