Project and Services mailing list archives

project@odoo-community.org

Avatar

Re: [OCA/project] project_task_scheduling: Module for automatic task planning (#419)

by ernestotejeda <notifications@github.com> - 19/09/2018 18:02:30

@ernestotejeda commented on this pull request.


In project_task_scheduling/wizards/scheduling_wizard.py:

> +
+from odoo import api, fields, models
+from odoo.exceptions import ValidationError
+from odoo.tools.float_utils import float_compare
+from odoo.tools.translate import _
+
+from odoo.addons.resource.models import resource as resource_model
+
+_logger = logging.getLogger(__name__)
+
+
+class ProjectTaskSchedulingWizard(models.TransientModel):
+    _name = "project.task.scheduling.wizard"
+    _description = "Project task scheduling wizard"
+
+    _state_obj = namedtuple('State', (

It seems good to me, thank you for the idea, i think it's good, I already have plans to work on this, but I have to organize the ideas.


You are receiving this because you are on a team that was mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.