From 1ac8fd78731aba3eb4f455199b621d3894f46b51 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 16 May 2023 17:39:35 +0000 Subject: [PATCH] Bug 33748: Fix UI issue when importing records from a staged MARC file To test: 1. Set MarcItemFieldsToOrder like this: homebranch: 975$a holdingbranch: 975$b itype: 975$y nonpublic_note: 975$x public_note: 975$z loc: 975$c ccode: 975$8 notforloan: 975$7 quantity: 975$q price: 975$g replacementprice: 975$v uri: 975$u 2. Set MarcFieldsToOrder like this: price: 975$p quantity: 975$q budget_code: 975$h 3. Stage a MARC file that has bibs with items. 4. From acquisitions create a new basket and add 'From a staged file' 5. APPLY PATCH 6. Try 3 - 4 again, the display should now look correct. --- .../intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt index 04a9096731..f03d44322e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt @@ -10,7 +10,7 @@ Batch list [% END %] › Order staged MARC records › Acquisitions › Koha - + [% INCLUDE 'doc-head-close.inc' %] [% Asset.css("css/addbiblio.css") | $raw %] [%# As long as cataloging plugins rely on 'script' tags added inline, JS must be in the header %] @@ -207,7 +207,7 @@
[% IF biblio.item_error %]Item records could not be processed because the number of item fields was uneven.[% END %] [% FOREACH item IN biblio.iteminfos %] -
+
Item record [% item.item_id | html %]
  1. -- 2.30.2