Bugzilla – Attachment 143997 Details for
Bug 32046
When adding a new records from a staged files, there are style issues
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32046: (follow-up) Accommodate the inclusion of item information
Bug-32046-follow-up-Accommodate-the-inclusion-of-i.patch (text/plain), 48.79 KB, created by
Owen Leonard
on 2022-11-17 12:57:32 UTC
(
hide
)
Description:
Bug 32046: (follow-up) Accommodate the inclusion of item information
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2022-11-17 12:57:32 UTC
Size:
48.79 KB
patch
obsolete
>From 5ddc79c779eeabf5f6a7e90613f5839a1e93b99e Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Wed, 16 Nov 2022 15:26:29 +0000 >Subject: [PATCH] Bug 32046: (follow-up) Accommodate the inclusion of item > information > >If you have item information configured in the MarcItemFieldsToOrder >system preference, the "Select to import" tab will display a basic item >information form which needs to use the same style as other item edit >forms. > >In order to make the CSS in addbiblio.css more generic, I've changed >some styles to use a class, .item_edit_form, instead of an ID. This lets >us have multiple <div class="item_edit_form"> in this template without >duplicating IDs. Other instances of <div >id="cataloguing_additem_newitem"> have haa the .item_edit_form class >added. > >To test you must have a staged MARC file which includes items and you >must configure the MarcItemFieldsToOrder preference to map those items >in the ordering interface. > >As you follow the previous patch's test plan you'll find that when you >click a checkbox or title to expand the information about that title >you'll see "Item record X" headings following by a properly-styled form. > >To confirm that the changes to addbiblio.css are not too far-reaching, >test the other affected pages: > > - Item add/edit > - Batch item modification > - Batch item deletion >--- > .../intranet-tmpl/prog/css/addbiblio.css | 21 +- > .../prog/en/modules/acqui/addorderiso2709.tt | 340 +++++++++--------- > .../prog/en/modules/cataloguing/additem.tt | 2 +- > .../prog/en/modules/tools/batchMod-del.tt | 2 +- > .../prog/en/modules/tools/batchMod-edit.tt | 2 +- > 5 files changed, 189 insertions(+), 178 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css >index d6dfbe4414..6932c84f68 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css >+++ b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css >@@ -219,30 +219,39 @@ a.tagnum { > width: 1em; > } > >-#cataloguing_additem_newitem .subfield_line { >+.item_edit_form .subfield_line { >+ align-items: flex-start; > display: flex; > flex-basis: 100%; > } > >-#cataloguing_additem_newitem fieldset.rows label, >-#cataloguing_additem_newitem fieldset.rows span.label { >+div.item_edit_form ol li label, >+div.item_edit_form ol li span.label { > flex-basis: 25%; > font-size: 100%; > margin-right: 1rem; > } > >-#cataloguing_additem_newitem fieldset.rows li { >+div.item_edit_form ol li { > padding-bottom: 3px; > } > >-#cataloguing_additem_newitem .input_marceditor { >+.item_edit_form .input_marceditor { > flex-basis: 50%; >+ float: none; > } > >-#cataloguing_additem_newitem textarea.input_marceditor { >+.item_edit_form textarea.input_marceditor { > width: 31em; > } > >+div.item_edit_form ol li label:first-child, >+fieldset.order_details ol li label:first-child, >+div.item_edit_form ol li .label:first-child, >+fieldset.order_details ol li .label:first-child { >+ flex-basis: 25%; >+} >+ > #cat_addbiblio .field_marceditor .flatpickr_wrapper { > display: none; > } >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 ada220608c..6151926baf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt >@@ -10,9 +10,9 @@ > Batch list > [% END %] › Order staged MARC records › Acquisitions › Koha > </title> >-[% Asset.css("css/addbiblio.css") | $raw %] >-<style>.biblio { padding: 0 .5em;margin:0; }@media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }</style> >+<style>.biblio { padding: 0 .5em;margin:0; }.item_edit_form{border-top:1px solid #AAA;padding-top:.5em;}@media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }</style> > [% 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 %] > <script> > const template_path = "[% interface | html %]/[% theme | html %]"; >@@ -206,136 +206,138 @@ > <input id="sort2_record_[% biblio.import_record_id | html %]" type="text" size="20" name="sort2" value="[% biblio.sort2 | html %]" /> > </li> > </ol> >- </fieldset> >- <div style="float:right"> >- [% IF biblio.item_error %]Item records could not be processed because the number of item fields was uneven.[% END %] >- [% FOREACH item IN biblio.iteminfos %] >- <fieldset> >- <legend>Item record [% item.item_id | html %]</legend> >- <ol> >- <li> >- <label for="homebranch_item_[% item.item_id | html %]">homebranch</label> >- <select id="homebranch_item_[% item.item_id | html %]" name="homebranch_[% item.biblio_count | html %]"> >- [% FOREACH l IN libraries %] >- [% IF l.branchcode == item.homebranch %] >- <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname | html %]</option> >- [% ELSE %] >- <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option> >- [% END %] >- [% END %] >- </select> >- </li> >+ [% IF ( biblio.iteminfos.size ) %] >+ <div class="item_edit_form"> >+ [% IF biblio.item_error %]Item records could not be processed because the number of item fields was uneven.[% END %] >+ [% FOREACH item IN biblio.iteminfos %] >+ <fieldset> >+ <legend>Item record [% item.item_id | html %]</legend> >+ <ol> >+ <li> >+ <label for="homebranch_item_[% item.item_id | html %]">homebranch</label> >+ <select id="homebranch_item_[% item.item_id | html %]" name="homebranch_[% biblio.import_record_id | html %]"> >+ [% FOREACH l IN libraries %] >+ [% IF l.branchcode == item.homebranch %] >+ <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname | html %]</option> >+ [% ELSE %] >+ <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ </li> > >- <li> >- <label for="holdingbranch_item_[% item.item_id | html %]">holdingbranch</label> >- <select id="holdingbranch_item_[% item.item_id | html %]" name="holdingbranch_[% item.biblio_count | html %]"> >- [% FOREACH l IN libraries %] >- [% IF l.branchcode == item.holdingbranch %] >- <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname | html %]</option> >- [% ELSE %] >- <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option> >- [% END %] >- [% END %] >- </select> >- </li> >- <li> >- <label for="itype_item_[% item.item_id | html %]">itype</label> >- <select id="itype_item_[% item.item_id | html %]" name="itype_[% item.biblio_count | html %]"> >- [% FOREACH itemtype IN itemtypes %] >- [% IF itemtype.itemtype == item.itype %] >- <option value="[% itemtype.itemtype | html %]" selected="selected">[% itemtype.description | html %]</option> >- [% ELSE %] >- <option value="[% itemtype.itemtype | html %]">[% itemtype.description | html %]</option> >- [% END %] >- [% END %] >- </select> >- </li> >+ <li> >+ <label for="holdingbranch_item_[% item.item_id | html %]">holdingbranch</label> >+ <select id="holdingbranch_item_[% item.item_id | html %]" name="holdingbranch_[% biblio.import_record_id | html %]"> >+ [% FOREACH l IN libraries %] >+ [% IF l.branchcode == item.holdingbranch %] >+ <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname | html %]</option> >+ [% ELSE %] >+ <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ </li> >+ <li> >+ <label for="itype_item_[% item.item_id | html %]">itype</label> >+ <select id="itype_item_[% item.item_id | html %]" name="itype_[% biblio.import_record_id | html %]"> >+ [% FOREACH itemtype IN itemtypes %] >+ [% IF itemtype.itemtype == item.itype %] >+ <option value="[% itemtype.itemtype | html %]" selected="selected">[% itemtype.description | html %]</option> >+ [% ELSE %] >+ <option value="[% itemtype.itemtype | html %]">[% itemtype.description | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ </li> > >- <li> >- <label for="nonpublic_note_item_[% item.item_id | html %]">nonpublic_note</label> >- <input type="text" id="nonpublic_note_item_[% item.item_id | html %]" name="nonpublic_note_[% item.biblio_count | html %]" value="[% item.nonpublic_note | html %]"> >- </li> >- <li> >- <label for="public_note_item_[% item.item_id | html %]">public_note</label> >- <input type="text" id="public_note_item_[% item.item_id | html %]" name="public_note_[% item.biblio_count | html %]" value="[% item.public_note | html %]"> >- </li> >- <li> >- <label for="loc_item_[% item.item_id | html %]">loc</label> >- <select id="loc_item_[% item.item_id | html %]" name="loc_[% item.biblio_count | html %]"> >- <option value=""> </option> >- [% FOREACH locationloo IN locationloop %] >- [% IF ( locationloo.code ) == (item.loc) %] >- <option value="[% locationloo.code | html %]" selected="selected">[% locationloo.description | html %]</option> >- [% ELSE %] >- <option value="[% locationloo.code | html %]">[% locationloo.description | html %]</option> >- [% END %] >- [% END %] >- </select> >- </li> >+ <li> >+ <label for="nonpublic_note_item_[% item.item_id | html %]">nonpublic_note</label> >+ <input type="text" id="nonpublic_note_item_[% item.item_id | html %]" name="nonpublic_note_[% biblio.import_record_id | html %]" value="[% item.nonpublic_note | html %]"> >+ </li> >+ <li> >+ <label for="public_note_item_[% item.item_id | html %]">public_note</label> >+ <input type="text" id="public_note_item_[% item.item_id | html %]" name="public_note_[% biblio.import_record_id | html %]" value="[% item.public_note | html %]"> >+ </li> >+ <li> >+ <label for="loc_item_[% item.item_id | html %]">loc</label> >+ <select id="loc_item_[% item.item_id | html %]" name="loc_[% biblio.import_record_id | html %]"> >+ <option value=""> </option> >+ [% FOREACH locationloo IN locationloop %] >+ [% IF ( locationloo.code ) == (item.loc) %] >+ <option value="[% locationloo.code | html %]" selected="selected">[% locationloo.description | html %]</option> >+ [% ELSE %] >+ <option value="[% locationloo.code | html %]">[% locationloo.description | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ </li> > >- <li> >- <label for="ccode_item_[% item.item_id | html %]">ccode</label> >- <select id="ccode_item_[% item.item_id | html %]" name="ccode_[% item.biblio_count | html %]"> >- <option value=""> </option> >- [% FOREACH ccodeloo IN ccodeloop %] >- [% IF ( ccodeloo.code ) == (item.ccode) %] >- <option value="[% ccodeloo.code | html %]" selected="selected">[% ccodeloo.description | html %]</option> >- [% ELSE %] >- <option value="[% ccodeloo.code | html %]">[% ccodeloo.description | html %]</option> >- [% END %] >- [% END %] >- </select> >- </li> >+ <li> >+ <label for="ccode_item_[% item.item_id | html %]">ccode</label> >+ <select id="ccode_item_[% item.item_id | html %]" name="ccode_[% biblio.import_record_id | html %]"> >+ <option value=""> </option> >+ [% FOREACH ccodeloo IN ccodeloop %] >+ [% IF ( ccodeloo.code ) == (item.ccode) %] >+ <option value="[% ccodeloo.code | html %]" selected="selected">[% ccodeloo.description | html %]</option> >+ [% ELSE %] >+ <option value="[% ccodeloo.code | html %]">[% ccodeloo.description | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ </li> > >- <li> >- <label for="notforloan_item_[% item.item_id | html %]">notforloan</label> >- <select id="notforloan_item_[% item.item_id | html %]" name="notforloan_[% item.biblio_count | html %]"> >- <option value=""> </option> >- [% FOREACH n IN notforloanloop %] >- [% IF n.code == item.notforloan %] >- <option value="[% n.code | html %]" selected="selected">[% n.description | html %]</option> >- [% ELSE %] >- <option value="[% n.code | html %]">[% n.description | html %]</option> >- [% END %] >- [% END %] >- </select> >- </li> >- <li> >- <label for="uri_item_[% item.item_id | html %]">uri</label> >- <input type="text" id="uri_item_[% item.item_id | html %]" name="uri_[% item.biblio_count | html %]" value="[% item.uri | html %]"> >- </li> >- <li> >- <label for="copyno_item_[% item.item_id | html %]">copyno</label> >- <input type="text" id="copyno_item_[% item.item_id | html %]" name="copyno_[% item.biblio_count | html %]" value="[% item.copyno | html %]"> >- </li> >- <li> >- <label for="budget_code_item_[% item.item_id | html %]">budget_code</label> >- <select class="budget_code_item" id="budget_code_item_[% item.item_id | html %]" name="budget_code_[% item.biblio_count | html %]"> >- <option value="">Select a fund (will use default if set)</option> >- [% FOREACH budget_loo IN budget_loop %] >- [% IF ( budget_loo.b_id ) == ( item.budget_id ) %]<option value="[% budget_loo.b_id | html %]" selected="selected">[% budget_loo.b_txt | html %]</option> >- [% ELSE %]<option value="[% budget_loo.b_id | html %]">[% budget_loo.b_txt | html %]</option> >- [% END %] >- [% END %] >- </select> >- <span class="item_fund required">Required</span> >- </li> >- <li> >- <label for="price_item_[% item.item_id | html %]">price</label> >- <input type="text" id="price_item_[% item.item_id | html %]" name="itemprice_[% item.biblio_count | html %]" value="[% item.itemprice | html %]"> >- </li> >- <li> >- <label for="replacementprice_item_[% item.item_id | html %]">replacement price</label> >- <input type="text" id="replacementprice_item_[% item.item_id | html %]" name="replacementprice_[% item.biblio_count | html %]" value="[% item.replacementprice | html %]"> >- </li> >- <li> >- <label for="callnumber_item_[% item.item_id | html %]">callnumber</label> >- <input type="text" id="callnumber_item_[% item.item_id | html %]" name="itemcallnumber_[% item.biblio_count | html %]" value="[% item.itemcallnumber | html %]"> >- </li> >- </ol> >- </fieldset> >- [% END # /FOREACH item %] >- </div> >+ <li> >+ <label for="notforloan_item_[% item.item_id | html %]">notforloan</label> >+ <select id="notforloan_item_[% item.item_id | html %]" name="notforloan_[% biblio.import_record_id | html %]"> >+ <option value=""> </option> >+ [% FOREACH n IN notforloanloop %] >+ [% IF n.code == item.notforloan %] >+ <option value="[% n.code | html %]" selected="selected">[% n.description | html %]</option> >+ [% ELSE %] >+ <option value="[% n.code | html %]">[% n.description | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ </li> >+ <li> >+ <label for="uri_item_[% item.item_id | html %]">uri</label> >+ <input type="text" id="uri_item_[% item.item_id | html %]" name="uri_[% biblio.import_record_id | html %]" value="[% item.uri | html %]"> >+ </li> >+ <li> >+ <label for="copyno_item_[% item.item_id | html %]">copyno</label> >+ <input type="text" id="copyno_item_[% item.item_id | html %]" name="copyno_[% biblio.import_record_id | html %]" value="[% item.copyno | html %]"> >+ </li> >+ <li> >+ <label for="budget_code_item_[% item.item_id | html %]">budget_code</label> >+ <select class="budget_code_item" id="budget_code_item_[% item.item_id | html %]" name="budget_code_[% biblio.import_record_id | html %]"> >+ <option value="">Select a fund (will use default if set)</option> >+ [% FOREACH budget_loo IN budget_loop %] >+ [% IF ( budget_loo.b_id ) == ( item.budget_id ) %]<option value="[% budget_loo.b_id | html %]" selected="selected">[% budget_loo.b_txt | html %]</option> >+ [% ELSE %]<option value="[% budget_loo.b_id | html %]">[% budget_loo.b_txt | html %]</option> >+ [% END %] >+ [% END %] >+ </select> >+ <span class="item_fund required">Required</span> >+ </li> >+ <li> >+ <label for="price_item_[% item.item_id | html %]">price</label> >+ <input type="text" id="price_item_[% item.item_id | html %]" name="itemprice_[% biblio.import_record_id | html %]" value="[% item.itemprice | html %]"> >+ </li> >+ <li> >+ <label for="replacementprice_item_[% item.item_id | html %]">replacement price</label> >+ <input type="text" id="replacementprice_item_[% item.item_id | html %]" name="replacementprice_[% biblio.import_record_id | html %]" value="[% item.replacementprice | html %]"> >+ </li> >+ <li> >+ <label for="callnumber_item_[% item.item_id | html %]">callnumber</label> >+ <input type="text" id="callnumber_item_[% item.item_id | html %]" name="itemcallnumber_[% biblio.import_record_id | html %]" value="[% item.itemcallnumber | html %]"> >+ </li> >+ </ol> >+ </fieldset> >+ [% END # /FOREACH item %] >+ </div> <!-- /.item_edit_form --> >+ [% END %] >+ </fieldset> <!-- /.rows.order_details --> > </td> > <td class="actions"> > <a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% biblio.import_record_id | uri %]" class="previewData btn btn-default btn-xs">MARC</a> >@@ -371,55 +373,55 @@ > <p>Import all the checked items in the basket with the following parameters:</p> > > [% IF ( items ) %] >- <div id="cataloguing_additem_newitem"> > <fieldset class="rows" style="float:none;"> > <legend>Item</legend> > [% IF ( NoACQframework ) %] > <div class="dialog message">No ACQ framework, using default. You should create a framework with code ACQ, the items framework would be used</div> > [% END %] >- [% FOREACH item IN items %] >- <div id="outeritemblock"> >- <div id="itemblock"> >- <ol> >- [% FOREACH iteminformatio IN item.iteminformation %] >- <li style="[% iteminformatio.hidden | html %];"> >- <div class="subfield_line" id="subfield[% iteminformatio.serialid | html %][% iteminformatio.countitems | html %][% iteminformatio.subfield | html %][% iteminformatio.random | html %]"> >- [% IF (iteminformatio.mandatory) %] >- <label class="required">[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label> >- [% ELSE %] >- <label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label> >- [% END %] >+ <div class="item_edit_form"> >+ [% FOREACH item IN items %] >+ <div id="outeritemblock"> >+ <div id="itemblock"> >+ <ol> >+ [% FOREACH iteminformatio IN item.iteminformation %] >+ <li style="[% iteminformatio.hidden | html %];"> >+ <div class="subfield_line" id="subfield[% iteminformatio.serialid | html %][% iteminformatio.countitems | html %][% iteminformatio.subfield | html %][% iteminformatio.random | html %]"> >+ [% IF (iteminformatio.mandatory) %] >+ <label class="required">[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label> >+ [% ELSE %] >+ <label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label> >+ [% END %] > >- [% IF ( iteminformatio.marc_value.type == 'select' ) %] >- <select name="field_value" class="input_marceditor"> >- [% FOREACH value IN iteminformatio.marc_value.values %] >- [% IF ( value == iteminformatio.marc_value.default ) %] >- <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option> >- [% ELSE %] >- <option value="[% value | html %]">[% iteminformatio.marc_value.labels.$value | html %]</option> >+ [% IF ( iteminformatio.marc_value.type == 'select' ) %] >+ <select name="field_value" class="input_marceditor"> >+ [% FOREACH value IN iteminformatio.marc_value.values %] >+ [% IF ( value == iteminformatio.marc_value.default ) %] >+ <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option> >+ [% ELSE %] >+ <option value="[% value | html %]">[% iteminformatio.marc_value.labels.$value | html %]</option> >+ [% END %] > [% END %] >- [% END %] >- </select> >- [% ELSE %] >- [% iteminformatio.marc_value | $raw %] >- [% END %] >- <input type="hidden" name="itemid" value="1" /> >- <input type="hidden" name="kohafield" value="[% iteminformatio.kohafield | html %]" /> >- <input type="hidden" name="tag" value="[% iteminformatio.tag | html %]" /> >- <input type="hidden" name="subfield" value="[% iteminformatio.subfield | html %]" /> >- <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory | html %]" /> >- [% IF ( iteminformatio.mandatory ) %] >- <span class="required">Required</span> >- [% END %] >- </div> >- </li> >- [% END %] >- </ol> >- </div><!-- /#itemblock --> >- </div> <!-- /#outeritemblock --> >- [% END #/FOREACH item %] >+ </select> >+ [% ELSE %] >+ [% iteminformatio.marc_value | $raw %] >+ [% END %] >+ <input type="hidden" name="itemid" value="1" /> >+ <input type="hidden" name="kohafield" value="[% iteminformatio.kohafield | html %]" /> >+ <input type="hidden" name="tag" value="[% iteminformatio.tag | html %]" /> >+ <input type="hidden" name="subfield" value="[% iteminformatio.subfield | html %]" /> >+ <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory | html %]" /> >+ [% IF ( iteminformatio.mandatory ) %] >+ <span class="required">Required</span> >+ [% END %] >+ </div> >+ </li> >+ [% END %] >+ </ol> >+ </div><!-- /#itemblock --> >+ </div> <!-- /#outeritemblock --> >+ [% END #/FOREACH item %] >+ </div> <!-- /.item_edit_form --> > </fieldset> >- </div> > [% END # /IF items %] > </div> <!-- /#items_info --> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >index e179b82e34..e9a512c60e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >@@ -150,7 +150,7 @@ > </div> > <div class="col-sm-10"> > >-<div id="cataloguing_additem_newitem"> >+<div id="cataloguing_additem_newitem" class="item_edit_form"> > <form id="f" method="post" action="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblio.biblionumber | html %]" name="f"> > <input type="hidden" name="op" value="[% op | html %]" /> > [% IF (popup) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt >index da88fb0343..48fe33da09 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt >@@ -143,7 +143,7 @@ > [% END %] > > [% IF ( itemresults ) %] >- <div id="cataloguing_additem_newitem"> >+ <div id="cataloguing_additem_newitem" class="item_edit_form"> > <input type="hidden" name="op" value="[% op | html %]" /> > <p>This will delete [% IF ( too_many_items_display ) %]all the[% ELSE %]the selected[% END %] items.</p> > <input type="hidden" name="del" value="1" /> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt >index e1dbacec60..0b5299a7e9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt >@@ -172,7 +172,7 @@ > [% END # /IF too_many_items_process %] > > [% UNLESS (too_many_items_process) %] >- <div id="cataloguing_additem_newitem"> >+ <div id="cataloguing_additem_newitem" class="item_edit_form"> > <h2>Edit items</h2> > <div class="hint">Checking the box right next to the subfield label will disable the entry and delete the subfield on all selected items. Leave fields blank to make no change.</div> > <fieldset class="rows"> >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32046
:
143258
|
143952
|
143956
|
143958
|
143996
|
143997
|
144022
|
144023
|
144027
|
144028
|
144052
|
144053
|
144193
|
144194