From 1d7c5940c922f8c0cad256bed468281497855028 Mon Sep 17 00:00:00 2001
From: Katrin Fischer <katrin.fischer.83@web.de>
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.
---
 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