[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 56f757505b
commit 309f8d4510
11 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from odoo import models, fields
class Task(models.Model):
_inherit = "project.task"
timebox_min_id = fields.Many2one('timebox', string='Timebox Min')
timebox_max_id = fields.Many2one('timebox', string='Timebox Max')