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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1915-1920 modules: Link Here
1915
                    columnname: expires_on
1915
                    columnname: expires_on
1916
                -
1916
                -
1917
                    columnname: pick up_location
1917
                    columnname: pick up_location
1918
                -
1919
                    columnname: priority
1918
1920
1919
        print-summary-fines:
1921
        print-summary-fines:
1920
            columns:
1922
            columns:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (+2 lines)
Lines 121-126 Link Here
121
                    <th>Placed on</th>
121
                    <th>Placed on</th>
122
                    <th>Expires on</th>
122
                    <th>Expires on</th>
123
                    <th>Pick up location</th>
123
                    <th>Pick up location</th>
124
                    <th>Hold priority</th>
124
                </tr>
125
                </tr>
125
            </thead>
126
            </thead>
126
            <tbody>
127
            <tbody>
Lines 131-136 Link Here
131
                        <td>[% reserve.reservedate | $KohaDates %]</td>
132
                        <td>[% reserve.reservedate | $KohaDates %]</td>
132
                        <td>[% reserve.expirationdate | $KohaDates %]</td>
133
                        <td>[% reserve.expirationdate | $KohaDates %]</td>
133
                        <td>[% reserve.waiting_at | html %]</td>
134
                        <td>[% reserve.waiting_at | html %]</td>
135
                        <td>[% reserve.priority | html %]</td>
134
                    </tr>
136
                    </tr>
135
                [% END %]
137
                [% END %]
136
            </tbody>
138
            </tbody>
(-)a/members/summary-print.pl (-1 / +1 lines)
Lines 118-123 sub build_reserve_data { Link Here
118
            reservedate    => $reserve->reservedate(),
118
            reservedate    => $reserve->reservedate(),
119
            expirationdate => $reserve->expirationdate(),
119
            expirationdate => $reserve->expirationdate(),
120
            waiting_at     => $reserve->branch()->branchname(),
120
            waiting_at     => $reserve->branch()->branchname(),
121
            priority       => $reserve->priority,
121
        };
122
        };
122
123
123
        push( @{$return}, $row );
124
        push( @{$return}, $row );
124
- 

Return to bug 36476