summaryrefslogtreecommitdiff
path: root/addons/hr_timesheet/wizard/project_task_create_timesheet.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_timesheet/wizard/project_task_create_timesheet.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/hr_timesheet/wizard/project_task_create_timesheet.py')
-rw-r--r--addons/hr_timesheet/wizard/project_task_create_timesheet.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/addons/hr_timesheet/wizard/project_task_create_timesheet.py b/addons/hr_timesheet/wizard/project_task_create_timesheet.py
new file mode 100644
index 00000000..db4c8be4
--- /dev/null
+++ b/addons/hr_timesheet/wizard/project_task_create_timesheet.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import api, fields, models
+from datetime import datetime
+
+
+class ProjectTaskCreateTimesheet(models.TransientModel):
+ _name = 'project.task.create.timesheet'
+ _description = "Create Timesheet from task"
+
+ _sql_constraints = [('time_positive', 'CHECK(time_spent > 0)', 'The timesheet\'s time must be positive' )]
+
+ time_spent = fields.Float('Time', digits=(16, 2))
+ description = fields.Char('Description')
+ task_id = fields.Many2one(
+ 'project.task', "Task", required=True,
+ default=lambda self: self.env.context.get('active_id', None),
+ help="Task for which we are creating a sales order",
+ )
+
+ def save_timesheet(self):
+ values = {
+ 'task_id': self.task_id.id,
+ 'project_id': self.task_id.project_id.id,
+ 'date': fields.Date.context_today(self),
+ 'name': self.description,
+ 'user_id': self.env.uid,
+ 'unit_amount': self.time_spent,
+ }
+ self.task_id.user_timer_id.unlink()
+ return self.env['account.analytic.line'].create(values)