[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:
Stéphan Sainléger
2022-07-29 18:24:13 +02:00
parent d6fce31db5
commit fd63ab1709
11 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_task_form2_timebox" model="ir.ui.view">
<field name="name">project.task.form.timebox</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2" />
<field name="priority" eval="99" />
<field name="arch" type="xml">
<xpath expr="//field[@name='date_deadline']" position="after">
<field name="timebox_min_id" widget="selection" />
<field name="timebox_max_id" widget="selection" />
</xpath>
</field>
</record>
</odoo>