mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-29 09:54:47 +00:00
fix: remove employee_name from job card summary
This field doesn't exist and it's moved on individual line level logs.
(cherry picked from commit 8221e7e01f)
This commit is contained in:
committed by
Ankush Menat
parent
1fae8f1fcb
commit
e357541509
@@ -24,7 +24,7 @@ def get_data(filters):
|
|||||||
}
|
}
|
||||||
|
|
||||||
fields = ["name", "status", "work_order", "production_item", "item_name", "posting_date",
|
fields = ["name", "status", "work_order", "production_item", "item_name", "posting_date",
|
||||||
"total_completed_qty", "workstation", "operation", "employee_name", "total_time_in_mins"]
|
"total_completed_qty", "workstation", "operation", "total_time_in_mins"]
|
||||||
|
|
||||||
for field in ["work_order", "workstation", "operation", "company"]:
|
for field in ["work_order", "workstation", "operation", "company"]:
|
||||||
if filters.get(field):
|
if filters.get(field):
|
||||||
@@ -172,12 +172,6 @@ def get_columns(filters):
|
|||||||
"options": "Operation",
|
"options": "Operation",
|
||||||
"width": 110
|
"width": 110
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"label": _("Employee Name"),
|
|
||||||
"fieldname": "employee_name",
|
|
||||||
"fieldtype": "Data",
|
|
||||||
"width": 110
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": _("Total Completed Qty"),
|
"label": _("Total Completed Qty"),
|
||||||
"fieldname": "total_completed_qty",
|
"fieldname": "total_completed_qty",
|
||||||
|
|||||||
Reference in New Issue
Block a user