From 9099791227b665e308c995199f27a25e473e6b06 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 4 Feb 2019 21:36:08 +0100 Subject: [PATCH] Bug 18952: Add internal note to acq details tab Any important notes about an order are usually added to the internal note. This patch makes the note visible on the acq detail tab in the staff client. To test: - Add a basket - Order something - Add an internal note for the order - Go to the detail page of the ordered record - Switch to the Acquisition details tab - Verify that with the patch the internal note shows - Verify that the new column can be toggled using the column visibility settings Signed-off-by: Maryse Simard --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml index 6bc5c55..bd061cb 100644 --- a/admin/columns_settings.yml +++ b/admin/columns_settings.yml @@ -199,6 +199,8 @@ modules: - columnname: quantity - + columnname: order_internalnote + - columnname: subscription - columnname: subscription_callnumber diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index bfab772..fd05af4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -718,6 +718,7 @@ Receive date Status Quantity + Internal note Subscription Subscription callnumber @@ -769,6 +770,7 @@ [% END %] [% order.quantity | html %] + [% order.order_internalnote | html %] [% IF order.subscriptionid %] [% order.subscriptionid | html %] -- 2.7.4