Same fix that was done for normal order page and receive page.
Moving the style element for hiding the subfield into the li tag.

AcqCreateItem = on order

To recreate:
1) stage a marc file with 1 - many records
2) make sure you have an acq framework with hidden fields in 952
3) create new basket
4) order from your marc file
5) check item form below the record list for white space
---
 .../prog/en/modules/acqui/addorderiso2709.tt       |    4 ++--
 1 files 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 dd864cf..9723094 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt
@@ -125,8 +125,8 @@
                     [% FOREACH item IN items %]
                     <div id="outeritemblock">
                     <div id="itemblock">
-                        <ol>[% FOREACH iteminformatio IN item.iteminformation 
%]<li>
-                            <div class="subfield_line" style="[% 
iteminformatio.hidden %];" id="subfield[% iteminformatio.serialid %][% 
iteminformatio.countitems %][% iteminformatio.subfield %][% 
iteminformatio.random %]">
+                        <ol>[% FOREACH iteminformatio IN item.iteminformation 
%]<li style="[% iteminformatio.hidden %];">
+                            <div class="subfield_line" id="subfield[% 
iteminformatio.serialid %][% iteminformatio.countitems %][% 
iteminformatio.subfield %][% iteminformatio.random %]">
 
                                 <label>[% iteminformatio.subfield %] - [% IF ( 
iteminformatio.mandatory ) %]<b>[% END %][% iteminformatio.marc_lib %][% IF ( 
iteminformatio.mandatory ) %] *</b>[% END %]</label>
                                 [% iteminformatio.marc_value %]
-- 
1.7.5.4

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to