ce6ba9aac9
Test plan: 1. Verify that biblioitems.itemtype, items.itype are mapped to a MARC field. Otherwise create those mappings. 2. Create a biblio with an itemtype 3. Create an item with a different itemtype for this biblio 4. Check out this item to a patron (P1) 5. Verify that both itemtypes are displayed in the checkouts table (moremember.pl, circulation.pl, returns.pl) 6. Create a patron whose guarantor is P1 and verify that both itemtypes and the ccode are displayed in the 'relatives checkouts' table Followed test plan, patch worked as described, also passes QA test tool Signed-off-by: Alex Buckley <alexbuckley@catalyst.net.nz> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
[% USE Koha %]
|
|
[% IF ( relatives_issues_count ) %]
|
|
<div id="relatives-issues">
|
|
<table id="relatives-issues-table" style="width: 100% !Important;">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Due date (unformatted, hidden)</th>
|
|
<th scope="col">Due date</th>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Record-level item type</th>
|
|
<th scope="col">Item type</th>
|
|
<th scope="col">Collection code</th>
|
|
<th scope="col">Location</th>
|
|
<th scope="col">Checked out on (hidden, unformatted)</th>
|
|
<th scope="col">Checked out on</th>
|
|
<th scope="col">Checked out from</th>
|
|
<th scope="col">Call no</th>
|
|
<th scope="col">Charge</th>
|
|
<th scope="col">Fine</th>
|
|
<th scope="col">Price</th>
|
|
<th scope="col">Patron</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
[% END %]
|