Why my filter label is not showing on my Report?

I have these filter from my Report:

frappe.query_reports["Movimentacao Financeira"] = {
    "filters": [
        {
            "fieldname": "data_inicio",
            "label": "Data de Início",
            "fieldtype": "Date",
            "default": frappe.datetime.add_days(frappe.datetime.nowdate(), -7),
            "reqd": 1
        },
        {
            "fieldname": "data_fim",
            "label": "Data Final",
            "fieldtype": "Date",
            "default": frappe.datetime.add_days(frappe.datetime.nowdate(), 0),
            "reqd": 1
        },
        {
            "fieldname": "conta",
            "label": "Conta",
            "fieldtype": "Link",
            "options": "Conta",
        },
    ]
};

Labels is set, but it’s now show:

How can I show the labels?

Regards

Hi, sorry but as I saw in standard report labels are shown in the field. As you have default values you can’t see it.

I see… but there’s another way to show a label? Because, the user must know what’s the field means… using or not using default values…

Regards

1 Like

Hi, sorry but I don’t think that it’s possible using ERPNext features. I think you can make some extensions or customizations for showing it.

I agree with this, filter field on reports should be able to show the description under the field for when report has many fields to set prior to generating.

#19920

1 Like

This is same issue with standard list view. When the field to be filtered is ‘select’ type and when the empty value is used, that particular filter field becomes compeletely blank and the user can hardly guess what this filter is used for unless he hover the mouse on. This is okay when we have a few filter. But what if we have many filter of ‘select’ type ?

1 Like