Bug 39082 - Remove or optionally hide biblioitems.metadata warning on saved reports
Summary: Remove or optionally hide biblioitems.metadata warning on saved reports
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Reports (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on: 17898
Blocks:
  Show dependency treegraph
 
Reported: 2025-02-10 19:21 UTC by Andrew Fuerste-Henry
Modified: 2025-02-11 13:26 UTC (History)
1 user (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Fuerste-Henry 2025-02-10 19:21:22 UTC
Back in 2017, bug 17196 moved MARC data from biblioitems.marcxml to biblio_metadata.metadata and bug 17898 added an alert and Update button on any report that Koha flagged as seeming obsolete. Bug 19638 tried to lower the number of false positives on that alert. Currently, the alert appears on any report where the saved sql includes "biblioitems" and "marcxml." This still results in false positives when one queries a field like import_records.marcxml in a report that also references biblioitems.

Are we far enough our from bug 17196 to remove this warning? Or give an easy syspref or similar with which to disable it?
Comment 1 Jonathan Druart 2025-02-11 12:10:43 UTC
Could you provide us with some examples of false positives? Maybe we can refine the regex and don't report the alert if we catch import_records? Would that be enough?
Comment 2 Andrew Fuerste-Henry 2025-02-11 13:22:26 UTC
(In reply to Jonathan Druart from comment #1)
> Could you provide us with some examples of false positives? Maybe we can
> refine the regex and don't report the alert if we catch import_records?
> Would that be enough?

I ran into this on a report to compare values in a staged MARC batch to the values in the records to which they matched or which they created:

SELECT ib.title as import_title,
	coalesce(ib.isbn,ib.issn) as import_isbn_issn,
    SUBSTRING(ExtractValue(import_records.marcxml,'//leader'),7,1) as import_leader_06,
    extractvalue(import_records.marcxml,'//controlfield[@tag="007"]') as import_007,
    b.biblionumber,
    b.title,
    b.subtitle,
    b.author,
    b.frameworkcode,
    coalesce(biblioitems.isbn,biblioitems.issn) as record_isbn_issn,
    SUBSTRING(ExtractValue(metadata,'//leader'),7,1) AS leader_06,
    extractvalue(metadata,'//controlfield[@tag="007"]') as 007_tags
FROM import_batches 
	LEFT JOIN import_records using (import_batch_id) 
    left join import_biblios ib using (import_record_id)
    LEFT JOIN biblio b ON (ib.matched_biblionumber = b.biblionumber)
    LEFT JOIN biblio_metadata USING (biblionumber)
    LEFT JOIN biblioitems USING (biblionumber)
WHERE import_batch_id= <<Import batch id>>
Comment 3 Andrew Fuerste-Henry 2025-02-11 13:26:12 UTC
I'm open to tightening up the regex rather than hiding the warning, but I'm somewhat stumped as to how to accomplish it given the flexibility of sql syntax.