Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
ee339a01e8 | ||
|
ff07b3aa17 | ||
|
92577de600 |
@@ -1,2 +1 @@
|
||||
|
||||
from . import project_task
|
||||
from . import project_task
|
||||
|
@@ -1,9 +1,7 @@
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class Task(models.Model):
|
||||
_inherit = "project.task"
|
||||
|
||||
assignee_ids = fields.Many2many('res.users', 'assignee_ids_rel', string='Assignees')
|
||||
|
||||
assignee_ids = fields.Many2many("res.users", "assignee_ids_rel", string="Assignees")
|
||||
|
@@ -65,11 +65,7 @@ This module is maintained by Elabore.
|
||||
|
||||
""",
|
||||
# any module necessary for this one to work correctly
|
||||
"depends": [
|
||||
"base",
|
||||
"project",
|
||||
"project_user_default_project"
|
||||
],
|
||||
"depends": ["base", "project", "project_user_default_project"],
|
||||
"qweb": [
|
||||
# "static/src/xml/*.xml",
|
||||
],
|
||||
@@ -77,10 +73,7 @@ This module is maintained by Elabore.
|
||||
"python": [],
|
||||
},
|
||||
# always loaded
|
||||
"data": [
|
||||
"views/project_project.xml",
|
||||
"views/portal_home_template.xml"
|
||||
],
|
||||
"data": ["views/project_project.xml", "views/portal_home_template.xml"],
|
||||
# only loaded in demonstration mode
|
||||
"demo": [],
|
||||
"js": [],
|
||||
|
@@ -1,2 +1 @@
|
||||
|
||||
from . import custom_portal
|
||||
from . import custom_portal
|
||||
|
@@ -7,15 +7,19 @@ from odoo.addons.portal.controllers.portal import CustomerPortal
|
||||
class CustomCustomerPortal(CustomerPortal):
|
||||
@route(["/my/account"], type="http", auth="user", website=True)
|
||||
def account(self, redirect=None, **post):
|
||||
self.OPTIONAL_BILLING_FIELDS.append("average_acceptable_time") #unecessary save in res partner, but necessary to avoid error on form post
|
||||
self.OPTIONAL_BILLING_FIELDS.append(
|
||||
"average_acceptable_time"
|
||||
) # unecessary save in res partner, but necessary to avoid error on form post
|
||||
|
||||
response = super(CustomCustomerPortal, self).account(redirect, **post)
|
||||
|
||||
|
||||
if post and request.httprequest.method == "POST":
|
||||
error, error_message = self.details_form_validate(post)
|
||||
if not error:
|
||||
user = request.env.user
|
||||
if user.default_project_id and post["average_acceptable_time"]:
|
||||
user.default_project_id.average_acceptable_time = post["average_acceptable_time"]
|
||||
|
||||
user.default_project_id.average_acceptable_time = post[
|
||||
"average_acceptable_time"
|
||||
]
|
||||
|
||||
return response
|
||||
|
@@ -1,3 +1,2 @@
|
||||
|
||||
from . import project_project
|
||||
from . import res_partner
|
||||
from . import res_partner
|
||||
|
@@ -1,10 +1,7 @@
|
||||
|
||||
from odoo import models, fields, _, api
|
||||
|
||||
|
||||
class Project(models.Model):
|
||||
_inherit = "project.project"
|
||||
|
||||
average_acceptable_time = fields.Float('Average acceptable time')
|
||||
|
||||
|
||||
average_acceptable_time = fields.Float("Average acceptable time")
|
||||
|
@@ -1,10 +1,9 @@
|
||||
|
||||
from odoo import models, fields, _, api
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = "res.partner"
|
||||
|
||||
average_acceptable_time = fields.Float('Average acceptable time') # not used, but necessary to post custom field from /my/account
|
||||
|
||||
|
||||
average_acceptable_time = fields.Float(
|
||||
"Average acceptable time"
|
||||
) # not used, but necessary to post custom field from /my/account
|
||||
|
@@ -1,2 +1 @@
|
||||
|
||||
from . import models
|
||||
|
@@ -65,12 +65,7 @@ This module is maintained by Elabore.
|
||||
|
||||
""",
|
||||
# any module necessary for this one to work correctly
|
||||
"depends": [
|
||||
"base",
|
||||
"project",
|
||||
"account",
|
||||
"sale"
|
||||
],
|
||||
"depends": ["base", "project", "account", "sale"],
|
||||
"qweb": [
|
||||
# "static/src/xml/*.xml",
|
||||
],
|
||||
|
@@ -1,2 +1 @@
|
||||
|
||||
from . import account_move
|
||||
from . import account_move
|
||||
|
@@ -1,38 +1,46 @@
|
||||
|
||||
from odoo import models, fields, api
|
||||
|
||||
|
||||
class AccountMove(models.Model):
|
||||
_inherit = "account.move"
|
||||
|
||||
project_ids = fields.Many2many('project.project', name="Projects", compute='get_related_project_ids')
|
||||
project_count = fields.Integer("Project Count", compute='get_related_project_ids')
|
||||
projects_name = fields.Char('Project(s)', compute='get_related_project_ids')
|
||||
project_ids = fields.Many2many(
|
||||
"project.project", name="Projects", compute="get_related_project_ids"
|
||||
)
|
||||
project_count = fields.Integer("Project Count", compute="get_related_project_ids")
|
||||
projects_name = fields.Char("Project(s)", compute="get_related_project_ids")
|
||||
|
||||
def action_open_projects(self):
|
||||
'''
|
||||
Open related projects, in form or tree view depending on project numbers
|
||||
'''
|
||||
"""
|
||||
Open related projects, in form or tree view depending on project numbers
|
||||
"""
|
||||
project_ids = self.project_ids.ids
|
||||
action = self.env["ir.actions.actions"]._for_xml_id("project.open_view_project_all")
|
||||
action = self.env["ir.actions.actions"]._for_xml_id(
|
||||
"project.open_view_project_all"
|
||||
)
|
||||
|
||||
if self.project_count == 1:
|
||||
action['res_id'] = project_ids[0]
|
||||
action['views'] = [[False, "form"]]
|
||||
action["res_id"] = project_ids[0]
|
||||
action["views"] = [[False, "form"]]
|
||||
else:
|
||||
action['views'] = [[False, "tree"], [False, "form"]]
|
||||
|
||||
action['domain'] = [('id', 'in', project_ids)]
|
||||
action["views"] = [[False, "tree"], [False, "form"]]
|
||||
|
||||
action["domain"] = [("id", "in", project_ids)]
|
||||
|
||||
del action["target"] # to display breadcrumbs
|
||||
|
||||
del action['target'] #to display breadcrumbs
|
||||
|
||||
return action
|
||||
|
||||
|
||||
@api.depends('line_ids.sale_line_ids')
|
||||
@api.depends("line_ids.sale_line_ids")
|
||||
def get_related_project_ids(self):
|
||||
for move in self:
|
||||
projects = self.env['project.task'].search([('sale_order_id','in',move.line_ids.sale_line_ids.order_id.ids)]).project_id
|
||||
projects = (
|
||||
self.env["project.task"]
|
||||
.search(
|
||||
[("sale_order_id", "in", move.line_ids.sale_line_ids.order_id.ids)]
|
||||
)
|
||||
.project_id
|
||||
)
|
||||
move.project_ids = projects.ids
|
||||
move.projects_name = ' ; '.join([p.name for p in projects])
|
||||
move.project_count = len(projects)
|
||||
move.projects_name = " ; ".join([p.name for p in projects])
|
||||
move.project_count = len(projects)
|
||||
|
@@ -1,2 +1 @@
|
||||
|
||||
from . import models
|
||||
from . import models
|
||||
|
@@ -33,4 +33,4 @@
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -1 +1 @@
|
||||
from . import sale_order, crm_lead
|
||||
from . import sale_order, crm_lead
|
||||
|
@@ -1,17 +1,19 @@
|
||||
from odoo import models
|
||||
|
||||
|
||||
class Lead(models.Model):
|
||||
_inherit = 'crm.lead'
|
||||
_inherit = "crm.lead"
|
||||
|
||||
def write(self, vals):
|
||||
"""update project name if project created from lead
|
||||
"""
|
||||
"""update project name if project created from lead"""
|
||||
for lead in self:
|
||||
if 'name' in vals:
|
||||
sale = self.env['sale.order'].search([('opportunity_id','=',lead.id)])
|
||||
if "name" in vals:
|
||||
sale = self.env["sale.order"].search([("opportunity_id", "=", lead.id)])
|
||||
if sale:
|
||||
project = self.env['project.project'].search([('sale_order_id','=',sale.id)])
|
||||
project = self.env["project.project"].search(
|
||||
[("sale_order_id", "=", sale.id)]
|
||||
)
|
||||
if project:
|
||||
project.name = vals['name']
|
||||
project.name = vals["name"]
|
||||
|
||||
return super(Lead, self).write(vals)
|
||||
|
@@ -8,5 +8,5 @@ class SaleOrderLine(models.Model):
|
||||
def _timesheet_create_project_prepare_values(self):
|
||||
values = super(SaleOrderLine, self)._timesheet_create_project_prepare_values()
|
||||
if self.order_id and self.order_id.opportunity_id:
|
||||
values['name'] = self.order_id.opportunity_id.name
|
||||
return values
|
||||
values["name"] = self.order_id.opportunity_id.name
|
||||
return values
|
||||
|
@@ -1,2 +1 @@
|
||||
|
||||
from . import models
|
||||
from . import models
|
||||
|
@@ -33,4 +33,4 @@
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -1 +1 @@
|
||||
from . import sale_order
|
||||
from . import sale_order
|
||||
|
@@ -8,4 +8,4 @@ class SaleOrderLine(models.Model):
|
||||
def _timesheet_create_project_prepare_values(self):
|
||||
values = super(SaleOrderLine, self)._timesheet_create_project_prepare_values()
|
||||
values["name"] = self.order_id.so_title
|
||||
return values
|
||||
return values
|
||||
|
@@ -83,4 +83,4 @@ This module is maintained by Elabore.
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -89,4 +89,4 @@ This module is maintained by Elabore.
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -1,3 +1,3 @@
|
||||
from . import task_service
|
||||
from . import request_type
|
||||
from . import project_task
|
||||
from . import project_task
|
||||
|
@@ -1,9 +1,8 @@
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class Task(models.Model):
|
||||
_inherit = "project.task"
|
||||
|
||||
service_id = fields.Many2one('task.service', string='Service')
|
||||
request_type_id = fields.Many2one('request.type', string='Request Type')
|
||||
service_id = fields.Many2one("task.service", string="Service")
|
||||
request_type_id = fields.Many2one("request.type", string="Request Type")
|
||||
|
@@ -5,5 +5,5 @@ class RequestType(models.Model):
|
||||
_name = "request.type"
|
||||
_description = "Request Type"
|
||||
|
||||
name = fields.Char('name', required=True)
|
||||
sequence = fields.Integer()
|
||||
name = fields.Char("name", required=True)
|
||||
sequence = fields.Integer()
|
||||
|
@@ -5,5 +5,5 @@ class TaskService(models.Model):
|
||||
_name = "task.service"
|
||||
_description = "Task service"
|
||||
|
||||
name = fields.Char('name', required=True)
|
||||
sequence = fields.Integer()
|
||||
name = fields.Char("name", required=True)
|
||||
sequence = fields.Integer()
|
||||
|
@@ -11,13 +11,9 @@
|
||||
"category": "Tools",
|
||||
"summary": "In task kanban view, display remaining billable hours instead of remaining hours",
|
||||
"description": "",
|
||||
"depends": [
|
||||
"project",
|
||||
"hr_timesheet",
|
||||
"project_working_time_task_portal"
|
||||
],
|
||||
"depends": ["project", "hr_timesheet", "project_working_time_task_portal"],
|
||||
"data": [
|
||||
"views/project_task_views.xml",
|
||||
"views/project_task_views.xml",
|
||||
],
|
||||
"installable": True,
|
||||
"application": False,
|
||||
|
@@ -83,4 +83,4 @@ This module is maintained by Elabore.
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -1,3 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import portal_task_creation
|
||||
from . import portal_task_creation
|
||||
|
@@ -11,9 +11,9 @@ class PortalTaskCreation(CustomerPortal):
|
||||
"name",
|
||||
"service_id",
|
||||
"request_type_id",
|
||||
"small_description", #not in v14
|
||||
"access", #not in v14
|
||||
"bug_report", #not in v14
|
||||
"small_description", # not in v14
|
||||
"access", # not in v14
|
||||
"bug_report", # not in v14
|
||||
"priority",
|
||||
]
|
||||
|
||||
@@ -26,24 +26,16 @@ class PortalTaskCreation(CustomerPortal):
|
||||
"partner": partner,
|
||||
}
|
||||
return self._get_page_view_values(
|
||||
partner,
|
||||
access_token,
|
||||
values,
|
||||
"my_task_creation_history",
|
||||
False,
|
||||
**kwargs
|
||||
partner, access_token, values, "my_task_creation_history", False, **kwargs
|
||||
)
|
||||
|
||||
def _get_task_priorities(self):
|
||||
priorities = []
|
||||
for id, name in request.env['project.task']._fields['priority'].selection:
|
||||
value = {
|
||||
"id": id,
|
||||
"name": name
|
||||
}
|
||||
for id, name in request.env["project.task"]._fields["priority"].selection:
|
||||
value = {"id": id, "name": name}
|
||||
priorities.append(value)
|
||||
return priorities
|
||||
|
||||
|
||||
@http.route(
|
||||
["/task/form"],
|
||||
type="http",
|
||||
@@ -51,7 +43,9 @@ class PortalTaskCreation(CustomerPortal):
|
||||
website=True,
|
||||
)
|
||||
def portal_task_creation(self, access_token=None, redirect=None, **kw):
|
||||
values = self._taskform_get_page_view_values(request.env.user.partner_id, access_token, **kw)
|
||||
values = self._taskform_get_page_view_values(
|
||||
request.env.user.partner_id, access_token, **kw
|
||||
)
|
||||
request_types = request.env["request.type"].sudo().search([])
|
||||
task_services = request.env["task.service"].sudo().search([])
|
||||
priorities = self._get_task_priorities()
|
||||
@@ -66,7 +60,9 @@ class PortalTaskCreation(CustomerPortal):
|
||||
"error_message": error_message,
|
||||
}
|
||||
)
|
||||
return request.render("project_task_portal_form.portal_task_creation_form", values)
|
||||
return request.render(
|
||||
"project_task_portal_form.portal_task_creation_form", values
|
||||
)
|
||||
|
||||
def _compute_form_data(self, data):
|
||||
values = {}
|
||||
@@ -78,17 +74,23 @@ class PortalTaskCreation(CustomerPortal):
|
||||
values[field] = data.pop(field)
|
||||
description = ""
|
||||
if values.get("small_description", False):
|
||||
description = description + "<b>DESCRIPTION:</b><br/>" + values["small_description"]
|
||||
del values['small_description']
|
||||
description = (
|
||||
description + "<b>DESCRIPTION:</b><br/>" + values["small_description"]
|
||||
)
|
||||
del values["small_description"]
|
||||
if values.get("access", False):
|
||||
description = description + "<br/><br/><b>ACCESS:</b><br/>" + values["access"]
|
||||
del values['access']
|
||||
description = (
|
||||
description + "<br/><br/><b>ACCESS:</b><br/>" + values["access"]
|
||||
)
|
||||
del values["access"]
|
||||
if values.get("bug_report", False):
|
||||
description = description + "<br/><br/><b>BUG REPORT:</b><br/>" + values["bug_report"]
|
||||
del values['bug_report']
|
||||
description = (
|
||||
description + "<br/><br/><b>BUG REPORT:</b><br/>" + values["bug_report"]
|
||||
)
|
||||
del values["bug_report"]
|
||||
|
||||
values["description"] = description
|
||||
values["attachments"] = request.httprequest.files.getlist("attachment")
|
||||
values["attachments"] = request.httprequest.files.getlist("attachment")
|
||||
|
||||
return values
|
||||
|
||||
@@ -96,7 +98,7 @@ class PortalTaskCreation(CustomerPortal):
|
||||
["/task/create"],
|
||||
type="http",
|
||||
auth="public",
|
||||
methods=['POST'],
|
||||
methods=["POST"],
|
||||
website=True,
|
||||
)
|
||||
def create_task(self, **kwargs):
|
||||
@@ -107,21 +109,21 @@ class PortalTaskCreation(CustomerPortal):
|
||||
values["partner_id"] = user.partner_id.id
|
||||
values["user_ids"] = [(6, 0, [user.id])]
|
||||
|
||||
|
||||
|
||||
files = values.get("attachments", False)
|
||||
del values['attachments']
|
||||
del values["attachments"]
|
||||
|
||||
# Create task
|
||||
task_id = request.env["project.task"].sudo().create(values) #use sudo to avoid access error on resource calendar when user_id is set
|
||||
task_id = (
|
||||
request.env["project.task"].sudo().create(values)
|
||||
) # use sudo to avoid access error on resource calendar when user_id is set
|
||||
|
||||
# Add attachments
|
||||
for file in files:
|
||||
attachment_value = {
|
||||
'name': file.filename,
|
||||
'datas': base64.encodestring(file.read()),
|
||||
'res_model': "project.task",
|
||||
'res_id': task_id,
|
||||
}
|
||||
request.env['ir.attachment'].sudo().create(attachment_value)
|
||||
"name": file.filename,
|
||||
"datas": base64.encodestring(file.read()),
|
||||
"res_model": "project.task",
|
||||
"res_id": task_id,
|
||||
}
|
||||
request.env["ir.attachment"].sudo().create(attachment_value)
|
||||
return request.render("project_task_portal_form.portal_task_created", {})
|
||||
|
@@ -90,4 +90,4 @@ This module is maintained by Elabore.
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -1,2 +1,2 @@
|
||||
from . import timebox
|
||||
from . import project_task
|
||||
from . import project_task
|
||||
|
@@ -1,9 +1,8 @@
|
||||
|
||||
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')
|
||||
timebox_min_id = fields.Many2one("timebox", string="Timebox Min")
|
||||
timebox_max_id = fields.Many2one("timebox", string="Timebox Max")
|
||||
|
@@ -5,5 +5,5 @@ class Task(models.Model):
|
||||
_name = "timebox"
|
||||
_description = "Timebox"
|
||||
|
||||
name = fields.Char('name', required=True)
|
||||
sequence = fields.Integer()
|
||||
name = fields.Char("name", required=True)
|
||||
sequence = fields.Integer()
|
||||
|
@@ -1 +1 @@
|
||||
# Empty __init__.py file for the project_usability_misc module.
|
||||
# Empty __init__.py file for the project_usability_misc module.
|
||||
|
@@ -62,7 +62,8 @@ This module is maintained by Elabore.
|
||||
""",
|
||||
# any module necessary for this one to work correctly
|
||||
"depends": [
|
||||
"base", "project",
|
||||
"base",
|
||||
"project",
|
||||
],
|
||||
"qweb": [
|
||||
# "static/src/xml/*.xml",
|
||||
@@ -83,4 +84,4 @@ This module is maintained by Elabore.
|
||||
# and independently installed. Used for synergetic or glue modules.
|
||||
"auto_install": False,
|
||||
"application": False,
|
||||
}
|
||||
}
|
||||
|
@@ -1 +1 @@
|
||||
from . import res_users
|
||||
from . import res_users
|
||||
|
@@ -1,6 +1,7 @@
|
||||
from odoo import _, api, fields, models
|
||||
|
||||
|
||||
class Users(models.Model):
|
||||
_inherit = "res.users"
|
||||
|
||||
default_project_id = fields.Many2one('project.project', string='Default Project')
|
||||
default_project_id = fields.Many2one("project.project", string="Default Project")
|
||||
|
@@ -1 +1 @@
|
||||
from . import models
|
||||
from . import models
|
||||
|
@@ -25,7 +25,7 @@
|
||||
"data": [
|
||||
"views/hr_timesheet_portal.xml",
|
||||
"views/hr_timesheet_view_task_form2.xml",
|
||||
"views/portal_tasks_list.xml"
|
||||
"views/portal_tasks_list.xml",
|
||||
],
|
||||
"assets": {
|
||||
"web.assets_frontend": [
|
||||
|
@@ -4,10 +4,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-12-04 09:37+0000\n"
|
||||
"PO-Revision-Date: 2023-12-04 09:37+0000\n"
|
||||
"POT-Creation-Date: 2025-07-08 13:43+0000\n"
|
||||
"PO-Revision-Date: 2025-07-08 15:45+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -31,24 +31,9 @@ msgid "<strong>Subtask Planned Hours: </strong>"
|
||||
msgstr "<strong>Heures Planifiées Sous-tâches: </strong>"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.portal_my_task_remaining_hours
|
||||
msgid "Remaining Hours:"
|
||||
msgstr "Heures restantes:"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__billable_remaining_hours
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Billable Remaining Hours"
|
||||
msgstr "Heures restantes facturables"
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.portal_tasks_list_inherit
|
||||
msgid "Billable Hours"
|
||||
msgstr "Heures facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Billable Remaining Days"
|
||||
msgstr "Jours restants facturables"
|
||||
#: model:ir.model,name:project_working_time_task_portal.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Ligne analytique"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
@@ -62,9 +47,25 @@ msgid "Billable Effective Hours"
|
||||
msgstr "Heures passées facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__subtask_billable_effective_hours
|
||||
msgid "Subtask Billable Effective Hours"
|
||||
msgstr "Heures passées facturables Sous-tâches"
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.portal_tasks_list_inherit
|
||||
msgid "Billable Hours"
|
||||
msgstr "Heures facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__billable_progress
|
||||
msgid "Billable Progress"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Billable Remaining Days"
|
||||
msgstr "Jours restants facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__billable_remaining_hours
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Billable Remaining Hours"
|
||||
msgstr "Heures restantes facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
@@ -75,4 +76,43 @@ msgstr "Jours passés non facturables"
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__non_billable_effective_hours
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Non Billable Effective Hours"
|
||||
msgstr "Heures passées non facturables"
|
||||
msgstr "Heures passées non facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.portal_my_task_remaining_hours
|
||||
msgid "Remaining Hours:"
|
||||
msgstr "Heures restantes:"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_account_analytic_line__smart_search
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__subtask_billable_effective_hours
|
||||
msgid "Subtask Billable Effective Hours"
|
||||
msgstr "Heures passées facturables Sous-tâches"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model,name:project_working_time_task_portal.model_project_task
|
||||
msgid "Task"
|
||||
msgstr "Tâche"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Total Billable Effective Days"
|
||||
msgstr "Total des jours facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,field_description:project_working_time_task_portal.field_project_task__total_billable_effective_hours
|
||||
#: model_terms:ir.ui.view,arch_db:project_working_time_task_portal.project_working_time_view_task_form
|
||||
msgid "Total Billable Effective Hours"
|
||||
msgstr "Total des heures facturables"
|
||||
|
||||
#. module: project_working_time_task_portal
|
||||
#: model:ir.model.fields,help:project_working_time_task_portal.field_project_task__billable_remaining_hours
|
||||
msgid ""
|
||||
"Total Billable remaining time (without exclude_from_sale_order timesheet "
|
||||
"lines), can be re-estimated periodically by the assignee of the task."
|
||||
msgstr ""
|
||||
|
@@ -1 +1 @@
|
||||
from . import billable_time, account_analytic_line
|
||||
from . import project_task, account_analytic_line
|
||||
|
@@ -5,9 +5,10 @@
|
||||
from odoo import models
|
||||
from odoo.osv import expression
|
||||
|
||||
|
||||
class AccountAnalyticLine(models.Model):
|
||||
_inherit = 'account.analytic.line'
|
||||
_inherit = "account.analytic.line"
|
||||
|
||||
def _timesheet_get_portal_domain(self):
|
||||
domain = super()._timesheet_get_portal_domain()
|
||||
return expression.AND([domain, [('exclude_from_sale_order', '=', False)]])
|
||||
return expression.AND([domain, [("exclude_from_sale_order", "=", False)]])
|
||||
|
@@ -1,87 +0,0 @@
|
||||
from odoo import models, fields, api, _
|
||||
from odoo.tools.float_utils import float_compare
|
||||
|
||||
|
||||
class Task(models.Model):
|
||||
_inherit = "project.task"
|
||||
|
||||
billable_effective_hours = fields.Float(
|
||||
compute="_compute_billable_effective_hours",
|
||||
string="Billable Effective Hours",
|
||||
store=True,
|
||||
compute_sudo=True,
|
||||
)
|
||||
|
||||
non_billable_effective_hours = fields.Float(
|
||||
compute="_compute_non_billable_effective_hours",
|
||||
string="Non Billable Effective Hours",
|
||||
store=True,
|
||||
)
|
||||
|
||||
billable_remaining_hours = fields.Float(
|
||||
compute="_compute_billable_remaining_hours",
|
||||
string="Billable Remaining Hours",
|
||||
store=True,
|
||||
help="Total Billable remaining time (without exclude_from_sale_order timesheet lines), can be re-estimated periodically by the assignee of the task."
|
||||
)
|
||||
|
||||
billable_progress = fields.Float(
|
||||
compute="_compute_billable_progress_hours",
|
||||
string="Billable Progress",
|
||||
store=True,
|
||||
group_operator="avg",
|
||||
)
|
||||
|
||||
subtask_billable_effective_hours = fields.Float(
|
||||
compute="_compute_subtask_billable_effective_hours",
|
||||
string="Subtask Billable Effective Hours",
|
||||
store=True,
|
||||
compute_sudo=True,
|
||||
recursive=True,
|
||||
)
|
||||
|
||||
@api.depends('timesheet_ids.unit_amount')
|
||||
def _compute_billable_effective_hours(self):
|
||||
if not any(self._ids):
|
||||
for task in self:
|
||||
filtered_timesheets = task.timesheet_ids.filtered(lambda t: not t.exclude_from_sale_order)
|
||||
task.billable_effective_hours = sum(filtered_timesheets.mapped('unit_amount'))
|
||||
return
|
||||
|
||||
timesheet_read_group = self.env['account.analytic.line'].read_group(
|
||||
[('task_id', 'in', self.ids), ('exclude_from_sale_order', '=', False)], # We exclude the lines (timesheet) which are excluded from billing
|
||||
['unit_amount', 'task_id'],
|
||||
['task_id']
|
||||
)
|
||||
|
||||
timesheets_per_task = {res['task_id'][0]: res['unit_amount'] for res in timesheet_read_group}
|
||||
for task in self:
|
||||
task.billable_effective_hours = timesheets_per_task.get(task.id, 0.0)
|
||||
|
||||
@api.depends('effective_hours','billable_effective_hours')
|
||||
def _compute_non_billable_effective_hours(self):
|
||||
for task in self:
|
||||
task.non_billable_effective_hours = task.effective_hours - task.billable_effective_hours
|
||||
|
||||
@api.depends('billable_effective_hours', 'subtask_billable_effective_hours', 'planned_hours')
|
||||
def _compute_billable_remaining_hours(self):
|
||||
for task in self:
|
||||
task.billable_remaining_hours = task.planned_hours - task.billable_effective_hours - task.subtask_billable_effective_hours
|
||||
|
||||
|
||||
@api.depends('child_ids.billable_effective_hours', 'child_ids.subtask_billable_effective_hours')
|
||||
def _compute_subtask_billable_effective_hours(self):
|
||||
for task in self:
|
||||
task.subtask_billable_effective_hours = sum(child_task.billable_effective_hours + child_task.subtask_billable_effective_hours for child_task in task.child_ids)
|
||||
|
||||
@api.depends('billable_effective_hours', 'subtask_billable_effective_hours', 'planned_hours')
|
||||
def _compute_billable_progress_hours(self):
|
||||
for task in self:
|
||||
if (task.planned_hours > 0.0):
|
||||
task_total_hours = task.billable_effective_hours + task.subtask_billable_effective_hours
|
||||
if float_compare(task_total_hours, task.planned_hours, precision_digits=2) >= 0:
|
||||
task.billable_progress = 100
|
||||
else:
|
||||
task.billable_progress = round(100.0 * task_total_hours / task.planned_hours, 2)
|
||||
else:
|
||||
task.billable_progress = 0.0
|
136
project_working_time_task_portal/models/project_task.py
Normal file
136
project_working_time_task_portal/models/project_task.py
Normal file
@@ -0,0 +1,136 @@
|
||||
from odoo import api, fields, models
|
||||
from odoo.tools.float_utils import float_compare
|
||||
|
||||
|
||||
class Task(models.Model):
|
||||
_inherit = "project.task"
|
||||
|
||||
billable_effective_hours = fields.Float(
|
||||
compute="_compute_billable_effective_hours",
|
||||
string="Billable Effective Hours",
|
||||
store=True,
|
||||
compute_sudo=True,
|
||||
)
|
||||
|
||||
non_billable_effective_hours = fields.Float(
|
||||
compute="_compute_non_billable_effective_hours",
|
||||
string="Non Billable Effective Hours",
|
||||
store=True,
|
||||
)
|
||||
|
||||
billable_remaining_hours = fields.Float(
|
||||
compute="_compute_billable_remaining_hours",
|
||||
string="Billable Remaining Hours",
|
||||
store=True,
|
||||
help="Total Billable remaining time (without exclude_from_sale_order timesheet lines), can be re-estimated periodically by the assignee of the task.",
|
||||
)
|
||||
|
||||
billable_progress = fields.Float(
|
||||
compute="_compute_billable_progress_hours",
|
||||
string="Billable Progress",
|
||||
store=True,
|
||||
group_operator="avg",
|
||||
)
|
||||
|
||||
subtask_billable_effective_hours = fields.Float(
|
||||
compute="_compute_subtask_billable_effective_hours",
|
||||
string="Subtask Billable Effective Hours",
|
||||
store=True,
|
||||
compute_sudo=True,
|
||||
recursive=True,
|
||||
)
|
||||
|
||||
total_billable_effective_hours = fields.Float(
|
||||
compute="_compute_total_billable_effective_hours",
|
||||
string="Total Billable Effective Hours",
|
||||
store=True,
|
||||
compute_sudo=True,
|
||||
)
|
||||
|
||||
@api.depends("timesheet_ids.unit_amount")
|
||||
def _compute_billable_effective_hours(self):
|
||||
if not any(self._ids):
|
||||
for task in self:
|
||||
filtered_timesheets = task.timesheet_ids.filtered(
|
||||
lambda t: not t.exclude_from_sale_order
|
||||
)
|
||||
task.billable_effective_hours = sum(
|
||||
filtered_timesheets.mapped("unit_amount")
|
||||
)
|
||||
return
|
||||
|
||||
timesheet_read_group = self.env["account.analytic.line"].read_group(
|
||||
[
|
||||
("task_id", "in", self.ids),
|
||||
("exclude_from_sale_order", "=", False),
|
||||
], # We exclude the lines (timesheet) which are excluded from billing
|
||||
["unit_amount", "task_id"],
|
||||
["task_id"],
|
||||
)
|
||||
|
||||
timesheets_per_task = {
|
||||
res["task_id"][0]: res["unit_amount"] for res in timesheet_read_group
|
||||
}
|
||||
for task in self:
|
||||
task.billable_effective_hours = timesheets_per_task.get(task.id, 0.0)
|
||||
|
||||
@api.depends("effective_hours", "billable_effective_hours")
|
||||
def _compute_non_billable_effective_hours(self):
|
||||
for task in self:
|
||||
task.non_billable_effective_hours = (
|
||||
task.effective_hours - task.billable_effective_hours
|
||||
)
|
||||
|
||||
@api.depends(
|
||||
"billable_effective_hours", "subtask_billable_effective_hours", "planned_hours"
|
||||
)
|
||||
def _compute_billable_remaining_hours(self):
|
||||
for task in self:
|
||||
task.billable_remaining_hours = (
|
||||
task.planned_hours
|
||||
- task.billable_effective_hours
|
||||
- task.subtask_billable_effective_hours
|
||||
)
|
||||
|
||||
@api.depends(
|
||||
"child_ids.billable_effective_hours",
|
||||
"child_ids.subtask_billable_effective_hours",
|
||||
)
|
||||
def _compute_subtask_billable_effective_hours(self):
|
||||
for task in self:
|
||||
task.subtask_billable_effective_hours = sum(
|
||||
child_task.billable_effective_hours
|
||||
+ child_task.subtask_billable_effective_hours
|
||||
for child_task in task.child_ids
|
||||
)
|
||||
|
||||
@api.depends(
|
||||
"billable_effective_hours", "subtask_billable_effective_hours", "planned_hours"
|
||||
)
|
||||
def _compute_billable_progress_hours(self):
|
||||
for task in self:
|
||||
if task.planned_hours > 0.0:
|
||||
task_total_hours = (
|
||||
task.billable_effective_hours
|
||||
+ task.subtask_billable_effective_hours
|
||||
)
|
||||
if (
|
||||
float_compare(
|
||||
task_total_hours, task.planned_hours, precision_digits=2
|
||||
)
|
||||
>= 0
|
||||
):
|
||||
task.billable_progress = 100
|
||||
else:
|
||||
task.billable_progress = round(
|
||||
100.0 * task_total_hours / task.planned_hours, 2
|
||||
)
|
||||
else:
|
||||
task.billable_progress = 0.0
|
||||
|
||||
@api.depends("billable_effective_hours", "subtask_billable_effective_hours")
|
||||
def _compute_total_billable_effective_hours(self):
|
||||
for task in self:
|
||||
task.total_billable_effective_hours = (
|
||||
task.billable_effective_hours + task.subtask_billable_effective_hours
|
||||
)
|
@@ -19,6 +19,13 @@
|
||||
</span>
|
||||
<field name="non_billable_effective_hours" widget="timesheet_uom" class="mt-2" attrs="{'invisible' : [('planned_hours', '=', 0.0)]}" nolabel="1"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='total_hours_spent']" position="after">
|
||||
<span>
|
||||
<label class="font-weight-bold" for="total_billable_effective_hours" string="Total Billable Effective Hours" attrs="{'invisible': ['|', ('planned_hours', '=', 0.0), ('encode_uom_in_days', '=', True)]}"/>
|
||||
<label class="font-weight-bold" for="total_billable_effective_hours" string="Total Billable Effective Days" attrs="{'invisible': ['|', ('planned_hours', '=', 0.0), ('encode_uom_in_days', '=', False)]}"/>
|
||||
</span>
|
||||
<field name="total_billable_effective_hours" widget="timesheet_uom" class="oe_subtotal_footer_separator" attrs="{'invisible' : [('planned_hours', '=', 0.0)]}" nolabel="1"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='remaining_hours']" position="after">
|
||||
<span>
|
||||
<label class="font-weight-bold" for="billable_remaining_hours" string="Billable Remaining Hours" attrs="{'invisible': ['|', ('planned_hours', '=', 0.0), ('encode_uom_in_days', '=', True)]}"/>
|
||||
@@ -29,4 +36,4 @@
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
</odoo>
|
||||
|
Reference in New Issue
Block a user