added project filter to gl and carry project filter from P&L

This commit is contained in:
Ricardo Johann
2017-01-24 06:42:24 -03:00
parent 1f1f56225c
commit 34354237fd
3 changed files with 11 additions and 1 deletions

View File

@@ -149,6 +149,9 @@ def get_conditions(filters):
if not (filters.get("account") or filters.get("party") or filters.get("group_by_account")):
conditions.append("posting_date >=%(from_date)s")
if filters.get("project"):
conditions.append("project=%(project)s")
from frappe.desk.reportview import build_match_conditions
match_conditions = build_match_conditions("GL Entry")
if match_conditions: conditions.append(match_conditions)