Bug 12759: (follow-up) Using tabs for diff ways of adding records
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / batch_record_modification.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% PROCESS 'authorities-search-results.inc' %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha &rsaquo; Tools &rsaquo; Batch record modification</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 [% Asset.css("css/datatables.css") | $raw %]
9 </head>
10
11 <body id="tools_batch_record_modification" class="tools">
12 [% INCLUDE 'header.inc' %]
13 [% INCLUDE 'cat-search.inc' %]
14
15 <div id="breadcrumbs">
16     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
17     <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
18     <a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a>
19 </div>
20
21 <div class="main container-fluid">
22     <div class="row">
23         <div class="col-sm-10 col-sm-push-2">
24             <main>
25
26   <h1>Batch record modification</h1>
27
28     [% IF ( messages ) %]
29         <div class="dialog message">
30
31             [% FOREACH message IN messages %]
32                 [% IF message.type == 'success' %]
33                     <div><i class="fa fa-check success"></i>
34                 [% ELSIF message.type == 'warning' %]
35                     <div><i class="fa fa-warning warn"></i>
36                 [% ELSIF message.type == 'error' %]
37                     <div><i class="fa fa-exclamation error"></i>
38                 [% END %]
39                 [% IF message.code == 'no_action_defined_for_the_template' %]
40                     The selected template (id=[% message.mmtid | html %]) does not exist or no action is defined.
41                 [% ELSIF message.code == 'biblio_not_exists' %]
42                     Bibliographic record [% message.biblionumber | html %] does not exist in the database.
43                 [% ELSIF message.code == 'authority_not_exists' %]
44                     Authority record [% message.authid | html %] does not exist in the database.
45                 [% ELSIF message.code == 'biblio_not_modified' %]
46                     Bibliographic record <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% message.biblionumber | uri %]">[% message.biblionumber | html %]</a> has not been modified. An error occurred on modifying it.
47                 [% ELSIF message.code == 'authority_not_modified' %]
48                     Authority record <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% message.authid | uri %]">[% message.authid | html %]</a> has not been modified. An error occurred on modifying it.
49                 [% ELSIF message.code == 'biblio_modified' %]
50                     Bibliographic record <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% message.biblionumber | uri %]">[% message.biblionumber | html %]</a> has successfully been modified.
51                 [% ELSIF message.code == 'authority_modified' %]
52                     Bibliographic record <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% message.authid | uri %]">[% message.authid | html %]</a> has successfully been modified.
53                 [% END %]
54                 [% IF message.error %]
55                     (The error was: [% message.error | html %]. See the Koha logfile for more information).
56                 [% END %]
57                 </div>
58             [% END %]
59
60         </div>
61     [% END %]
62
63   [% IF view == 'form' %]
64     <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/batch_record_modification.pl">
65       <fieldset class="rows">
66         <legend>Record type</legend>
67         <ol>
68           <li><label for="biblio_type">Biblios: </label><input type="radio" name="recordtype" value="biblio" id="biblio_type" checked="checked" /></li>
69           <li><label for="authority_type">Authorities: </label><input type="radio" name="recordtype" value="authority" id="authority_type" /></li>
70         </ol>
71       </fieldset>
72
73       <br><br>
74
75       <div id="batch_mod_form" class="toptabs">
76         <ul>
77           <li><a href="#uploadfile">Upload a file</a></li>
78           [% IF lists.count %]<li id="show_list_option"><a href="#shelves">Select a list of records</a></li>[% END %]
79           <li><a href="#enterlist">Enter a list of record numbers</a></li>
80         </ul>
81
82         <div id="uploadfile">
83           <fieldset class="rows">
84             <legend>Use a file</legend>
85             <ol>
86               <li><label for="uploadfile">File: </label> <input type="file" id="uploadfile" name="uploadfile" /></li>
87             </ol>
88           </fieldset>
89           &nbsp;
90         </div>
91
92         <div id="shelves">
93           <fieldset class="rows">
94             <legend>Or select a list of records</legend>
95             <ol>
96               <li>
97                 <label for="shelf_number">Use records from the following list: </label>
98                 <select name="shelf_number" id="shelf_number">
99                   <option value="">Select a list</option>
100                     [% FOREACH list IN lists %]
101                       <option value="[% list.shelfnumber %]">[% list.shelfname %]</option>
102                     [% END %]
103                   </option>
104                 </select>
105               </li>
106             </ol>
107           </fieldset>
108           &nbsp;
109         </div>
110
111         <div id="enterlist">
112           <fieldset class="rows">
113             <legend>Or enter a list of record numbers</legend>
114             <ol>
115               <li>
116                 <label for="recordnumber_list">List of biblionumbers or authority ids (one per line): </label>
117                 <textarea rows="10" cols="30" id="recordnumber_list" name="recordnumber_list"></textarea>
118               </li>
119             </ol>
120           </fieldset>
121           &nbsp;
122         </div>
123
124       </div>
125
126       <fieldset class="rows">
127         <legend>Use MARC Modification Template:</legend>
128         <ol>
129           <li>
130             <label for="marc_modification_template_id" class="required">Modify record using the following template: </label>
131             <select name="marc_modification_template_id" id="marc_modification_template_id" required="required">
132               <option value="">Select a template</option>
133                 [% FOREACH mmt IN MarcModificationTemplatesLoop %]
134                   <option value="[% mmt.template_id | html %]">[% mmt.name | html %]</option>
135                 [% END %]
136             </select>
137           </li>
138         </ol>
139       </fieldset>
140       <fieldset class="action">
141         <input type="hidden" name="op" value="list" />
142         <input type="submit" value="Continue" class="button" />
143         <a class="cancel" href="/cgi-bin/koha/tools/tools-home.pl">Cancel</a>
144       </fieldset>
145     </form>
146   [% ELSIF view == 'list' %]
147     [% IF records %]
148       <form action="/cgi-bin/koha/tools/batch_record_modification.pl" method="post" id="process">
149         <label for="marc_modification_template_id" class="required">Modify record using the following template: </label>
150         <select name="marc_modification_template_id" id="marc_modification_template_id" required="required">
151           <option value="">Select a template</option>
152           [% FOREACH mmt IN MarcModificationTemplatesLoop %]
153             [% IF mmt.selected %]
154               <option value="[% mmt.template_id | html %]" selected="selected">[% mmt.name | html %]</option>
155             [% ELSE %]
156               <option value="[% mmt.template_id | html %]">[% mmt.name | html %]</option>
157             [% END %]
158           [% END %]
159         </select>
160         <div id="marcPreview" class="modal" tabindex="-1" role="dialog" aria-labelledby="marcPreviewLabel" aria-hidden="true">
161             <div class="modal-dialog">
162                 <div class="modal-content">
163                     <div class="modal-header">
164                         <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
165                         <h3 id="marcPreviewLabel">MARC preview</h3>
166                     </div>
167                     <div class="modal-body">
168                         <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
169                     </div>
170                     <div class="modal-footer">
171                         <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
172                     </div>
173                 </div>
174             </div>
175         </div>
176         [% IF recordtype == 'biblio' %]
177           <div id="toolbar">
178             <a id="selectall" href="#"><i class="fa fa-check"></i> Select all</a>
179             | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a>
180           </div>
181           <table id="biblios" class="records">
182             <thead>
183               <tr>
184                 <th>&nbsp;</th>
185                 <th>Biblionumber</th>
186                 <th>Title</th>
187                 <th>&nbsp;</th>
188               </tr>
189             </thead>
190             <tbody>
191               [% FOR biblio IN records %]
192                 <tr>
193                   <td><input type="checkbox" name="record_id" value="[% biblio.biblionumber | html %]" /></td>
194                   <td>[% biblio.biblionumber | html %]</td>
195                   <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]">[% biblio.title | html %]</a></td>
196                   <td class="actions">
197                     <a href="/cgi-bin/koha/svc/records/preview?record_type=biblio&record_id=[% biblio.biblionumber | uri %]&mmtid=[% mmtid | uri %]" class="previewMARC btn btn-default btn-xs" data-record_type="biblio" data-record_id="[% biblio.biblionumber | html %]" data-mmtid="[% mmtid | html %]" title="Preview MARC"><i class="fa fa-eye"></i> Show MARC</a>
198                   </td>
199                 </tr>
200               [% END %]
201             </tbody>
202           </table>
203           <div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will modify all selected biblios!</div>
204         [% ELSE %]
205           <div id="toolbar">
206             <a id="selectall" href="#"><i class="fa fa-check"></i> Select all</a>
207             | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a>
208           </div>
209           <table id="authorities" class="records">
210             <thead>
211               <tr>
212                 <th></th>
213                 <th>Authid</th>
214                 <th>Summary</th>
215                 <th>&nbsp;</th>
216               </tr>
217             </thead>
218             <tbody>
219               [% FOR authority IN records %]
220                 <tr>
221                   <td><input type="checkbox" name="record_id" value="[% authority.authid | html %]" data-usage="[% authority.count_usage | html %]" /></td>
222                   <td><a href="/cgi-bin/koha/authorities/detail.pl?authid=[% authority.authid | uri %]">[% authority.authid | html %]</a></td>
223                   <td>[% PROCESS authresult summary=authority.summary %]</td>
224                   <td class="actions"><a href="/cgi-bin/koha/svc/records/preview?record_type=authority&record_id=[% authority.authid | uri %]&mmtid=[% mmtid | uri %]" data-record_type="authority" data-record_id="[% authority.authid | html %]" data-mmtid="[% mmtid | html %]" class="previewMARC btn btn-default btn-xs"><i class='fa fa-eye'></i> Show MARC</a>
225                 </tr>
226               [% END %]
227             </tbody>
228           </table>
229           <div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will modify all selected authorities!</div>
230         [% END %]
231         <fieldset class="action">
232           <input type="hidden" name="op" value="modify" />
233           <input type="hidden" name="recordtype" value="[% recordtype | html %]" />
234           <input type="button" id="mainformsubmit" value="Modify selected records" class="button" />
235           <input type="hidden" name="runinbackground" id="runinbackground" value="" />
236           <input type="hidden" name="completedJobID" id="completedJobID" value="" />
237           <a class="cancel" href="/cgi-bin/koha/tools/batch_record_modification.pl">Cancel</a>
238         </fieldset>
239         <div id="jobpanel">
240           <div id="jobstatus" class="progress_panel">Job progress: <div id="jobprogress"></div> <span id="jobprogresspercent">0</span>%</div>
241           <div id="jobfailed"></div>
242         </div>
243       </form>
244     [% ELSE %]
245         <div class="dialog message">
246             No records were modified. <a href="/cgi-bin/koha/tools/batch_record_modification.pl" title="New batch record modification">New batch record modification</a>
247         </div>
248     [% END %]
249   [% ELSIF view == 'report' %]
250     [% IF report.total_records == report.total_success %]
251         <div class="dialog message">
252             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>
253         </div>
254     [% ELSE %]
255         <div class="dialog message">
256             [% report.total_success | html %] / [% report.total_records | html %] records have successfully been modified. Some errors occurred. <a href="/cgi-bin/koha/tools/batch_record_modification.pl" title="New batch record modification">New batch record modification</a>
257         </div>
258     [% END %]
259   [% ELSIF view == 'errors' %]
260     [% FOR error IN errors %]
261       [% IF error == 'no_template_defined' %]
262         <div class="dialog alert">
263             No MARC modification template is defined. You have <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">to create</a> at least one template for using this tool.
264         </div>
265       [% END %]
266     [% END %]
267   [% ELSE %]
268         <div class="dialog alert">
269             No action defined for the template.
270         </div>
271   [% END %]
272             </main>
273         </div> <!-- /.col-sm-10.col-sm-push-2 -->
274
275         <div class="col-sm-2 col-sm-pull-10">
276             <aside>
277                 [% INCLUDE 'tools-menu.inc' %]
278             </aside>
279         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
280      </div> <!-- /.row -->
281
282 [% MACRO jsinclude BLOCK %]
283     [% Asset.js("js/tools-menu.js") | $raw %]
284     [% INCLUDE 'datatables.inc' %]
285     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
286     [% Asset.js("js/background-job-progressbar.js") | $raw %]
287     <script>
288         $(document).ready(function() {
289
290           $("#batch_mod_form").tabs();
291
292           $("input[type='radio']").click(function(){
293             if ($(this).attr('id') == 'authority_type') {
294               $("#show_list_option").hide();
295             } else if ($(this).attr('id') == 'biblio_type') {
296               $("#show_list_option").show();
297             }
298           });
299           $("#selectall").click(function(e){
300             e.preventDefault();
301             $(".records").checkCheckboxes();
302           });
303           $("#clearall").click(function(e){
304             e.preventDefault();
305             $(".records").unCheckCheckboxes();
306           });
307           $("#selectall").click();
308
309           $("table#biblios").dataTable($.extend(true, {}, dataTablesDefaults, {
310             "aoColumnDefs": [
311               { "aTargets": [ 0, 3 ], "bSortable": false, "bSearchable": false },
312               { "aTargets": [ 1 ], "sType": "num-html" }
313             ],
314             "sDom": 't',
315             "aaSorting": [],
316             "bPaginate": false
317           }));
318
319           $("table#authorities").dataTable($.extend(true, {}, dataTablesDefaults, {
320             "aoColumnDefs": [
321               { "aTargets": [ 0, 3 ], "bSortable": false, "bSearchable": false },
322               { "aTargets": [ 1 ], "sType": "num-html" }
323             ],
324             "sDom": 't',
325             "aaSorting": [],
326             "bPaginate": false
327           }));
328
329           $("#mainformsubmit").click(function(){
330             if ($("input[type=checkbox][name='record_id']:checked").length == 0 ) {
331               alert(_("Please select at least one record to process"));
332               return false;
333             }
334             if ( $("#marc_modification_template_id").val() <= 0 ) {
335               alert(_("Please select a modification template."));
336               return false;
337             }
338             return submitBackgroundJob(document.getElementById("process"));
339           });
340
341           $("#marc_modification_template_id").change(function(){
342             var url = "/cgi-bin/koha/svc/records/preview?"
343             var mmtid = $(this).val();
344             $("a.previewMARC").each(function(){
345               $(this).attr("href", url + "record_type=" + $(this).attr("data-record_type") + "&record_id=" + $(this).attr("data-record_id") + "&mmtid=" + mmtid);
346             });
347           });
348
349             $("body").on("click",".previewMARC", function(e){
350                 e.preventDefault();
351                 var ltitle = $(this).text();
352                 var page = $(this).attr("href");
353                 $("#marcPreviewLabel").text(ltitle);
354                 $("#marcPreview .modal-body").load(page + " div");
355                 $('#marcPreview').modal({show:true});
356             });
357             $("#marcPreview").on("hidden.bs.modal", function(){
358                 $("#marcPreviewLabel").html("");
359                 $("#marcPreview .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
360             });
361
362         });
363     </script>
364 [% END %]
365
366 [% INCLUDE 'intranet-bottom.inc' %]