Bug 7049: [SIGNED-OFF] Item form on order receive has lots of blank space
The item form on the order receive page (AcqCreateItem = on receive) contains a lot of blank space which makes it hard to read and fill out. To test: - set AcqCreateItem = on receive - create basket, order something, receive shipment - check item form is nicely formatted and doesn't include lots of blank space Note: It will be easier to test if you have an ACQ framework created to hide some unnecessary subfields, because the hidden fields create the blank space. Signed-off-by: Magnus Enger <magnus@enger.priv.no> Created an ACQ framework and hid some of the fields (hidden = 5). Before the patch there were gaps between the fields as shown in the screenshot from Katrin. After the patch fields line up nicely, with no extra space between them. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
823b807ac9
commit
224140a2b6
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,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 %]
|
||||
|
|
Loading…
Reference in a new issue