From 0f0199c32dde7788c8663e1f4ef2c506d6b620b7 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 18 Feb 2022 12:56:44 +0000 Subject: [PATCH] Bug 16258: (QA follow-up) Hide "Suppliers report" column As noted by Katrin, this column is only used for Edifact message data and so can be hidden when Edifact is disabled. Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt index c0283afd97..01207c9c52 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -448,7 +448,9 @@ GST % GST Fund + [% IF Koha.Preference('Edifact') && ediaccount %] Supplier report + [% END %] [% IF ( active ) %] [% UNLESS ( closedate ) %] Modify @@ -475,7 +477,9 @@   [% foot_loo.tax_value | $Price %]   + [% IF Koha.Preference('Edifact') && ediaccount %]   + [% END %] [% IF ( active ) %] [% UNLESS ( closedate ) %]   @@ -500,7 +504,9 @@   [% total_tax_value | $Price %]   + [% IF Koha.Preference('Edifact') && ediaccount %]   + [% END %] [% IF ( active ) %] [% UNLESS ( closedate ) %]   @@ -584,7 +590,9 @@ [% books_loo.tax_rate * 100 | html %] [% books_loo.tax_value | $Price %] [% books_loo.budget_name | html %] + [% IF Koha.Preference('Edifact') && ediaccount %] [% books_loo.suppliers_report | html %] + [% END %] [% IF ( active ) %] [% UNLESS ( closedate ) %] -- 2.20.1