From 6f2aa72dab812302d551f9269f1fc76315d3bddb Mon Sep 17 00:00:00 2001 From: Laura Escamilla Date: Fri, 8 Mar 2024 20:09:44 +0000 Subject: [PATCH] Bug 36287: Add budget code to fund column in acq basket table Trivial patch is attached. I'm open for discussing whether this would work better as a system preference so that libraries could decide whether they would like to see only the fund name, code, or both. To test: 1. Create a basket and add an item. Notice that the fund column in the basket table only displays the budget name. 2. Apply the patch. 3. Refresh the page and note that the fund column now displays both the budget name and budget code. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 80fa9cda1f..f94477bec8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -685,7 +685,8 @@ [% books_loo.tax_value | $Price %] - [% books_loo.budget_name | html %] + Budget name: [% books_loo.budget_name | html %]

+ Budget code: [% books_loo.budget_code | html %] [% books_loo.estimated_delivery_date | $KohaDates %] -- 2.30.2