7d87ea5356
I found a little bug in the patch. Subfield '@' of tags 003, 005, 008 in MARC21 were not correctly handled by function check_mandatory() in merge.tt. I fixed the problem. In my opinion, the patch can be signed off. Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
276 lines
10 KiB
Text
276 lines
10 KiB
Text
[% PROCESS 'merge-record.inc' %]
|
|
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Cataloging › Merging records</title>
|
|
[% INCLUDE 'greybox.inc' %]
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script type="text/javascript" src="[% themelang %]/js/merge-record.js"></script>
|
|
[% INCLUDE 'merge-record-strings.inc' %]
|
|
<style type="text/css">
|
|
div.record ul, div.record li { float:none; display:block; }
|
|
div#result { margin-top: 1em; }
|
|
/* We use this style "against" the li ui-tabs-nav style automatically applied */
|
|
</style>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
[% UNLESS (result) %]
|
|
[% IF (choosereference) %]
|
|
function changeFramework(fw) {
|
|
$("#frameworkcode").val(fw);
|
|
}
|
|
[% ELSE %]
|
|
function check_mandatory () {
|
|
var missing = {
|
|
'fields': [],
|
|
'subfields': []
|
|
};
|
|
for (tag in tagslib) {
|
|
if (tag == '000' || tag == '001')
|
|
continue;
|
|
if (tagslib[tag].mandatory == 1) {
|
|
if ($("#resultul span.field:contains("+ tag +")").length == 0) {
|
|
missing.fields.push(tag);
|
|
}
|
|
}
|
|
for (subfieldcode in tagslib[tag]) {
|
|
if (subfieldcode == 'lib' || subfieldcode == 'mandatory'
|
|
|| subfieldcode == 'repeatable' || subfieldcode == 'tab'
|
|
|| subfieldcode == '@') {
|
|
continue;
|
|
}
|
|
if (tagslib[tag][subfieldcode].mandatory == 1 && tagslib[tag][subfieldcode].tab >= 0) {
|
|
var fields = $("#resultul span.field:contains("+ tag +")");
|
|
$(fields).each(function() {
|
|
var subfields = $(this).parents('li').find("span.subfield:contains("+ subfieldcode +")");
|
|
if (subfields.length == 0) {
|
|
missing.subfields.push( {
|
|
'tag': tag,
|
|
'subfieldcode': subfieldcode
|
|
} );
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
return missing;
|
|
}
|
|
|
|
// When submiting the form
|
|
function mergeformsubmit() {
|
|
var missing = check_mandatory();
|
|
var alert_msg = '';
|
|
var error = 0;
|
|
if (missing.fields.length > 0) {
|
|
alert_msg += _("Following required fields are missing:") + "\n";
|
|
for (var i in missing.fields) {
|
|
alert_msg += "\t- " + missing.fields[i] + "\n";
|
|
error ++;
|
|
}
|
|
alert_msg += "\n";
|
|
}
|
|
if (missing.subfields.length > 0) {
|
|
alert_msg += _("Following required subfields are missing:") + "\n";
|
|
for (var i in missing.subfields) {
|
|
var subfield = missing.subfields[i];
|
|
alert_msg += "\t- " + subfield.tag + "$" + subfield.subfieldcode + "\n";
|
|
error ++;
|
|
}
|
|
}
|
|
|
|
if (error != 0) {
|
|
alert(alert_msg);
|
|
return false;
|
|
} else {
|
|
$("#tabs").remove();
|
|
}
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
tagslib = [];
|
|
$.getJSON("/cgi-bin/koha/cataloguing/merge_ajax.pl", {frameworkcode : "[% framework %]" }, function(json) {
|
|
tagslib = json;
|
|
rebuild_target($("#tabs"), $("#resultul"));
|
|
});
|
|
|
|
// Creating tabs
|
|
$("#tabs").tabs();
|
|
|
|
// Check all checkboxes in first tab, and uncheck all others to avoid
|
|
// inconsistencies from a page refresh.
|
|
$('#tabs div#tabrecord[% ref_biblionumber %]').find('input[type="checkbox"]').attr('checked', true);
|
|
$('#tabs > div:not("#tabrecord[% ref_biblionumber %]")').find('input[type="checkbox"]').removeAttr('checked');
|
|
|
|
//Set focus to cataloging search
|
|
$("input[name=q]:eq(0)").focus();
|
|
});
|
|
|
|
[% END %]
|
|
[% END %]
|
|
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body id="cat_merge" class="cat">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'cataloging-search.inc' %]
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › Merging records</div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
|
|
|
|
<h1>Merging records</h1>
|
|
[% IF ( result ) %]
|
|
[% IF ( errors.size ) %]
|
|
[% FOREACH error IN errors %]
|
|
<div class="dialog alert">
|
|
[% IF error.code == 'CANNOT_MOVE' %]
|
|
The following items could not be moved from the old record to the new one: [% error.value %]
|
|
[% ELSE %]
|
|
[% error %]
|
|
[% END %]
|
|
<br />
|
|
Therefore, the record to be merged has not been deleted.
|
|
</div>
|
|
[% END %]
|
|
|
|
[% ELSE %]
|
|
<p>The merge was successful. <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% ref_biblionumber %]">Click here to see the merged record.</a></p>
|
|
<h3>Report</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Biblionumber</th>
|
|
[% FOREACH key IN report_header.keys.sort %]
|
|
[% tag = key.substr(0, 3) %]
|
|
[% code = key.substr(3, 1) %]
|
|
[% IF code == '@' %]
|
|
[% header = tag %]
|
|
[% ELSE %]
|
|
[% header = tag _ '$' _ code %]
|
|
[% END %]
|
|
<th>[% header %]</th>
|
|
[% END %]
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH record IN report_records %]
|
|
<tr>
|
|
<td>
|
|
[% record.biblionumber %]
|
|
[% IF loop.first %]
|
|
(record kept)
|
|
[% END %]
|
|
</td>
|
|
[% FOREACH key IN report_header.keys.sort %]
|
|
<td>
|
|
[% values = record.fields.$key %]
|
|
[% IF values %]
|
|
[% FOREACH value IN record.fields.$key %]
|
|
[% value %]
|
|
[% UNLESS loop.last %]<br />[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
</td>
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
[% END %]
|
|
|
|
[% ELSE %]
|
|
|
|
[% IF ( choosereference ) %]
|
|
<p>Please choose which record will be the reference for the merge. The record chosen as reference will be kept, and the other will be deleted.</p>
|
|
<form id="mergeform" action="/cgi-bin/koha/cataloguing/merge.pl" method="post">
|
|
<fieldset class="rows">
|
|
<legend>Merge reference</legend>
|
|
<ol>
|
|
[% FOREACH record IN records %]
|
|
<li class="radio">
|
|
[% IF loop.first %]
|
|
<input type="radio" value="[% record.biblionumber %]" checked="checked" id="ref_biblionumber[% record.biblionumber %]" name="ref_biblionumber" onclick="changeFramework('[% record.frameworkcode %]')" />
|
|
[% ELSE %]
|
|
<input type="radio" value="[% record.biblionumber %]" id="ref_biblionumber[% record.biblionumber %]" name="ref_biblionumber" onclick="changeFramework('[% record.frameworkcode %]')" />
|
|
[% END %]
|
|
<label for="ref_biblionumber[% record.biblionumber %]">
|
|
[% record.data.title %]
|
|
[% FOREACH subtitle IN record.subtitles %]
|
|
[% subtitle.subfield %]
|
|
[% END %]
|
|
(<a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% record.biblionumber %]" title="MARC" rel="gb_page_center[600,500]">[% record.biblionumber %]</a>)
|
|
</label>
|
|
</li>
|
|
[% END %]
|
|
|
|
[% IF frameworkselect.size %]
|
|
<li>
|
|
<label for="frameworkcode">Using framework:</label>
|
|
<select name="frameworkcode" id="frameworkcode">
|
|
<option value="">Default</option>
|
|
[% FOREACH frameworkcode IN frameworkselect %]
|
|
[% IF ( frameworkcode.selected ) %]
|
|
<option value="[% frameworkcode.value %]" selected="selected">
|
|
[% ELSE %]
|
|
<option value="[% frameworkcode.value %]">
|
|
[% END %]
|
|
[% frameworkcode.frameworktext %]
|
|
</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
[% END %]
|
|
</ol>
|
|
|
|
[% FOREACH record IN records %]
|
|
<input type="hidden" name="biblionumber" value="[% record.biblionumber %]" />
|
|
[% END %]
|
|
<fieldset class="action">
|
|
<input type="submit" value="Next" />
|
|
</fieldset>
|
|
</fieldset>
|
|
</form>
|
|
[% ELSE %]
|
|
[% IF ( errors.size ) %]
|
|
<div class="dialog alert">
|
|
[% FOREACH error IN errors %]
|
|
<p>[% error %]</p>
|
|
[% END %]
|
|
</div>
|
|
[% ELSE %]
|
|
<form id="mergeform" action="/cgi-bin/koha/cataloguing/merge.pl" method="post" onsubmit="return mergeformsubmit()">
|
|
|
|
<div class="yui-g">
|
|
<div class="yui-u first">
|
|
[% PROCESS mergesource sourcerecords=records %]
|
|
</div>
|
|
<div class="yui-u">
|
|
[% PROCESS mergetarget %]
|
|
</div> <!-- .yui-u -->
|
|
|
|
<input type="hidden" name="ref_biblionumber" value="[% ref_biblionumber %]" />
|
|
[% FOREACH record IN records %]
|
|
<input type="hidden" name="biblionumber" value="[% record.biblionumber %]" />
|
|
[% END %]
|
|
<input type="hidden" name="frameworkcode" value="[% framework %]" />
|
|
|
|
<fieldset class="action">
|
|
<input type="submit" name="merge" value="Merge" />
|
|
<label for="report_fields">Fields to display in report:</label>
|
|
<input type="text" name="report_fields" id="report_fields" value="[% MergeReportFields %]" />
|
|
<span class="hint">(Example: "001,245ab,600")
|
|
</fieldset>
|
|
</div>
|
|
</form>
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|