Pedro Amorim
a5dbafec5b
- Add batch column to requests table - Establish if there are any availability or metadata enrichment plugins and pass that to the template - Verify if we have any backend that can support batches, if not, don't show the option - Updates to the ILL toolbar - New ILL batch modal - New Koha classes - API specs Co-authored-by: Andrew Isherwood <andrew.isherwood@ptfs-europe.com> Signed-off-by: Edith Speller <Edith.Speller@ukhsa.gov.uk> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
41 lines
No EOL
2.8 KiB
HTML
41 lines
No EOL
2.8 KiB
HTML
[% IF patron.borrowernumber %]
|
|
<table id="ill-requests-patron-[% patron.borrowernumber | html %]">
|
|
[% ELSIF batch.id %]
|
|
<table id="ill-requests-batch-[% batch.id | html %]">
|
|
[% ELSE %]
|
|
<table id="ill-requests">
|
|
[% END %]
|
|
<thead>
|
|
<tr id="ill_requests_header">
|
|
<th scope="col">Request ID</th>
|
|
<th scope="col">Batch</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="author" data-related-search-on="value">Author</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="title" data-related-search-on="value">Title</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="article_title" data-related-search-on="value">Article title</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="issue" data-related-search-on="value">Issue</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="volume" data-related-search-on="value">Volume</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="year" data-related-search-on="value">Year</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="pages" data-related-search-on="value">Pages</th>
|
|
<th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="type" data-related-search-on="value">Request type</th>
|
|
<th scope="col">Order ID</th>
|
|
<th scope="col">Patron</th>
|
|
<th scope="col">Bibliographic record ID</th>
|
|
<th scope="col">Library</th>
|
|
<th scope="col">Status</th>
|
|
<th scope="col" class="placed_formatted">Placed on</th>
|
|
<th scope="col" class="updated_formatted">Updated on</th>
|
|
<th scope="col">Replied</th>
|
|
<th scope="col" class="completed_formatted">Completed on</th>
|
|
<th scope="col">Access URL</th>
|
|
<th scope="col">Cost</th>
|
|
<th scope="col">Price paid</th>
|
|
<th scope="col">Comments</th>
|
|
<th scope="col">OPAC notes</th>
|
|
<th scope="col">Staff notes</th>
|
|
<th scope="col">Backend</th>
|
|
<th scope="col" class="actions"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="illview-body">
|
|
</tbody>
|
|
</table> |