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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +14 lines)
Lines 718-724 No patron matched <span class="ex">[% message %]</span> Link Here
718
                <span class="renewals-disabled">
718
                <span class="renewals-disabled">
719
            [% END %]
719
            [% END %]
720
		[% IF ( todayissue.renew_error_on_reserve ) %]
720
		[% IF ( todayissue.renew_error_on_reserve ) %]
721
			On Hold
721
			<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% todayissue.biblionumber %]">On Hold</a>
722
		[% END %]
722
		[% END %]
723
                [% IF ( todayissue.renew_error_too_many ) %]
723
                [% IF ( todayissue.renew_error_too_many ) %]
724
			Not Renewable
724
			Not Renewable
Lines 732-740 No patron matched <span class="ex">[% message %]</span> Link Here
732
  [% IF ( todayissue.return_failed ) %]
732
  [% IF ( todayissue.return_failed ) %]
733
            <td class="problem">Checkin Failed</td>
733
            <td class="problem">Checkin Failed</td>
734
      [% ELSE %]
734
      [% ELSE %]
735
            [% IF ( todayissue.renew_error_on_reserve ) %]
736
               <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% todayissue.biblionumber %]">On Hold</a>
737
                <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" />
738
                </td>
739
            [% ELSE %]
735
            <td><input type="checkbox" class="radio" name="barcodes[]"  value="[% todayissue.barcode %]" />
740
            <td><input type="checkbox" class="radio" name="barcodes[]"  value="[% todayissue.barcode %]" />
736
                <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" />
741
                <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" />
737
            </td>
742
            </td>
743
            [% END %]
738
      [% END %]
744
      [% END %]
739
    </tr>
745
    </tr>
740
    [% END %] <!-- /loop todayissues -->
746
    [% END %] <!-- /loop todayissues -->
Lines 786-792 No patron matched <span class="ex">[% message %]</span> Link Here
786
                <span class="renewals-disabled">
792
                <span class="renewals-disabled">
787
            [% END %]
793
            [% END %]
788
		[% IF ( previssue.renew_error_on_reserve ) %]
794
		[% IF ( previssue.renew_error_on_reserve ) %]
789
			On Hold
795
			<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% previssue.biblionumber %]">On Hold</a>
790
		[% END %]
796
		[% END %]
791
                [% IF ( previssue.renew_error_too_many ) %]
797
                [% IF ( previssue.renew_error_too_many ) %]
792
			Not Renewable
798
			Not Renewable
Lines 800-808 No patron matched <span class="ex">[% message %]</span> Link Here
800
		  [% IF ( previssue.return_failed ) %]
806
		  [% IF ( previssue.return_failed ) %]
801
            <td class="problem">Checkin Failed</td>
807
            <td class="problem">Checkin Failed</td>
802
        [% ELSE %]
808
        [% ELSE %]
809
            [% IF ( previssue.renew_error_on_reserve ) %]
810
               <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% previssue.biblionumber %]">On Hold</a>
811
                <input type="checkbox" name="all_barcodes[]" value="[% previssue.barcode %]" checked="checked" style="display: none;" />
812
                </td>
813
            [% ELSE %]
803
            <td><input type="checkbox" class="radio" name="barcodes[]"  value="[% previssue.barcode %]" />
814
            <td><input type="checkbox" class="radio" name="barcodes[]"  value="[% previssue.barcode %]" />
804
                <input type="checkbox" name="all_barcodes[]" value="[% previssue.barcode %]" checked="checked" style="display: none;" />
815
                <input type="checkbox" name="all_barcodes[]" value="[% previssue.barcode %]" checked="checked" style="display: none;" />
805
            </td>
816
            </td>
817
            [% END %]
806
      [% END %]
818
      [% END %]
807
    </tr>
819
    </tr>
808
    <!-- /loop previssues -->[% END %]
820
    <!-- /loop previssues -->[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +4 lines)
Lines 493-501 function validate1(date) { Link Here
493
      [% IF ( issueloo.return_failed ) %]
493
      [% IF ( issueloo.return_failed ) %]
494
            <td class="problem">Checkin Failed</td>
494
            <td class="problem">Checkin Failed</td>
495
      [% ELSE %]
495
      [% ELSE %]
496
        [% IF ( issueloo.norenew_reason_on_reserve ) %]
497
            <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% issueloo.biblionumber %]">On Hold</a></td>
498
        [% ELSE %]
496
            <td><input type="checkbox" name="barcodes[]"  value="[% issueloo.barcode %]" onclick="uncheck_sibling(this);" />
499
            <td><input type="checkbox" name="barcodes[]"  value="[% issueloo.barcode %]" onclick="uncheck_sibling(this);" />
497
                <input type="checkbox" name="all_barcodes[]" value="[% issueloo.barcode %]" checked="checked" style="display: none;" />
500
                <input type="checkbox" name="all_barcodes[]" value="[% issueloo.barcode %]" checked="checked" style="display: none;" />
498
            </td>
501
            </td>
502
        [% END %]
499
      [% END %]
503
      [% END %]
500
        </tr>
504
        </tr>
501
  [% END %]
505
  [% END %]
502
- 

Return to bug 3514