blob: db26070c3456a6d2d116d2c1be4e753b97020343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="project_task_create_timesheet_view_form" model="ir.ui.view">
<field name="name">project.task.create.timesheet.wizard.form</field>
<field name="model">project.task.create.timesheet</field>
<field name="arch" type="xml">
<form string="Save time">
<group>
<field name="task_id" invisible="True"/>
<field name="time_spent" string="Duration" class="oe_inline" widget="float_time" required="True"/>
<field name="description" widget="text" placeholder="Describe your activity..."/>
</group>
<footer>
<button string="Save" type="object" name="save_timesheet" class="btn btn-primary"/>
<button string="Cancel" special="cancel" type="object" class="btn btn-secondary"/>
</footer>
</form>
</field>
</record>
</odoo>
|