[fix] #6363
This commit is contained in:
parent
8d187def12
commit
28ad58905d
@ -129,7 +129,7 @@
|
|||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
"columns": 0,
|
"columns": 0,
|
||||||
"default": "Task Completion",
|
"default": "Task Completion",
|
||||||
"fieldname": "pct_comp_method",
|
"fieldname": "percent_complete_method",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"hidden": 0,
|
"hidden": 0,
|
||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 0,
|
||||||
@ -258,31 +258,6 @@
|
|||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"allow_on_submit": 0,
|
|
||||||
"bold": 1,
|
|
||||||
"collapsible": 0,
|
|
||||||
"columns": 0,
|
|
||||||
"fieldname": "percent_complete",
|
|
||||||
"fieldtype": "Percent",
|
|
||||||
"hidden": 0,
|
|
||||||
"ignore_user_permissions": 0,
|
|
||||||
"ignore_xss_filter": 0,
|
|
||||||
"in_filter": 0,
|
|
||||||
"in_list_view": 0,
|
|
||||||
"label": "% Tasks Completed",
|
|
||||||
"length": 0,
|
|
||||||
"no_copy": 1,
|
|
||||||
"permlevel": 0,
|
|
||||||
"print_hide": 0,
|
|
||||||
"print_hide_if_no_value": 0,
|
|
||||||
"read_only": 1,
|
|
||||||
"report_hide": 0,
|
|
||||||
"reqd": 0,
|
|
||||||
"search_index": 0,
|
|
||||||
"set_only_once": 0,
|
|
||||||
"unique": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
@ -498,6 +473,31 @@
|
|||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 1,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "percent_complete",
|
||||||
|
"fieldtype": "Percent",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"label": "% Tasks Completed",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 1,
|
||||||
|
"permlevel": 0,
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 1,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
@ -1041,7 +1041,7 @@
|
|||||||
"issingle": 0,
|
"issingle": 0,
|
||||||
"istable": 0,
|
"istable": 0,
|
||||||
"max_attachments": 4,
|
"max_attachments": 4,
|
||||||
"modified": "2016-10-20 03:48:02.436539",
|
"modified": "2016-10-21 00:04:33.705380",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Projects",
|
"module": "Projects",
|
||||||
"name": "Project",
|
"name": "Project",
|
||||||
|
|||||||
@ -104,17 +104,17 @@ class Project(Document):
|
|||||||
|
|
||||||
def update_percent_complete(self):
|
def update_percent_complete(self):
|
||||||
total = frappe.db.sql("""select count(name) from tabTask where project=%s""", self.name)[0][0]
|
total = frappe.db.sql("""select count(name) from tabTask where project=%s""", self.name)[0][0]
|
||||||
if (self.pct_comp_method == "Task Completion" and total > 0) or (not self.pct_comp_method and total > 0):
|
if (self.percent_complete_method == "Task Completion" and total > 0) or (not self.percent_complete_method and total > 0):
|
||||||
completed = frappe.db.sql("""select count(name) from tabTask where
|
completed = frappe.db.sql("""select count(name) from tabTask where
|
||||||
project=%s and status in ('Closed', 'Cancelled')""", self.name)[0][0]
|
project=%s and status in ('Closed', 'Cancelled')""", self.name)[0][0]
|
||||||
self.percent_complete = flt(flt(completed) / total * 100, 2)
|
self.percent_complete = flt(flt(completed) / total * 100, 2)
|
||||||
|
|
||||||
if (self.pct_comp_method == "Task Progress" and total > 0):
|
if (self.percent_complete_method == "Task Progress" and total > 0):
|
||||||
progress = frappe.db.sql("""select sum(progress) from tabTask where
|
progress = frappe.db.sql("""select sum(progress) from tabTask where
|
||||||
project=%s""", self.name)[0][0]
|
project=%s""", self.name)[0][0]
|
||||||
self.percent_complete = flt(flt(progress) / total, 2)
|
self.percent_complete = flt(flt(progress) / total, 2)
|
||||||
|
|
||||||
if (self.pct_comp_method == "Task Weight" and total > 0):
|
if (self.percent_complete_method == "Task Weight" and total > 0):
|
||||||
weight_sum = frappe.db.sql("""select sum(task_weight) from tabTask where
|
weight_sum = frappe.db.sql("""select sum(task_weight) from tabTask where
|
||||||
project=%s""", self.name)[0][0]
|
project=%s""", self.name)[0][0]
|
||||||
if weight_sum == 1:
|
if weight_sum == 1:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user