Jonathan Druart
2122fd8ee5
ie. no subscription yet This needs to be fixed (if possible), or removed from the patchset Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: David Cook <dcook@prosentient.com.au> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
196 lines
9.1 KiB
Text
196 lines
9.1 KiB
Text
[% USE raw %]
|
|
[% USE Asset %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Administration › [% IF op =='add_form' %]Background jobs› [% IF job %] View background job[% ELSE %] Background jobs[% END %][% END %]</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
|
|
<body id="admin_background_jobs" class="admin">
|
|
[% INCLUDE 'header.inc' %]
|
|
|
|
<div id="breadcrumbs">
|
|
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
|
|
› <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
|
|
› <a href="/cgi-bin/koha/admin/background_jobs.pl">Background jobs</a>
|
|
</div>
|
|
|
|
<div class="main container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-push-2">
|
|
<main>
|
|
|
|
[% FOR m IN messages %]
|
|
<div class="dialog message">
|
|
[% SWITCH m.code %]
|
|
[% CASE 'cannot_retrieve_jobs' %]
|
|
<div><i class="fa fa-exclamation error"></i>Cannot retrieve pending jobs ([% m.error %])</div>
|
|
[% CASE %]
|
|
[% m.code | html %]
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
|
|
[% IF op == 'view' %]
|
|
<h1>Detail of job #[% job.id | html %]</h1>
|
|
|
|
<fieldset class="rows">
|
|
<ol>
|
|
<li><span class="label">Job ID: </span>[% job.id | html %]</li>
|
|
<li><label for="job_status">Status: </label>[% job.status | html %]</li>
|
|
<li><label for="job_progress">Progress: </label>[% job.progress || 0 | html %] / [% job.size | html %]</li>
|
|
<li><label for="job_type">Type: </label>[% job.type | html %]</li>
|
|
<li><label for="job_enqueued_on">enqueued_on: </label>[% job.enqueued_on | html %]</li>
|
|
<li><label for="job_started_on">started_on: </label>[% job.started_on | html %]</li>
|
|
<li><label for="job_ended_on">ended_on: </label>[% job.ended_on | html %]</li>
|
|
<li><label for="job_data">Report: </label>
|
|
[% SWITCH job.type %]
|
|
[% CASE 'batch_biblio_record_modification' %]
|
|
[% SET report = job.report %]
|
|
[% IF report %]
|
|
[% IF report.total_records == report.total_success %]
|
|
<div class="dialog message">
|
|
All records have successfully been modified! <a href="/cgi-bin/koha/tools/batch_record_modification.pl" title="New batch record modification">New batch record modification</a>
|
|
</div>
|
|
[% ELSE %]
|
|
<div class="dialog message">
|
|
[% report.total_success | html %] / [% report.total_records | html %] records have successfully been modified. Some errors occurred.
|
|
[% IF job.status == 'cancelled' %]The job has been cancelled before it finished.[% END %]
|
|
<a href="/cgi-bin/koha/tools/batch_record_modification.pl" title="New batch record modification">New batch record modification</a>
|
|
</div>
|
|
[% END %]
|
|
[% END %]
|
|
[% CASE %][% job.type | html %]
|
|
[% END %]
|
|
</li>
|
|
<li><label for="job_data">Detailed messages: </label>
|
|
[% SWITCH job.type %]
|
|
[% CASE 'batch_biblio_record_modification' %]
|
|
[% FOR m IN job.messages %]
|
|
<div class="dialog message">
|
|
[% IF m.type == 'success' %]
|
|
<i class="fa fa-check success"></i>
|
|
[% ELSIF m.type == 'warning' %]
|
|
<i class="fa fa-warning warn"></i>
|
|
[% ELSIF m.type == 'error' %]
|
|
<i class="fa fa-exclamation error"></i>
|
|
[% END %]
|
|
[% SWITCH m.code %]
|
|
[% CASE 'biblio_not_modified' %]
|
|
Bibliographic record <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% m.biblionumber | uri %]">[% m.biblionumber | html %]</a> has not been modified. An error occurred on modifying it.
|
|
[% CASE 'biblio_modified' %]
|
|
Bibliographic record <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% m.biblionumber | uri %]">[% m.biblionumber | html %]</a> has successfully been modified.
|
|
<h3>Next steps</h3>
|
|
<ul>
|
|
<li><a href="/cgi-bin/koha/tools/batch_record_modification.pl" title="New batch record modification">New batch record modification</a>
|
|
[% IF lists.count %]
|
|
<li>
|
|
<label for="add_bibs_to_list">Add modified records to the following list: </label>
|
|
<select name="add_bibs_to_list" id="add_bibs_to_list">
|
|
<option value="">Select a list</option>
|
|
[% FOREACH list IN lists %]
|
|
<option class="shelf" value="[% list.shelfnumber | html %]">[% list.shelfname | html %]</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
[% END %]
|
|
</ul>
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
[% CASE %][% job.type | html %]
|
|
[% END %]
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
|
|
<a href="/cgi-bin/koha/admin/background_jobs.pl">Return to the job list</a>
|
|
[% END %]
|
|
|
|
[% IF op == 'list' %]
|
|
|
|
<h2>Background jobs</h2>
|
|
|
|
<div class="dialog message">
|
|
<i class="fa fa-info"></i>
|
|
[% IF pending_jobs.size > 0 %]
|
|
There is [% pending_jobs.size %] pending jobs on the server: [% pending_jobs.join(', ') %].
|
|
[% ELSE %]
|
|
There is no pending jobs on the server.
|
|
[% END %]
|
|
</div>
|
|
|
|
[% IF jobs.count %]
|
|
<table id="table_background_jobs">
|
|
<thead>
|
|
<tr>
|
|
<th>Job ID</th>
|
|
<th>Status</th>
|
|
<th>Progress</th>
|
|
<th>Type</th>
|
|
<th>Enqueued on</th>
|
|
<th>Started on</th>
|
|
<th>Ended on</th>
|
|
<th>Actions (NIY)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH job IN jobs %]
|
|
<tr>
|
|
<td>[% job.id | html %]</td>
|
|
<td>[% job.status | html %]</td>
|
|
<td>[% job.progress || 0 | html %] / [% job.size | html %]</td>
|
|
<td>
|
|
[% SWITCH job.type %]
|
|
[% CASE 'batch_biblio_record_modification' %]Batch bibliographic record modification
|
|
[% CASE %][% job.type | html %]
|
|
[% END %]
|
|
</td>
|
|
<td>[% job.enqueued_on | html %]</td>
|
|
<td>[% job.started_on| html %]</td>
|
|
<td>[% job.ended_on| html %]</td>
|
|
<td class="actions">
|
|
<a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/background_jobs.pl?op=view&id=[% job.id | html %]"><i class="fa fa-eye"></i> View</a>
|
|
[% IF job.status == 'new' || job.status == 'started' %]
|
|
<a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/background_jobs.pl?op=cancel&id=[% job.id | html %]"><i class="fa fa-trash"></i> Cancel</a>
|
|
[% END %]
|
|
<a class="btn btn-default btn-xs disabled" href="/cgi-bin/koha/admin/background_jobs.pl?op=replay&id=[% job.id | html %]"><i class="fa fa-refresh"></i> Replay</a>
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
[% ELSE %]
|
|
<div class="dialog message">
|
|
There are no background jobs yet.
|
|
</div>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
</main>
|
|
</div> <!-- /.col-sm-10.col-sm-push-2 -->
|
|
|
|
<div class="col-sm-2 col-sm-pull-10">
|
|
<aside>
|
|
[% INCLUDE 'admin-menu.inc' %]
|
|
</aside>
|
|
</div> <!-- /.col-sm-2.col-sm-pull-10 -->
|
|
</div> <!-- /.row -->
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% Asset.js("js/admin-menu.js") | $raw %]
|
|
[% INCLUDE 'datatables.inc' %]
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#table_background_jobs").dataTable($.extend(true, {}, dataTablesDefaults, {
|
|
"aoColumnDefs": [
|
|
{ "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
|
|
],
|
|
"aaSorting": [[ 0, "desc" ]],
|
|
"iDisplayLength": 10,
|
|
"sPaginationType": "full_numbers"
|
|
}));
|
|
});
|
|
</script>
|
|
[% END %]
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|