The CIB “advanced report” page /reports-advanced renders a filter form and nothing else. There is no chart and no on-screen results table — the xlsx export is the page’s only output. Source-verified in vuer_oss customization/ui/pages/reports-advanced/ on 2026-09-03.

For Agents

Practical consequence: test evidence for anything computed by this page can only ever be the spreadsheet. There is no app screenshot that shows report numbers, because the app never displays them. Do not ask for one, and do not read a release-ticket phrase mentioning “chart” as implying a UI surface.

What the source actually contains

vuer_oss/customization/ui/pages/reports-advanced/:

FileWhat it renders / does
reports-advanced.template.twigOnly the filter form — no chart container, no table
reports-advanced.form.twigreport type · time range · day/week/month/year pickers · prev/next navigation · export button
reports-advanced.script.jshandleDownload() always sends download: 'true'; its only success path is window.location = /download/${res}

There is no branch in handleDownload() that renders results into the page. The request is a download request by construction, and the response is consumed as a redirect to a generated file.

The ASSCIB-166 phrasing is about data, not UI

ASSCIB-166 describes the 1.9.11.102 payload item FKITDEV-9230 with:

“a riport számai, a diagram adatai, valamint a XLSX export” (“the report’s numbers, the chart’s data, and the XLSX export”)

Do not read this as three UI surfaces

Those are the three places in the computed data where the FKITDEV-9230 async-filter bug surfaced. All three land in the workbook. “A diagram adatai” is the series data that feeds a chart sheet in the exported file — not a chart drawn in the browser. Nothing on that list is visible in the application UI.

Why this matters

  • TjK / test-record evidence for FKITDEV-9230 must be the generated .xlsx, with the affected figures pointed out inside it. A screenshot of /reports-advanced would only ever show an empty filter form. See tesztjegyzokonyv-generation-flow.
  • Anyone told to “check the chart on the report page” is being sent to a page that has none; the check has to happen in the downloaded workbook.
  • Any future request to “also show the numbers on screen” for CIB is new feature work, not a fix — the rendering path does not exist.