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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc (+1 lines)
Lines 31-36 Link Here
31
    var HOLD_IS_SUSPENDED = _("Hold is <strong>suspended</strong>");
31
    var HOLD_IS_SUSPENDED = _("Hold is <strong>suspended</strong>");
32
    var UNTIL = _("until %s");
32
    var UNTIL = _("until %s");
33
    var NEXT_AVAILABLE_ITYPE = _("Next available %s item");
33
    var NEXT_AVAILABLE_ITYPE = _("Next available %s item");
34
    var NEXT_AVAILABLE_VOLUME = _("Next available volume <strong>%s</strong> item");
34
    var ITEM_IS_WAITING = _("Item is <strong>waiting</strong>");
35
    var ITEM_IS_WAITING = _("Item is <strong>waiting</strong>");
35
    var ITEM_IS_WAITING_HERE = _("Item is <strong>waiting here</strong>");
36
    var ITEM_IS_WAITING_HERE = _("Item is <strong>waiting here</strong>");
36
    var AT = _("at %s");
37
    var AT = _("at %s");
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (+4 lines)
Lines 153-158 $(document).ready(function() { Link Here
153
                                data += NEXT_AVAILABLE_ITYPE.format( oObj.itemtype_limit );
153
                                data += NEXT_AVAILABLE_ITYPE.format( oObj.itemtype_limit );
154
                            }
154
                            }
155
155
156
                            if ( oObj.volume_id ) {
157
                                data += NEXT_AVAILABLE_VOLUME.format( oObj.volume_description );
158
                            }
159
156
                            if ( oObj.barcode ) {
160
                            if ( oObj.barcode ) {
157
                                data += "<em>";
161
                                data += "<em>";
158
                                if ( oObj.found == "W" ) {
162
                                if ( oObj.found == "W" ) {
(-)a/svc/holds (-1 / +6 lines)
Lines 69-74 my $holds_rs = Koha::Holds->search( Link Here
69
my @holds;
69
my @holds;
70
while ( my $h = $holds_rs->next() ) {
70
while ( my $h = $holds_rs->next() ) {
71
    my $item = $h->item();
71
    my $item = $h->item();
72
    my $volume = $h->volume();
72
73
73
    my $biblionumber = $h->biblio()->biblionumber();
74
    my $biblionumber = $h->biblio()->biblionumber();
74
75
Lines 147-152 while ( my $h = $holds_rs->next() ) { Link Here
147
        }
148
        }
148
    }
149
    }
149
150
151
    if ($volume) {
152
        $hold->{volume_id}          = $volume->id;
153
        $hold->{volume_description} = $volume->description;
154
    }
155
150
    push( @holds, $hold );
156
    push( @holds, $hold );
151
}
157
}
152
158
153
- 

Return to bug 24860