View | Details | Raw Unified | Return to bug 11648
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/cataloguing/additem.tt (-1 / +1 lines)
Lines 31-37 Link Here
31
<ul>
31
<ul>
32
    <li>'Add item' will add just the one item</li>
32
    <li>'Add item' will add just the one item</li>
33
    <li>'Add &amp; duplicate' will add the item and fill in a new form with the same values for your to alter</li>
33
    <li>'Add &amp; duplicate' will add the item and fill in a new form with the same values for your to alter</li>
34
    <li>'Add multiple copies' will ask how many copies and will then add that number of copies adding +1 to the barcode so each barcode is unique</li>
34
    <li>'Add multiple items' will ask how many items and will then add that number of items adding +1 to the barcode so each barcode is unique</li>
35
</ul>
35
</ul>
36
36
37
<p>Your added items will appear above the add form once submitted</p>
37
<p>Your added items will appear above the add form once submitted</p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-4 / +4 lines)
Lines 243-249 function checkMultiHold() { Link Here
243
          <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>already has a hold</strong> on this item </li>
243
          <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>already has a hold</strong> on this item </li>
244
        [% END %]
244
        [% END %]
245
        [% IF ( none_available ) %]
245
        [% IF ( none_available ) %]
246
          <li> <strong>No copies are available</strong> to be placed on hold</li>
246
          <li> <strong>No items are available</strong> to be placed on hold</li>
247
        [% END %]
247
        [% END %]
248
        [% IF ( alreadypossession ) %]
248
        [% IF ( alreadypossession ) %]
249
          <li> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>is already in possession</strong> of one item</li>
249
          <li> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>is already in possession</strong> of one item</li>
Lines 344-350 function checkMultiHold() { Link Here
344
	</li>
344
	</li>
345
345
346
        [% UNLESS ( multi_hold ) %]
346
        [% UNLESS ( multi_hold ) %]
347
          <li> <label for="requestany">Place a hold on the next available copy </label>
347
          <li> <label for="requestany">Place a hold on the next available item </label>
348
               <input type="checkbox" id="requestany" name="request" checked="checked" value="Any" />
348
               <input type="checkbox" id="requestany" name="request" checked="checked" value="Any" />
349
               <input type="hidden" name="biblioitem" value="[% biblioitemnumber %]" />
349
               <input type="hidden" name="biblioitem" value="[% biblioitemnumber %]" />
350
               <input type="hidden" name="alreadyreserved" value="[% alreadyreserved %]" />
350
               <input type="hidden" name="alreadyreserved" value="[% alreadyreserved %]" />
Lines 374-380 function checkMultiHold() { Link Here
374
          </ol>
374
          </ol>
375
375
376
        <table id="requestspecific">
376
        <table id="requestspecific">
377
        <caption>Place a hold on a specific copy</caption>
377
        <caption>Place a hold on a specific item</caption>
378
		<tr>
378
		<tr>
379
            <th>Hold</th>
379
            <th>Hold</th>
380
            [% IF ( item_level_itypes ) %]
380
            [% IF ( item_level_itypes ) %]
Lines 523-529 function checkMultiHold() { Link Here
523
              <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>already has a hold</strong> on this item </li>
523
              <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>already has a hold</strong> on this item </li>
524
          [% END %]
524
          [% END %]
525
          [% IF ( biblioloo.none_avail ) %]
525
          [% IF ( biblioloo.none_avail ) %]
526
              <li> <strong>No copies are available</strong> to be placed on hold</li>
526
              <li> <strong>No items are available</strong> to be placed on hold</li>
527
          [% END %]
527
          [% END %]
528
528
529
            [% IF ( biblioloo.alreadyres ) %]
529
            [% IF ( biblioloo.alreadyres ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-2 / +1 lines)
Lines 171-177 $(document).ready(function(){ Link Here
171
        <li><label for="datelastseen">Inventory date:</label>
171
        <li><label for="datelastseen">Inventory date:</label>
172
            <input type="text" id="datelastseen" name="datelastseen" value="[% datelastseen | $KohaDates %]" class="datepickerfrom" />
172
            <input type="text" id="datelastseen" name="datelastseen" value="[% datelastseen | $KohaDates %]" class="datepickerfrom" />
173
        </li>
173
        </li>
174
        <li><label for="ignoreissued">Skip copies on loan: </label>
174
        <li><label for="ignoreissued">Skip items on loan: </label>
175
            [% IF (ignoreissued) %]
175
            [% IF (ignoreissued) %]
176
            <input type="checkbox" id="ignoreissued" name="ignoreissued" checked="checked" /></li>
176
            <input type="checkbox" id="ignoreissued" name="ignoreissued" checked="checked" /></li>
177
            [% ELSE %]
177
            [% ELSE %]
178
- 

Return to bug 11648