[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,9 @@
from odoo import models, fields
class Task(models.Model):
_name = "timebox"
_description = "Timebox"
name = fields.Char('name', required=True)
sequence = fields.Integer()