From 53333b8cb92f2a5db6274cd0d47b33ff33d3346f Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 21 Nov 2022 21:49:43 +0000 Subject: [PATCH] Bug 32292: Add column descriptions to biblio table This adds nice descriptions to the aqorders database columns. To test: * Go to Guided reports * Start a new report for acquisitions module * Verify that all aqorders columns show with nice descriptions None should be missing. Signed-off-by: David Nind --- Koha/Database/Columns.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Koha/Database/Columns.pm b/Koha/Database/Columns.pm index d092b23ab1..b533d50bf7 100644 --- a/Koha/Database/Columns.pm +++ b/Koha/Database/Columns.pm @@ -238,10 +238,22 @@ sub columns { "borrowernumber" => __("Borrower number"), }, biblio => { + "biblionumber" => __("Biblio number"), "frameworkcode" => __("Framework code"), "author" => __("Author"), + "title" => __("Title"), + "medium" => __("Medium"), + "subtitle" => __("Remainder of title"), + "part_number" => __("Number of part/section of a work"), + "part_name" => __("Name of part/section of a work"), + "unititle" => __("Uniform title"), + "notes" => __("Notes"), + "serial" => __("Is a serial?"), + "seriestitle" => __("Series title"), + "copyrightdate" => __("Copyright date"), "datecreated" => __("Creation date"), "timestamp" => __("Modification date"), + "abstract" => __("Abstract"), }, biblioitems => { "biblioitemnumber" => __("Biblioitem number"), -- 2.30.2