e384b13fdb6c16aee4218857942afed0f14a82c9
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / manage-marc-import.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Tools &rsaquo; Manage staged MARC records
6 [% IF ( import_batch_id ) %]
7  &rsaquo; Batch [% import_batch_id | html %]
8 [% END %]
9 </title>
10 [% INCLUDE 'doc-head-close.inc' %]
11 <style>
12     #jobpanel,#jobstatus,#jobfailed { display : none; }
13     span.change-status { font-style:italic; color:#666; display:none; }
14 </style>
15 </head>
16 <body id="tools_manage-marc-import" class="tools">
17 [% INCLUDE 'header.inc' %]
18 [% INCLUDE 'cat-search.inc' %]
19
20 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> 
21 [% IF ( import_batch_id ) %]
22  &rsaquo;
23  <a href="[% script_name | url %]">Manage staged MARC records</a>
24  &rsaquo; Batch [% import_batch_id | html %]
25 [% ELSE %]
26  &rsaquo; Manage staged MARC records
27 [% END %]
28 </div>
29
30 <div class="main container-fluid">
31     <div class="row">
32         <div class="col-sm-10 col-sm-push-2">
33             <main>
34
35 <h1>Manage staged MARC records
36 [% IF ( import_batch_id ) %]
37  &rsaquo; Batch [% import_batch_id | html %]
38 [% END %]
39 </h1>
40 [% IF ( label_batch_msg ) %]
41 [% IF ( alert ) %]
42 <div class="alert">
43 [% ELSE %]
44 <div class="dialog message">
45 [% END %]
46 <b><p>[% label_batch_msg | html %]</p></b>
47 </div>
48 [% END %]
49
50 [% IF ( did_clean ) %]
51   <div class="dialog message">Cleaned import batch #[% import_batch_id | html %]</div>
52 [% END %]
53
54 [% IF ( did_delete ) %]
55   <div class="dialog message">Import batch deleted successfully</div>
56 [% END %]
57
58 [% UNLESS ( batch_list ) %]
59    [% UNLESS ( batch_info ) %]
60    <div class="dialog message">
61      <p>No records have been staged.</p>
62      <p><a href="/cgi-bin/koha/tools/stage-marc-import.pl">Stage MARC records for import</a>.</p>
63    </div>
64    [% END %]
65 [% END %]
66
67 [% IF ( batch_info ) %]
68
69 [% IF ( can_commit ) %]
70 <form action="[% script_name | html %]" method="post">
71 <input type="hidden" name="op" value="redo-matching" />
72 <input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" />
73 <input type="hidden" name="current_matcher_id" value="[% current_matcher_id | html %]" />
74 [% END %]
75
76   [% IF ( rematch_attempted ) %]
77     [% IF ( rematch_failed ) %]
78       <div class="dialog alert">Failed to apply different matching rule</div>
79     [% ELSE %]
80       <div class="dialog message">Applied different matching rule.  Number of records matched now
81        [% num_with_matches | html %]
82       </div>
83     [% END %]
84   [% END %]
85   [% IF ( changed_overlay_action ) %]
86       <div class="dialog message">Changed action if matching record found</div>
87   [% END %]
88   [% IF ( changed_nomatch_action ) %]
89       <div class="dialog message">Changed action if no match found</div>
90   [% END %]
91   [% IF ( changed_item_action ) %]
92       <div class="dialog message">Changed item processing option</div>
93   [% END %]
94
95 <fieldset class="rows" id="staged-record-matching-rules">
96   <ol>
97     <li><span class="label">File name:</span> [% file_name | html %]</li>
98     <li><span class="label">Comments:</span> [% IF ( comments ) %][% comments | html %][% ELSE %](none)[% END %]</li>
99     <li><span class="label">Type:</span> [% IF ( record_type == 'auth' ) %]Authority records[% ELSE %]Bibliographic records[% END %]</li>
100     <li><span class="label">Staged:</span> [% upload_timestamp | html %]</li>
101     <li><span class="label">Status:</span>
102       [% IF ( import_status == 'cleaned' ) %]
103          Cleaned
104       [% ELSIF ( import_status == 'imported' ) %]
105         Imported
106       [% ELSIF ( import_status == 'importing' ) %]
107         Importing
108       [% ELSIF ( import_status == 'reverted' ) %]
109          Reverted
110       [% ELSIF ( import_status == 'reverting' ) %]
111          Reverting
112       [% ELSIF ( import_status == 'staged' ) %]
113           Staged
114       [% ELSE %]
115           [% import_status | html %]
116       [% END %]
117       </li>
118     <li>
119 [% IF ( can_commit ) %]<label for="new_matcher_id">Matching rule applied:</label><select name="new_matcher_id" id="new_matcher_id">
120        <option value="">Do not look for matching records</option> 
121        [% FOREACH available_matcher IN available_matchers %]
122           [% IF ( available_matcher.selected ) %]
123           <option value="[% available_matcher.matcher_id | html %]" selected="selected">
124              [% available_matcher.code | html %] ([% available_matcher.description | html %])
125           </option>
126           [% ELSE %]
127           <option value="[% available_matcher.matcher_id | html %]">
128             [% available_matcher.code | html %] ([% available_matcher.description | html %])
129           </option>
130           [% END %]
131        [% END %]
132     </select> <span class="change-status">Changed. <a href="#" class="reset" id="reset_new_matcher_id">Reset</a></span>[% ELSE %]<span class="label">Matching rule applied</span>[% IF ( current_matcher_id ) %]
133   [% current_matcher_code | html %] ([% current_matcher_description | html %])
134 [% ELSE %]
135   No matching rule in effect
136 [% END %][% END %]
137     </li>
138     <li>
139         [% IF ( can_commit ) %]
140             <label for="overlay_action">Action if matching record found:</label>
141             [% INCLUDE 'tools-overlay-action.inc' %] <span class="change-status">Changed. <a href="#" class="reset" id="reset_overlay_action">Reset</a></span>
142         [% ELSE %]
143             <span class="label">Action if matching record found:</span>
144             [% IF ( overlay_action == 'replace' ) %]
145                 Replace existing record with incoming record
146             [% ELSIF ( overlay_action == 'create_new' ) %]
147                 Add incoming record
148             [% ELSIF ( overlay_action == 'ignore' ) %]
149                 Ignore incoming record (its items may still be processed)
150             [% ELSE %]
151                 [% overlay_action | html %]
152             [% END %]
153         [% END %]</li>
154      
155     <li>
156         [% IF ( can_commit ) %]
157             <label for="nomatch_action">Action if no match found:</label>
158             [% INCLUDE 'tools-nomatch-action.inc' %] <span class="change-status">Changed. <a href="#" class="reset" id="reset_nomatch_action">Reset</a></span>
159         [% ELSE %]
160             <span class="label">Action if no match found:</span>
161             [% IF ( nomatch_action == 'create_new' ) %]
162                 Add incoming record
163             [% ELSIF ( nomatch_action == 'ignore' ) %]
164                 Ignore incoming record (its items may still be processed)
165             [% ELSE %]
166                 [% nomatch_action | html %]
167             [% END %]
168         [% END %]
169     </li>
170
171     [% IF ( record_type == 'biblio' ) %]
172     <li>
173         [% IF ( can_commit ) %]
174             <label for="item_action">Item processing:</label>
175             [% INCLUDE 'tools-item-action.inc' %] <span class="change-status">Changed. <a href="#" class="reset" id="reset_item_action">Reset</a></span>
176         [% ELSE %]
177             <span class="label">Item processing:</span>
178             [% IF ( item_action == 'always_add' ) %]
179                 Always add items
180             [% ELSIF ( item_action == 'add_only_for_matches' ) %]
181                 Add items only if matching bib was found
182             [% ELSIF ( item_action == 'add_only_for_new' ) %]
183                 Add items only if no matching bib was found
184             [% ELSIF ( item_action == 'ignore' ) %]
185                 Ignore items
186             [% ELSE %]
187                 [% item_action | html %]
188             [% END %]
189         [% END %]
190     </li>
191     [% END %]
192   </ol>
193 [% IF ( can_commit ) %]<fieldset class="action"><input type="submit" value="Apply different matching rules" class="button" /></fieldset></form>[% END %]
194 </fieldset>
195
196
197 <div>
198   [% IF ( can_commit ) %]
199   <form action="[% script_name | html %]" method="post" id="import_batch_form">
200     <input type="hidden" name="op" value="commit-batch" />
201     <input type="hidden" name="runinbackground" value="" />
202     <input type="hidden" name="completedJobID" value="" />
203     <input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" />
204     <fieldset class="action">
205     [% IF ( record_type != 'auth' ) %]
206     Add new bibliographic records into this framework:
207     <select name="framework" id="frameworks">
208       <option value="">Default</option>
209       [% FOREACH framework IN frameworks %]
210           <option value="[% framework.frameworkcode | html %]">[% framework.frameworktext | html %]</option>
211       [% END %]
212     </select>
213     [% END %]
214     <br/>
215     <input type="submit" class="button" name="mainformsubmit" value="Import this batch into the catalog" />
216     </fieldset>
217   </form>
218   <div id="jobpanel"><div id="jobstatus" class="progress_panel">Job progress: <div id="jobprogress"></div> <span id="jobprogresspercent">0</span>%</div>
219      <div id="jobfailed"></div></div>
220   [% END %]
221   [% IF ( can_revert ) %]
222   <form action="[% script_name | html %]" method="post" id="revert_batch_form">
223     <input type="hidden" name="op" value="revert-batch" />
224     <input type="hidden" name="runinbackground" value="" />
225     <input type="hidden" name="completedJobID" value="" />
226     <input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" />
227     <fieldset class="action"><input type="submit" class="button" name="mainformsubmit" value="Undo import into catalog" /></fieldset>
228   </form>
229   <div id="jobpanel"><div id="jobstatus">Job progress: <div id="jobprogress"></div> <span id="jobprogresspercent">0</span>%</div>
230      <div id="jobfailed"></div></div>
231   [% END %]
232 </div>
233   [% IF ( did_commit ) %]
234   <div class="dialog message">Completed import of records</div>
235   <table>
236   <tr><td>Number of records added</td><td>[% num_added | html %]</td></tr>
237   <tr><td>Number of records updated</td><td>[% num_updated | html %]</td></tr>
238   <tr><td>Number of records ignored</td><td>[% num_ignored | html %]</td></tr>
239   [% IF ( record_type == 'biblio' ) %]
240       <tr><td>Number of items added</td><td>[% num_items_added | html %]</td></tr>
241       <tr><td>Number of items replaced</td><td>[% num_items_replaced | html %]</td></tr>
242       <tr><td>Number of items ignored because of duplicate barcode</td><td>[% num_items_errored | html %]</td></tr>
243   [% END %]
244   </table>
245   [% END %]
246   [% IF ( did_revert ) %]
247   <div class="dialog message">Success: Import reversed</div>
248   <table>
249   <tr><td>Number of records deleted</td><td>[% num_deleted | html %]</td></tr>
250   [% IF ( record_type == 'biblio' ) %]
251     <tr><td>Number of items deleted</td><td>[% num_items_deleted | html %]</td></tr>
252     <tr><td>Number of records not deleted due to items on loan</td><td>[% num_errors | html %]</td></tr>
253   [% END %]
254   <tr><td>Number of records changed back</td><td>[% num_reverted | html %]</td></tr>
255   <tr><td>Number of records ignored</td><td>[% num_ignored | html %]</td></tr>
256   </table>
257   [% END %]
258 [% END %]
259 <br style="clear:both;" />
260
261 [% IF ( batch_list ) %]
262   [% IF ( pages ) %]
263 <div class="pages">
264     [% FOREACH page IN pages %]
265       [% IF ( page.current_page ) %]
266       <span class="current">[% page.page_number | html %]</span>
267       [% ELSE %]
268       <a href="[% page.script_name | url %]?offset=[% page.offset | uri %]">[% page.page_number | html %]</a>
269       [% END %]
270     [% END %]
271 </div>
272   [% END %]
273 <table>
274   <tr>
275     <th>#</th>
276     <th>File name</th>
277     <th>Comments</th>
278     <th>Type</th>
279     <th>Status</th>
280     <th>Staged</th>
281     <th># Records</th>
282     <th># Items</th>
283     <th>Action</th>
284   </tr>
285   [% FOREACH batch_lis IN batch_list %]
286     <tr>
287     <td>[% batch_lis.import_batch_id | html %]</td>
288     <td><a href="[% batch_lis.script_name | url %]?import_batch_id=[% batch_lis.import_batch_id | uri %]">[% batch_lis.file_name | html %]</a></td>
289     <td>[% batch_lis.comments | html %]</td>
290     <td>[% IF ( batch_lis.record_type == 'auth' ) %]Authority[% ELSE %]Bibliographic[% END %]</td>
291     <td>
292       [% IF ( batch_lis.import_status == 'cleaned' ) %]
293          Cleaned
294       [% ELSIF ( batch_lis.import_status == 'imported' ) %]
295         Imported
296       [% ELSIF ( batch_lis.import_status == 'importing' ) %]
297         Importing
298       [% ELSIF ( batch_lis.import_status == 'reverted' ) %]
299          Reverted
300       [% ELSIF ( batch_lis.import_status == 'reverting' ) %]
301          Reverting
302       [% ELSIF ( batch_lis.import_status == 'staged' ) %]
303           Staged
304       [% ELSE %]
305           [% batch_lis.import_status | html %]
306       [% END %]
307     </td>
308     <td>[% batch_lis.upload_timestamp | html %]</td>
309     <td>[% batch_lis.num_records | html %]</td>
310     <td>[% batch_lis.num_items | html %][% IF ( batch_lis.num_items ) %] <a href="[% batch_lis.script_name | url %]?import_batch_id=[% batch_lis.import_batch_id | uri %]&amp;op=create_labels">(Create label batch)</a>[% END %]</td>
311     <td class="actions">
312         [% IF ( batch_lis.can_clean ) %]
313           <form method="post" action="[% batch_lis.script_name | html %]" name="clean_batch_[% batch_lis.import_batch_id | html %]" id="clean_batch_[% batch_lis.import_batch_id | html %]" class="batch_form batch_clean" >
314             <input type="hidden" name="import_batch_id" value="[% batch_lis.import_batch_id | html %]" />
315             <input type="hidden" name="op" value="clean-batch" />
316             <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-eraser"></i> Clean</button>
317           </form>
318         [% ELSIF ( batch_lis.import_status == 'cleaned' ) %]
319           <form method="post" action="/cgi-bin/koha/tools/manage-marc-import.pl" name="delete_batch_[% batch_lis.import_batch_id | html %]" id="delete_batch_[% batch_lis.import_batch_id | html %]" class="batch_form batch_delete">
320             <input type="hidden" name="import_batch_id" value="[% batch_lis.import_batch_id | html %]" />
321             <input type="hidden" name="op" value="delete-batch" />
322             <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</button>
323           </form>
324         [% END %]
325     </td>
326   </tr>
327   [% END %]
328 </table>
329   [% IF ( pages ) %]
330 <div class="pages">
331     [% FOREACH page IN pages %]
332       [% IF ( page.current_page ) %]
333       <span class="current">[% page.page_number | html %]</span>
334       [% ELSE %]
335       <a href="[% page.script_name | url %]?offset=[% page.offset | uri %]">[% page.page_number | html %]</a>
336       [% END %]
337     [% END %]
338 </div>
339   [% END %]
340 [% END %]
341
342 [% IF import_batch_id %]
343     <table id="records-table">
344         <thead>
345             <tr>
346                 <th>#</th>
347                 <th>Citation</th>
348                 <th>Status</th>
349                 <th>Match type</th>
350                 <th>Match details</th>
351                 <th><abbr title="Differences between the original bibliographic record and the imported">Diff</abbr></th>
352                 <th>Record</th>
353             </tr>
354         </thead>
355     </table>
356
357     <div id="marcPreview" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="marcPreviewLabel" aria-hidden="true">
358         <div class="modal-dialog">
359         <div class="modal-content">
360         <div class="modal-header">
361             <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
362             <h3 id="marcPreviewLabel">MARC preview</h3>
363         </div>
364         <div class="modal-body">
365             <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
366         </div>
367         <div class="modal-footer">
368             <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
369         </div>
370         </div>
371         </div>
372     </div>
373 [% END %]
374
375             </main>
376         </div> <!-- /.col-sm-10.col-sm-push-2 -->
377
378         <div class="col-sm-2 col-sm-pull-10">
379             <aside>
380                 [% INCLUDE 'tools-menu.inc' %]
381             </aside>
382         </div> <!-- .col-sm-2.col-sm-pull-10 -->
383      </div> <!-- /.row -->
384
385 [% MACRO jsinclude BLOCK %]
386     [% Asset.js("js/tools-menu.js") | $raw %]
387     [% Asset.js("js/background-job-progressbar.js") | $raw %]
388     [% INCLUDE 'datatables.inc' %]
389     <script>
390         $(document).ready(function(){
391             $("#staged-record-matching-rules select").change(function(){
392                 var str = $(this).attr("id");
393                 $("#reset_"+str).parent().show();
394             });
395             $("a.reset").click(function(){
396                 var str = $(this).attr("id");
397                 str = str.replace("reset_","")
398                 $("#"+str+" option[selected='selected']").attr("selected","selected");
399                 $(this).parent().hide();
400             });
401
402             [% IF import_batch_id %]
403                 $("#records-table").dataTable($.extend(true, {}, dataTablesDefaults, {
404                     "bAutoWidth": false,
405                     "bFilter": false,
406                     "bProcessing": true,
407                     "bServerSide": true,
408                     "sAjaxSource": 'batch_records_ajax.pl',
409                     "sPaginationType": "full_numbers",
410                     "sDom": '<"top pager"iflp>rt<"bottom pager"flp><"clear">',
411                     "aoColumns": [
412                         { "mDataProp": "import_record_id" },
413                         { "mDataProp": "citation" },
414                         { "mDataProp": "status" },
415                         { "mDataProp": "overlay_status" },
416                         { "mDataProp": "match_citation" },
417                         { "mDataProp": "diff_url" },
418                         { "mDataProp": "matched" }
419                     ],
420                     "fnServerData": function ( sSource, aoData, fnCallback ) {
421                         aoData.push( { "name": "import_batch_id", "value": [% import_batch_id | html %] } );
422
423                         $.ajax({
424                             'dataType': 'json',
425                             'type': 'POST',
426                             'url': sSource,
427                             'data': aoData,
428                             'success': function(json){
429                                 fnCallback(json);
430                             }
431                         });
432                     },
433                     "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
434                       [% IF ( record_type == 'auth' ) %]
435                           var record_details_url = "/cgi-bin/koha/authorities/detail.pl?authid=";
436                       [% ELSE %]
437                           var record_details_url = "/cgi-bin/koha/catalogue/detail.pl?biblionumber=";
438                       [% END %]
439
440                       $('td:eq(1)', nRow).html(
441                           '<a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=' + aData['import_record_id'] + '&viewas=html" class="previewMARC">' + aData['citation'] + '</a>'
442                       );
443
444                       $('td:eq(2)', nRow).html(
445                           aData['status'] == 'imported' ? _("Imported") :
446                           aData['status'] == 'ignored'  ? _("Ignored")  :
447                           aData['status'] == 'reverted' ? _("Reverted") :
448                           aData['status'] == 'staged'   ? _("Staged")   :
449                           aData['status'] == 'error'    ? _("Error")    :
450                           aData['status']
451                       );
452
453                       $('td:eq(3)', nRow).html(
454                           aData['overlay_status'] == 'no_match'      ? _("No match")       :
455                           aData['overlay_status'] == 'match_applied' ? _("Match applied")  :
456                           aData['overlay_status'] == 'auto_match'    ? _("Match found")    :
457                           aData['overlay_status']
458                       );
459
460                       if ( aData['match_id'] ) {
461                           [% IF ( record_type == 'auth' ) -%]
462                           var matching_msg = _("Matches authority %s (score=%s):%s");
463                           [%- ELSE -%]
464                           var matching_msg = _("Matches bibliographic record %s (score=%s):%s");
465                           [%- END %]
466                           $('td:eq(4)', nRow).html(
467                               matching_msg.format(aData['match_id'], aData['score'],
468                               '<a target="_blank" href="' + record_details_url
469                               + aData['match_id'] + '">' + aData['match_citation'] + '</a>')
470                           );
471                       }
472                       if (aData['diff_url']){
473                           $('td:eq(5)', nRow).html(
474                               '<a href="'+aData['diff_url']+'">' + _("View") + '</a>'
475                           );
476                       }
477                       $('td:eq(6)', nRow).html(
478                           '<a target="_blank" href="' + record_details_url
479                               + aData['matched'] + '">' + aData['matched'] + '</a>'
480                       );
481                     },
482                 }));
483                 $("#import_batch_form").on("submit",function(){
484                     return submitBackgroundJob( document.getElementById("import_batch_form") );
485                 });
486                 $("#revert_batch_form").on("submit",function(){
487                     return confirm( _("Are you sure you want to undo the import of this batch into the catalog?") ) &&   submitBackgroundJob( document.getElementById("revert_batch_form") );
488                 });
489             [% END %]
490             $("body").on("click",".previewMARC", function(e){
491                 e.preventDefault();
492                 var ltitle = $(this).text();
493                 var page = $(this).attr("href");
494                 $("#marcPreviewLabel").text(ltitle);
495                 $("#marcPreview .modal-body").load(page + " table");
496                 $('#marcPreview').modal({show:true});
497             });
498             $("#marcPreview").on("hidden.bs.modal", function(){
499                 $("#marcPreviewLabel").html("");
500                 $("#marcPreview .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
501             });
502             $(".batch_form").on("submit",function(){
503                 if( $(this).hasClass("batch_delete") ){
504                     return confirm( _("Are you sure you want to permanently delete this batch?") );
505                 } else {
506                     return confirm( _("Clear all reservoir records staged in this batch?  This cannot be undone.") );
507                 }
508             });
509         });
510     </script>
511 [% END %]
512
513 [% INCLUDE 'intranet-bottom.inc' %]