a8e5d9ab9f
This adds the items.copynumber to the checkouts table in the patron account in the staff interface. To test: - Apply patch - Check out some items with and without copy number in the item to any patron - In the checkouts table on the Checkouts and Details tabs: - Verify that a new column shows 'copy no' shows after 'call no' - Verify the information displays correctly - Verify that the column configuration settings for the new column works Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
19 lines
971 B
HTML
19 lines
971 B
HTML
<tfoot>
|
|
<tr>
|
|
<td colspan="15" style="text-align: right; font-weight:bold;">Totals:</td>
|
|
<td id="totaldue" style="text-align: right;"></td>
|
|
<td id="totalfine" style="text-align: right;"></td>
|
|
<td id="totalprice" style="text-align: right;"></td>
|
|
[% IF Koha.Preference('ExportCircHistory') %]
|
|
<td colspan="4">
|
|
[% ELSE %]
|
|
<td colspan="3">
|
|
[% END %]
|
|
<div class="date-select">
|
|
<p><label for="newduedate">Renewal due date:</label> <input type="text" size="12" id="newduedate" name="newduedate" value="" /></p>
|
|
<p id="newonholdduedate"><label for="newonholdduedate">On hold due date:</label> <input type="text" size="12" name="newonholdduedate" value="" /></p>
|
|
<p><label for="exemptfine">Forgive fines on return:</label> <input type="checkbox" id="exemptfine" name="exemptfine" value="1" /></p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|