[ADD] project_timebox: create addon to estimate task effort
Adds fields to estimate the min and max time needed to solve a task. Task: [JOI-13](https://justodooit.fr/mail/view?model=project.task&res_id=13&access_token=cca0b860-25d1-472d-9da1-76f68b01a932)
This commit is contained in:
23
project_timebox/views/timebox.xml
Normal file
23
project_timebox/views/timebox.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="timebox_view_tree" model="ir.ui.view">
|
||||
<field name="name">timebox.view.tree</field>
|
||||
<field name="model">timebox</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Timeboxes" editable="top" default_order="sequence">
|
||||
<field name="sequence" widget="handle" />
|
||||
<field name="name" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="act_timeboxes_list" model="ir.actions.act_window">
|
||||
<field name="name">Timeboxes</field>
|
||||
<field name="res_model">timebox</field>
|
||||
<field name="view_mode">tree</field>
|
||||
</record>
|
||||
|
||||
<menuitem id="menu_timeboxes" action="act_timeboxes_list" parent="project.menu_project_config" sequence="99" name="Timeboxes" />
|
||||
|
||||
</odoo>
|
Reference in New Issue
Block a user