You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.6 KiB
39 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<data>
|
|
<record id="timesheets_report_view" model="ir.ui.view">
|
|
<field name="name">timesheet.wizard</field>
|
|
<field name="model">timesheet.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<group string="Select Employee">
|
|
<field name="employee"/>
|
|
</group>
|
|
<group string="Select Date">
|
|
<field name="from_date"/>
|
|
<field name="to_date"/>
|
|
</group>
|
|
<footer>
|
|
<button string="Print Timesheet" name="print_timesheet" type="object" class="btn-primary"/>
|
|
<button string="Discard" class="btn-default" special="cancel"/>
|
|
</footer>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_print_timesheet_wizard" model="ir.actions.act_window">
|
|
<field name="name">timesheet.wizard</field>
|
|
<field name="res_model">timesheet.wizard</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="view_id" ref="timesheets_report_view"/>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<menuitem name="Print Timesheets" id="print_timesheets" action="action_print_timesheet_wizard" parent="hr_timesheet.menu_timesheets_reports"/>
|
|
</data>
|
|
</odoo>
|
|
|
|
|
|
|
|
|