mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-20 13:39:18 +00:00
fix: is_opening != 'Yes'
This commit is contained in:
@@ -316,7 +316,7 @@ class GrossProfitGenerator(object):
|
|||||||
on `tabSales Invoice Item`.parent = `tabSales Invoice`.name
|
on `tabSales Invoice Item`.parent = `tabSales Invoice`.name
|
||||||
{sales_team_table}
|
{sales_team_table}
|
||||||
where
|
where
|
||||||
`tabSales Invoice`.docstatus=1 and `tabSales Invoice`.is_opening='No' {conditions} {match_cond}
|
`tabSales Invoice`.docstatus=1 and `tabSales Invoice`.is_opening!='Yes' {conditions} {match_cond}
|
||||||
order by
|
order by
|
||||||
`tabSales Invoice`.posting_date desc, `tabSales Invoice`.posting_time desc"""
|
`tabSales Invoice`.posting_date desc, `tabSales Invoice`.posting_time desc"""
|
||||||
.format(conditions=conditions, sales_person_cols=sales_person_cols,
|
.format(conditions=conditions, sales_person_cols=sales_person_cols,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ def get_data():
|
|||||||
'goal_doctype_link': 'company',
|
'goal_doctype_link': 'company',
|
||||||
'goal_field': 'base_grand_total',
|
'goal_field': 'base_grand_total',
|
||||||
'date_field': 'posting_date',
|
'date_field': 'posting_date',
|
||||||
'filter_str': 'docstatus = 1',
|
'filter_str': "docstatus = 1 and is_opening != 'Yes'",
|
||||||
'aggregation': 'sum'
|
'aggregation': 'sum'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user