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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 917-922 Link Here
917
                                                <th>Pickup at</th>
917
                                                <th>Pickup at</th>
918
                                                <th>Expiration</th>
918
                                                <th>Expiration</th>
919
                                                <th>Priority</th>
919
                                                <th>Priority</th>
920
                                                <th>Notes</th>
920
                                                <th>Cancel?</th>
921
                                                <th>Cancel?</th>
921
                                                <th>Suspend?</th>
922
                                                <th>Suspend?</th>
922
                                                <th>Status</th>
923
                                                <th>Status</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 797-802 Link Here
797
                                                        <th>Pickup at</th>
797
                                                        <th>Pickup at</th>
798
                                                        <th>Expiration</th>
798
                                                        <th>Expiration</th>
799
                                                        <th>Priority</th>
799
                                                        <th>Priority</th>
800
                                                        <th>Notes</th>
800
                                                        <th>Delete?</th>
801
                                                        <th>Delete?</th>
801
                                                        <th>Suspend?</th>
802
                                                        <th>Suspend?</th>
802
                                                        <th>Status</th>
803
                                                        <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