Project and Services mailing list archives

project@odoo-community.org

Avatar

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

by Nikul Chaudhary <notifications@github.com> - 18/09/2018 21:17:00

@nikul-serpentcs commented on this pull request.


In project_task_scheduling/wizards/scheduling_wizard.py:

> @@ -0,0 +1,397 @@
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
+from collections import namedtuple
+from datetime import datetime, time, timedelta
+from functools import cmp_to_key
+import logging
+import math
+import random
+
+from odoo import api, fields, models
+from odoo.exceptions import ValidationError
+from odoo.tools.float_utils import float_compare
+from odoo.tools.translate import _

@ernestotejeda IMO same here


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.