@@ -, +, @@ - 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 --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 ++ 2 files changed, 4 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -198,6 +198,8 @@ modules: columnname: status - columnname: quantity + - + columnname: order_internalnote - columnname: subscription - --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/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 %] [% IF order.subscriptionid %] [% order.subscriptionid | html %] --