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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-1 / +7 lines)
Lines 2313-2318 td.bundle { Link Here
2313
    color: #669900;
2313
    color: #669900;
2314
}
2314
}
2315
2315
2316
#holdings_table {
2317
    .holding_status {
2318
        display: block;
2319
    }
2320
}
2321
2316
#mainuserblock {
2322
#mainuserblock {
2317
    border: 1px solid #E8E8E8;
2323
    border: 1px solid #E8E8E8;
2318
    margin-top: .5em;
2324
    margin-top: .5em;
Lines 4895-4898 div .suggestion_note { Link Here
4895
            display: block;
4901
            display: block;
4896
        }
4902
        }
4897
    }
4903
    }
4898
}
4904
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-18 / +17 lines)
Lines 487-493 Link Here
487
                                let patron_to_html = $patron_to_html(row.checkout.patron, { url: true, display_cardnumber: true, hide_patron_name });
487
                                let patron_to_html = $patron_to_html(row.checkout.patron, { url: true, display_cardnumber: true, hide_patron_name });
488
                                nodes += _("Currently in local use by %s").format(patron_to_html);
488
                                nodes += _("Currently in local use by %s").format(patron_to_html);
489
                            } else {
489
                            } else {
490
                                nodes += '<span class="datedue">';
490
                                nodes += '<span class="holding_status datedue">';
491
                                let patron_to_html = $patron_to_html(row.checkout.patron, { url: true, display_cardnumber: true, hide_patron_name });
491
                                let patron_to_html = $patron_to_html(row.checkout.patron, { url: true, display_cardnumber: true, hide_patron_name });
492
                                nodes += _("Checked out to %s").format(patron_to_html);
492
                                nodes += _("Checked out to %s").format(patron_to_html);
493
                            }
493
                            }
Lines 496-539 Link Here
496
                            nodes += "</span>"
496
                            nodes += "</span>"
497
                        } else if ( row.transfer ) {
497
                        } else if ( row.transfer ) {
498
                            if ( row.transfer.datesent ) {
498
                            if ( row.transfer.datesent ) {
499
                                nodes += '<span class="intransit">%s</span>'.format(_("In transit from %s to %s since %s").format(escape_str(row.transfer._strings.from_library.str), escape_str(row.transfer._strings.to_library.str), $date(row.transfer.datesent)));
499
                                nodes += '<span class="holding_status intransit">%s</span>'.format(_("In transit from %s to %s since %s").format(escape_str(row.transfer._strings.from_library.str), escape_str(row.transfer._strings.to_library.str), $date(row.transfer.datesent)));
500
                            } else {
500
                            } else {
501
                                nodes += '<span class="transitrequested">%s</span>'.format(_("Transit pending from %s to %s since %s").format(escape_str(row.transfer._strings.from_library.str), escape_str(row.transfer._strings.to_library.str), $date(row.transfer.daterequested)));
501
                                nodes += '<span class="holding_status transitrequested">%s</span>'.format(_("Transit pending from %s to %s since %s").format(escape_str(row.transfer._strings.from_library.str), escape_str(row.transfer._strings.to_library.str), $date(row.transfer.daterequested)));
502
                            }
502
                            }
503
                        }
503
                        }
504
504
505
                        if ( row.lost_status ) {
505
                        if ( row.lost_status ) {
506
                            let lost_lib = av_lost.get(row.lost_status.toString()) || _("Unavailable (lost or missing");
506
                            let lost_lib = av_lost.get(row.lost_status.toString()) || _("Unavailable (lost or missing");
507
                            nodes += '<span class="lost">%s</span>'.format(escape_str(lost_lib));
507
                            nodes += '<span class="holding_status lost">%s</span>'.format(escape_str(lost_lib));
508
                            [% IF Koha.Preference('ClaimReturnedLostValue') %]
508
                            [% IF Koha.Preference('ClaimReturnedLostValue') %]
509
                                const hasReturnClaims = row.return_claims.filter(rc => !rc.resolution).length > 0 ? true : false
509
                                const hasReturnClaims = row.return_claims.filter(rc => !rc.resolution).length > 0 ? true : false
510
                                if(hasReturnClaims) {
510
                                if(hasReturnClaims) {
511
                                    nodes += '<span class="claimed_returned">' + _("(Claimed returned)") + '</span>';
511
                                    nodes += '<span class="holding_status claimed_returned">' + _("(Claimed returned)") + '</span>';
512
                                }
512
                                }
513
                            [% END %]
513
                            [% END %]
514
                        }
514
                        }
515
515
516
                        if ( row.withdrawn ) {
516
                        if ( row.withdrawn ) {
517
                            let withdrawn_lib = av_withdrawn.get(row.withdrawn.toString()) || _("Withdrawn");
517
                            let withdrawn_lib = av_withdrawn.get(row.withdrawn.toString()) || _("Withdrawn");
518
                            nodes += '<span class="wdn">%s</span>'.format(escape_str(withdrawn_lib));
518
                            nodes += '<span class="holding_status wdn">%s</span>'.format(escape_str(withdrawn_lib));
519
                        }
519
                        }
520
520
521
                        if ( row.damaged_status ) {
521
                        if ( row.damaged_status ) {
522
                            let damaged_lib = av_damaged.get(row.damaged_status.toString()) || _("Damaged");
522
                            let damaged_lib = av_damaged.get(row.damaged_status.toString()) || _("Damaged");
523
                            nodes += '<span class="dmg">%s</span>'.format(escape_str(damaged_lib));
523
                            nodes += '<span class="holding_status dmg">%s</span>'.format(escape_str(damaged_lib));
524
                        }
524
                        }
525
525
526
                        if ( row.not_for_loan_status || item_types_notforloan.get(row.item_type_id) ) {
526
                        if ( row.not_for_loan_status || item_types_notforloan.get(row.item_type_id) ) {
527
                            let not_for_loan_lib = av_not_for_loan.get(row.not_for_loan_status.toString());
527
                            let not_for_loan_lib = av_not_for_loan.get(row.not_for_loan_status.toString());
528
                            nodes += '<span class="notforloan">%s'.format(_("Not for loan")) + ( not_for_loan_lib ? '<span class="reason"> (%s)</span>'.format(escape_str(not_for_loan_lib)) : '' ) + '</span>';
528
                            nodes += '<span class="holding_status notforloan">%s'.format(_("Not for loan")) + ( not_for_loan_lib ? '<span class="reason"> (%s)</span>'.format(escape_str(not_for_loan_lib)) : '' ) + '</span>';
529
                        }
529
                        }
530
530
531
                        if ( row.first_hold ) {
531
                        if ( row.first_hold ) {
532
                            if ( row.first_hold.waiting_date ) {
532
                            if ( row.first_hold.waiting_date ) {
533
                                if ( row.first_hold.desk ) {
533
                                if ( row.first_hold.desk ) {
534
                                    nodes += '<span class="waitingat">%s</span>'.format(_("Waiting at %s, %s since %s.").format(row.first_hold._strings.pickup_library_id.str, row.first_hold.desk.desk_name, $date(row.first_hold.waiting_date)));
534
                                    nodes += '<span class="holding_status waitingat">%s</span>'.format(_("Waiting at %s, %s since %s.").format(row.first_hold._strings.pickup_library_id.str, row.first_hold.desk.desk_name, $date(row.first_hold.waiting_date)));
535
                                } else {
535
                                } else {
536
                                    nodes += '<span class="waitingat">%s</span>'.format(_("Waiting at %s since %s.").format(row.first_hold._strings.pickup_library_id.str, $date(row.first_hold.waiting_date)));
536
                                    nodes += '<span class="holding_status waitingat">%s</span>'.format(_("Waiting at %s since %s.").format(row.first_hold._strings.pickup_library_id.str, $date(row.first_hold.waiting_date)));
537
                                }
537
                                }
538
                                [% IF Koha.Preference('canreservefromotherbranches') %]
538
                                [% IF Koha.Preference('canreservefromotherbranches') %]
539
                                    if ( row.first_hold.waiting_date || row.first_hold.priority == 1 ) {
539
                                    if ( row.first_hold.waiting_date || row.first_hold.priority == 1 ) {
Lines 541-578 Link Here
541
                                        row.first_hold.patron.library = { name: libraries_names.get(row.first_hold.patron.library_id) };
541
                                        row.first_hold.patron.library = { name: libraries_names.get(row.first_hold.patron.library_id) };
542
542
543
                                        let patron_to_html = $patron_to_html(row.first_hold.patron, { url: true, display_cardnumber: true, hide_patron_name });
543
                                        let patron_to_html = $patron_to_html(row.first_hold.patron, { url: true, display_cardnumber: true, hide_patron_name });
544
                                        nodes += ' <span class="heldfor">%s</span>'.format(_("Hold for: %s").format(patron_to_html));
544
                                        nodes += ' <span class="holding_status heldfor">%s</span>'.format(_("Hold for: %s").format(patron_to_html));
545
                                    }
545
                                    }
546
                                [% END %]
546
                                [% END %]
547
                            } else {
547
                            } else {
548
                                nodes += ' <span class="holdonitem">%s</span>'.format(_("There is an item level hold on this item (priority = %s).").format(row.first_hold.priority));
548
                                nodes += ' <span class="holding_status holdonitem">%s</span>'.format(_("There is an item level hold on this item (priority = %s).").format(row.first_hold.priority));
549
                            }
549
                            }
550
                        }
550
                        }
551
551
552
                        [% IF Koha.Preference('UseRecalls') %]
552
                        [% IF Koha.Preference('UseRecalls') %]
553
                            if ( row.recall && ( row.item_id === row.recall.item_id ) ) {
553
                            if ( row.recall && ( row.item_id === row.recall.item_id ) ) {
554
                                if ( row.recall.waiting_date ) {
554
                                if ( row.recall.waiting_date ) {
555
                                    nodes += '<span>%s</span>'.format(_("Waiting recall at %s since %s").format(escape_str(row.recall._strings.pickup_library_id.str), $date(row.recall.waiting_date)));
555
                                    nodes += '<span class="holding_status recallwaiting">%s</span>'.format(_("Waiting recall at %s since %s").format(escape_str(row.recall._strings.pickup_library_id.str), $date(row.recall.waiting_date)));
556
                                } else {
556
                                } else {
557
                                    [%# Hacky for patron_to_html in case we simply want to display the patron's library name %]
557
                                    [%# Hacky for patron_to_html in case we simply want to display the patron's library name %]
558
                                    row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) };
558
                                    row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) };
559
559
560
                                    let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name });
560
                                    let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name });
561
                                    nodes += '<span>%s</span>'.format(_("Recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date)))
561
                                    nodes += '<span class="holding_status recalledby">%s</span>'.format(_("Recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date)))
562
                                }
562
                                }
563
                            }
563
                            }
564
                        [% END %]
564
                        [% END %]
565
565
566
                        if ( ! ( row.not_for_loan_status || item_types_notforloan.get(row.item_type_id) || row.checked_out_date || row.lost_status || row.withdrawn || row.damaged_status || row.transfer || row.first_hold || ( row.recall && ( row.item_id === row.recall.item_id ) ) )) {
566
                        if ( ! ( row.not_for_loan_status || item_types_notforloan.get(row.item_type_id) || row.checked_out_date || row.lost_status || row.withdrawn || row.damaged_status || row.transfer || row.first_hold || ( row.recall && ( row.item_id === row.recall.item_id ) ) )) {
567
                            nodes += ' <span>%s</span>'.format(_("Available"))
567
                            nodes += ' <span class="holding_status available">%s</span>'.format(_("Available"))
568
                        }
568
                        }
569
569
570
                        if ( row.restricted_status ) {
570
                        if ( row.restricted_status ) {
571
                            nodes += '<span class="restricted">(%s)</span>'.format(escape_str(av_restricted.get(row.restricted_status.toString())));
571
                            nodes += '<span class="holding_status restricted">(%s)</span>'.format(escape_str(av_restricted.get(row.restricted_status.toString())));
572
                        }
572
                        }
573
573
574
                        if ( row.in_bundle ) {
574
                        if ( row.in_bundle ) {
575
                            nodes += '<span class="bundled">%s</span>'.format(_("In bundle: %s").format($biblio_to_html(row.bundle_host.biblio, { link: true })));
575
                            nodes += '<span class="holding_status bundled">%s</span>'.format(_("In bundle: %s").format($biblio_to_html(row.bundle_host.biblio, { link: true })));
576
                        }
576
                        }
577
                        return nodes;
577
                        return nodes;
578
                    }
578
                    }
579
- 

Return to bug 38767