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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-detail-tabs.inc (+1 lines)
Lines 150-155 Link Here
150
                                    <th>Pickup at</th>
150
                                    <th>Pickup at</th>
151
                                    <th>Expiration</th>
151
                                    <th>Expiration</th>
152
                                    <th>Priority</th>
152
                                    <th>Priority</th>
153
                                    <th>Notes</th>
153
                                    <th>Delete?</th>
154
                                    <th>Delete?</th>
154
                                    <th>Suspend?</th>
155
                                    <th>Suspend?</th>
155
                                    <th>Status</th>
156
                                    <th>Status</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (+1 lines)
Lines 233-238 $(document).ready(function() { Link Here
233
                            }
233
                            }
234
                        }
234
                        }
235
                    },
235
                    },
236
                    { "data": "reservenotes" },
236
                    {
237
                    {
237
                        "bSortable": false,
238
                        "bSortable": false,
238
                        "mDataProp": function( oObj ) {
239
                        "mDataProp": function( oObj ) {
(-)a/svc/holds (-1 / +1 lines)
Lines 113-118 while ( my $h = $holds_rs->next() ) { Link Here
113
        waiting_at     => $h->branch()->branchname(),
113
        waiting_at     => $h->branch()->branchname(),
114
        waiting_here   => $h->branch()->branchcode() eq $branch,
114
        waiting_here   => $h->branch()->branchcode() eq $branch,
115
        priority       => $h->priority(),
115
        priority       => $h->priority(),
116
        reservenotes   => $h->reservenotes(),
116
        itemtype_limit => $itemtype_limit,
117
        itemtype_limit => $itemtype_limit,
117
        reservedate_formatted => $h->reservedate() ? output_pref(
118
        reservedate_formatted => $h->reservedate() ? output_pref(
118
            { dt => dt_from_string( $h->reservedate() ), dateonly => 1 }
119
            { dt => dt_from_string( $h->reservedate() ), dateonly => 1 }
119
- 

Return to bug 33845