fix: hide column in report if rreport_hide is set
This commit is contained in:
parent
6807427383
commit
3f3fe46948
1 changed files with 1 additions and 1 deletions
|
|
@ -937,7 +937,7 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (!docfield) return;
|
||||
if (!docfield || docfield.report_hide) return;
|
||||
|
||||
let title = __(docfield ? docfield.label : toTitle(fieldname));
|
||||
if (doctype !== this.doctype) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue