mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-03 05:28:27 +00:00
stock balance report and inclusion of filter on brand in all stock reports
This commit is contained in:
@@ -66,6 +66,7 @@ data_map = {
|
||||
"order_by": "name",
|
||||
"links": {
|
||||
"parent_item_group": ["Item Group", "name"],
|
||||
"brand": ["Brand", "name"]
|
||||
}
|
||||
},
|
||||
"Item Group": {
|
||||
@@ -73,6 +74,11 @@ data_map = {
|
||||
"conditions": ["docstatus < 2"],
|
||||
"order_by": "lft"
|
||||
},
|
||||
"Brand": {
|
||||
"columns": ["name"],
|
||||
"conditions": ["docstatus < 2"],
|
||||
"order_by": "name"
|
||||
},
|
||||
"Warehouse": {
|
||||
"columns": ["name"],
|
||||
"conditions": ["docstatus < 2"],
|
||||
@@ -89,6 +95,11 @@ data_map = {
|
||||
},
|
||||
"force_index": "posting_sort_index"
|
||||
},
|
||||
"Stock Entry": {
|
||||
"columns": ["name", "purpose"],
|
||||
"conditions": ["docstatus=1"],
|
||||
"order_by": "posting_date, posting_time, name",
|
||||
},
|
||||
|
||||
# Sales
|
||||
"Customer": {
|
||||
|
||||
Reference in New Issue
Block a user