2016-03-16 12:31:22 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2016-03-16 12:31:22 +00:00
|
|
|
import frappe
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2016-03-16 12:31:22 +00:00
|
|
|
|
|
|
|
def get_context(context):
|
2018-09-10 11:40:43 +00:00
|
|
|
project_user = frappe.db.get_value(
|
|
|
|
"Project User",
|
|
|
|
{"parent": frappe.form_dict.project, "user": frappe.session.user},
|
|
|
|
["user", "view_attachments"],
|
|
|
|
as_dict=True,
|
|
|
|
)
|
2019-07-16 04:10:09 +00:00
|
|
|
if frappe.session.user != "Administrator" and (
|
|
|
|
not project_user or frappe.session.user == "Guest"
|
|
|
|
):
|
2016-04-08 17:52:04 +00:00
|
|
|
raise frappe.PermissionError
|
2019-07-16 04:10:09 +00:00
|
|
|
|
2016-03-16 12:31:22 +00:00
|
|
|
context.no_cache = 1
|
2016-04-20 10:50:49 +00:00
|
|
|
context.show_sidebar = True
|
2016-03-16 12:31:22 +00:00
|
|
|
project = frappe.get_doc("Project", frappe.form_dict.project)
|
|
|
|
|
|
|
|
project.has_permission("read")
|
2019-07-16 04:10:09 +00:00
|
|
|
|
2016-03-25 11:49:28 +00:00
|
|
|
project.tasks = get_tasks(
|
2016-05-02 06:13:44 +00:00
|
|
|
project.name, start=0, item_status="open", search=frappe.form_dict.get("search")
|
2022-03-28 13:22:46 +00:00
|
|
|
)
|
2016-03-23 12:58:50 +00:00
|
|
|
|
2016-07-05 06:42:39 +00:00
|
|
|
project.timesheets = get_timesheets(project.name, start=0, search=frappe.form_dict.get("search"))
|
2016-03-23 12:58:50 +00:00
|
|
|
|
2019-07-16 04:10:09 +00:00
|
|
|
if project_user and project_user.view_attachments:
|
2018-09-10 11:40:43 +00:00
|
|
|
project.attachments = get_attachments(project.name)
|
2016-03-16 12:31:22 +00:00
|
|
|
|
|
|
|
context.doc = project
|
2016-03-23 12:58:50 +00:00
|
|
|
|
|
|
|
|
2016-03-22 10:30:41 +00:00
|
|
|
def get_tasks(project, start=0, search=None, item_status=None):
|
2016-03-16 12:31:22 +00:00
|
|
|
filters = {"project": project}
|
|
|
|
if search:
|
|
|
|
filters["subject"] = ("like", "%{0}%".format(search))
|
2016-03-23 12:58:50 +00:00
|
|
|
tasks = frappe.get_all(
|
|
|
|
"Task",
|
|
|
|
filters=filters,
|
2021-07-01 11:47:34 +00:00
|
|
|
fields=[
|
|
|
|
"name",
|
|
|
|
"subject",
|
|
|
|
"status",
|
|
|
|
"modified",
|
|
|
|
"_assign",
|
|
|
|
"exp_end_date",
|
|
|
|
"is_group",
|
|
|
|
"parent_task",
|
|
|
|
],
|
2016-03-23 12:58:50 +00:00
|
|
|
limit_start=start,
|
|
|
|
limit_page_length=10,
|
|
|
|
)
|
2021-07-01 11:47:34 +00:00
|
|
|
task_nest = []
|
2016-03-16 12:31:22 +00:00
|
|
|
for task in tasks:
|
2021-07-01 11:47:34 +00:00
|
|
|
if task.is_group:
|
|
|
|
child_tasks = list(filter(lambda x: x.parent_task == task.name, tasks))
|
|
|
|
if len(child_tasks):
|
|
|
|
task.children = child_tasks
|
|
|
|
task_nest.append(task)
|
|
|
|
return list(filter(lambda x: not x.parent_task, tasks))
|
2016-03-16 12:31:22 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2016-03-16 12:31:22 +00:00
|
|
|
@frappe.whitelist()
|
2016-03-25 11:49:28 +00:00
|
|
|
def get_task_html(project, start=0, item_status=None):
|
2016-03-23 12:58:50 +00:00
|
|
|
return frappe.render_template(
|
|
|
|
"erpnext/templates/includes/projects/project_tasks.html",
|
2016-03-25 11:49:28 +00:00
|
|
|
{
|
|
|
|
"doc": {
|
|
|
|
"name": project,
|
|
|
|
"project_name": project,
|
|
|
|
"tasks": get_tasks(project, start, item_status=item_status),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
is_path=True,
|
|
|
|
)
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2016-03-25 11:49:28 +00:00
|
|
|
|
2016-07-05 06:42:39 +00:00
|
|
|
def get_timesheets(project, start=0, search=None):
|
2016-03-16 12:31:22 +00:00
|
|
|
filters = {"project": project}
|
|
|
|
if search:
|
2016-07-05 06:42:39 +00:00
|
|
|
filters["activity_type"] = ("like", "%{0}%".format(search))
|
2016-03-23 12:58:50 +00:00
|
|
|
|
2016-07-05 06:42:39 +00:00
|
|
|
timesheets = frappe.get_all(
|
|
|
|
"Timesheet Detail",
|
|
|
|
filters=filters,
|
|
|
|
fields=["project", "activity_type", "from_time", "to_time", "parent"],
|
2016-03-23 12:58:50 +00:00
|
|
|
limit_start=start,
|
|
|
|
limit_page_length=10,
|
|
|
|
)
|
2016-07-05 06:42:39 +00:00
|
|
|
for timesheet in timesheets:
|
2021-07-01 11:47:34 +00:00
|
|
|
info = frappe.get_all(
|
|
|
|
"Timesheet",
|
|
|
|
filters={"name": timesheet.parent},
|
|
|
|
fields=["name", "status", "modified", "modified_by"],
|
2016-07-05 06:42:39 +00:00
|
|
|
limit_start=start,
|
|
|
|
limit_page_length=10,
|
|
|
|
)
|
2021-07-01 11:47:34 +00:00
|
|
|
if len(info):
|
|
|
|
timesheet.update(info[0])
|
2016-07-05 06:42:39 +00:00
|
|
|
return timesheets
|
2016-03-16 12:31:22 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2016-03-16 12:31:22 +00:00
|
|
|
@frappe.whitelist()
|
2016-07-05 06:42:39 +00:00
|
|
|
def get_timesheet_html(project, start=0):
|
|
|
|
return frappe.render_template(
|
|
|
|
"erpnext/templates/includes/projects/project_timesheets.html",
|
|
|
|
{"doc": {"timesheets": get_timesheets(project, start)}},
|
|
|
|
is_path=True,
|
|
|
|
)
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2016-03-23 12:58:50 +00:00
|
|
|
|
2018-09-10 11:40:43 +00:00
|
|
|
def get_attachments(project):
|
|
|
|
return frappe.get_all(
|
|
|
|
"File",
|
|
|
|
filters={"attached_to_name": project, "attached_to_doctype": "Project", "is_private": 0},
|
|
|
|
fields=["file_name", "file_url", "file_size"],
|
|
|
|
)
|