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

(-)a/C4/XSLT.pm (-2 / +3 lines)
Lines 352-358 sub buildKohaItemsNamespace { Link Here
352
352
353
        if ( $recalls->count ) {
353
        if ( $recalls->count ) {
354
            # recalls take priority over holds
354
            # recalls take priority over holds
355
            $status = 'Waiting';
355
            $status = 'other';
356
            $substatus = 'Recall waiting';
356
        }
357
        }
357
        elsif ( $item->has_pending_hold ) {
358
        elsif ( $item->has_pending_hold ) {
358
            $status = 'other';
359
            $status = 'other';
Lines 360-366 sub buildKohaItemsNamespace { Link Here
360
        }
361
        }
361
        elsif ( $item->holds->waiting->count ) {
362
        elsif ( $item->holds->waiting->count ) {
362
            $status = 'other';
363
            $status = 'other';
363
            $substatus = 'Waiting';
364
            $substatus = 'Hold waiting';
364
        }
365
        }
365
        elsif ($item->get_transfer) {
366
        elsif ($item->get_transfer) {
366
            $status = 'other';
367
            $status = 'other';
(-)a/Koha/Recall.pm (-1 / +1 lines)
Lines 20-26 package Koha::Recall; Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Koha::Database;
22
use Koha::Database;
23
use Koha::DateUtils;
23
use Koha::DateUtils qw( dt_from_string );
24
use Koha::Patron;
24
use Koha::Patron;
25
use Koha::Biblio;
25
use Koha::Biblio;
26
use Koha::Item;
26
use Koha::Item;
(-)a/Koha/Recalls.pm (-1 / +1 lines)
Lines 21-27 use Modern::Perl; Link Here
21
21
22
use Koha::Database;
22
use Koha::Database;
23
use Koha::Recall;
23
use Koha::Recall;
24
use Koha::DateUtils;
24
use Koha::DateUtils qw( dt_from_string );
25
25
26
use C4::Stats qw( UpdateStats );
26
use C4::Stats qw( UpdateStats );
27
27
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +2 lines)
Lines 1281-1286 Circulation: Link Here
1281
        -
1281
        -
1282
            - pref: UseRecalls
1282
            - pref: UseRecalls
1283
              choices:
1283
              choices:
1284
                  yes: Use
1284
                  1: Use
1285
                  no: "Don't use"
1285
                  0: "Don't use"
1286
            - recalls. Make sure you configure <a href="/cgi-bin/koha/admin/smart-rules.pl">circulation and fines rules</a> for recalls once enabled.
1286
            - recalls. Make sure you configure <a href="/cgi-bin/koha/admin/smart-rules.pl">circulation and fines rules</a> for recalls once enabled.
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/logs.pref (-3 / +2 lines)
Lines 111-118 Logging: Link Here
111
        -
111
        -
112
            - pref: RecallsLog
112
            - pref: RecallsLog
113
              choices:
113
              choices:
114
                  on: Log
114
                  1: Log
115
                  off: "Don't log"
115
                  0: "Don't log"
116
            - any actions on recalls (create, cancel, expire, fulfill).
116
            - any actions on recalls (create, cancel, expire, fulfill).
117
117
118
    Debugging:
118
    Debugging:
119
- 

Return to bug 19532