adb3777e2e
Simplifies the adding of analytical records and ensures that the data populating the 773 tag is correct. From the host record add child record is selected and create bib is entered to generate a new record with host item tag populated from the parent Caveat: currently prepare_host_field only returns a field for MARC21. Values for UNIMARC and NORMARC can easily be added but should be done by someone familar with those formats and conventions Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> To test: - create a new record --> if you enter a value in 001 anaytics will use that in $w for linking later --> if you set 000/LDR 19 - Multipart resource record level to 'a' there will be a link from the parent record to the child record later - save your record and go to the staff detail page - in toolbar select 'New' > 'New child record' - check field 773, 245 and 001 from the parent record should have been copied there - check links between child and parent in staff Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Fixed conflicts in all 3 files. Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com> Works properly for MARC21, and follow-up adds support for NORMARC and UNIMARC.
244 lines
11 KiB
PHP
244 lines
11 KiB
PHP
<div id="toolbar">
|
|
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
|
|
/* this function open a popup to search on z3950 server. */
|
|
function PopupZ3950() {
|
|
var strQuery = GetZ3950Terms();
|
|
if(strQuery){
|
|
window.open("/cgi-bin/koha/cataloguing/z3950_search.pl?biblionumber=[% biblionumber %]"+strQuery,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes');
|
|
}
|
|
}
|
|
|
|
/* provide Z3950 search points */
|
|
function GetZ3950Terms(){
|
|
var strQuery="&frameworkcode=";
|
|
[% FOREACH z3950_search_param IN z3950_search_params %]
|
|
strQuery += "&" + "[% z3950_search_param.name |html %]" + "=" + "[% z3950_search_param.encvalue |html %]";
|
|
[% END %]
|
|
return strQuery;
|
|
}
|
|
[% END %]
|
|
function addToCart() { addRecord('[% biblionumber %]'); }
|
|
function addToShelf() { window.open('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?biblionumber=[% biblionumber %]','Add_to_virtualshelf','width=500,height=400,toolbar=false,scrollbars=yes');
|
|
}
|
|
function printBiblio() {window.open('/cgi-bin/koha/catalogue/detailprint.pl?biblionumber=[% biblionumber %]','Print_Biblio','width=700,height=500,toolbar=false,scrollbars=yes');
|
|
}
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
|
|
function confirm_deletion() {
|
|
var count = [% count %];
|
|
var is_confirmed;
|
|
if (count>0){
|
|
is_confirmed= alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.'));
|
|
} else{
|
|
is_confirmed= confirm(_('Are you sure you want to delete this record? '));
|
|
}
|
|
|
|
if (is_confirmed) {
|
|
if (count>0){
|
|
// window.location="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]";
|
|
} else {
|
|
window.location="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&biblionumber=[% biblionumber %]";
|
|
}
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]
|
|
function confirm_items_deletion() {
|
|
var count = [% count %];
|
|
if(count > 0){
|
|
if(confirm(_('Are you sure you want to delete the ' + count + ' attached items? '))){
|
|
window.location="/cgi-bin/koha/cataloguing/additem.pl?op=delallitems&biblionumber=[% biblionumber %]";
|
|
}else{
|
|
return false;
|
|
}
|
|
} else {
|
|
alert(_("This record has no items."));
|
|
return false;
|
|
}
|
|
}
|
|
[% END %]
|
|
// prepare DOM for YUI Toolbar
|
|
|
|
$(document).ready(function() {
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]$("#edititems").parent().remove();
|
|
$("#newitem").parent().remove();[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]$("#duplicatebiblio").parent().remove();
|
|
$("#deletebiblio").parent().remove();
|
|
$("#z3950searchc").empty();[% END %]
|
|
[% IF ( CAN_user_serials_create_subscription ) %]$("#newsub").parent().remove();[% END %]
|
|
$("#newbiblio").parent().remove();
|
|
$("#editbiblio").parent().remove();
|
|
$("#addtoshelf").parent().remove();
|
|
$("#printbiblio").parent().remove();
|
|
$("#placehold").parent().remove();
|
|
$("#export").remove();
|
|
});
|
|
|
|
YAHOO.util.Event.onContentReady("cattoolbar", function () {
|
|
// Menu for new record, new item, new subscription
|
|
var newmenu = [
|
|
[% IF CAN_user_editcatalogue_edit_catalogue %]
|
|
{text: _("New Record"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl" },
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]
|
|
{text: _("New Item"), url: "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]#additema" },
|
|
[% END %]
|
|
[% IF ( CAN_user_serials_create_subscription ) %]
|
|
{text: _("New Subscription"), url: "/cgi-bin/koha/serials/subscription-add.pl?biblionumber_for_new_subscription=[% biblionumber %]"},
|
|
[% END %]
|
|
[% IF ( EasyAnalyticalRecords && CAN_user_editcatalogue_edit_catalogue ) %]
|
|
{text: _("Analyze Items"), url: "/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]&analyze=1" },
|
|
[% END %]
|
|
[% IF CAN_user_editcatalogue_edit_catalogue %]
|
|
{text: _("New Child Record"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?parentbiblionumber=[% biblionumber %]" },
|
|
[% END %]
|
|
];
|
|
if(newmenu.length){
|
|
new YAHOO.widget.Button({
|
|
type: "menu",
|
|
label: _("New"),
|
|
id: "newmenuc",
|
|
name: "newmenubutton",
|
|
menu: newmenu,
|
|
container: this
|
|
});
|
|
}
|
|
var editmenu = [
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Edit Record"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]&frameworkcode=&op=" },[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]{ text: _("Edit Items"), url: "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]" },[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]{ text: _("Attach Item"), url: "/cgi-bin/koha/cataloguing/moveitem.pl?biblionumber=[% biblionumber %]" },[% END %]
|
|
[% IF ( EasyAnalyticalRecords ) %][% IF ( CAN_user_editcatalogue_edit_items ) %]{ text: _("Link to Host Item"), url: "/cgi-bin/koha/cataloguing/linkitem.pl?biblionumber=[% biblionumber %]" },[% END %][% END %]
|
|
[% IF ( LocalCoverImages || OPACLocalCoverImages) %][% IF ( CAN_user_tools_upload_local_cover_images ) %]{ text: _("Upload Image"), url: "/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=[% biblionumber %]&filetype=image" },[% END %][% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Edit as New (Duplicate)"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]&frameworkcode=&op=duplicate" },[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Replace Record via Z39.50"), onclick: {fn: PopupZ3950 } },[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]{ text: _("Delete Record"), onclick: {fn: confirm_deletion }[% IF ( count ) %],id:'disabled'[% END %] },[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]{ text: _("Delete all Items"), onclick: {fn: confirm_items_deletion }[% UNLESS ( count ) %],id:'disabled'[% END %] }[% END %]
|
|
];
|
|
if(editmenu.length){
|
|
new YAHOO.widget.Button({
|
|
type: "menu",
|
|
label: _("Edit"),
|
|
id: "editmenuc",
|
|
name: "editmenubutton",
|
|
menu: editmenu,
|
|
container: this
|
|
});
|
|
}
|
|
var savemenu = [
|
|
{ text: _("MODS (XML)"), url: "/cgi-bin/koha/catalogue/export.pl?format=mods&op=export&bib=[% biblionumber %]" },
|
|
{ text: _("Dublin Core (XML)"), url: "/cgi-bin/koha/catalogue/export.pl?format=dc&op=export&bib=[% biblionumber %]" },
|
|
{ text: _("MARCXML"), url: "/cgi-bin/koha/catalogue/export.pl?format=marcxml&op=export&bib=[% biblionumber %]" },
|
|
{ text: _("MARC (non-Unicode/MARC-8)"), url: "/cgi-bin/koha/catalogue/export.pl?format=marc8&op=export&bib=[% biblionumber %]" },
|
|
{ text: _("MARC (Unicode/UTF-8)"), url: "/cgi-bin/koha/catalogue/export.pl?format=utf8&op=export&bib=[% biblionumber %]" },
|
|
{ text: _("MARC (Unicode/UTF-8, Standard)"), url: "/cgi-bin/koha/catalogue/export.pl?format=marcstd&op=export&bib=[% biblionumber %]" }
|
|
];
|
|
|
|
new YAHOO.widget.Button({
|
|
type: "menu",
|
|
label: _("Save"),
|
|
id: "savemenuc",
|
|
name: "savemenubutton",
|
|
menu: savemenu,
|
|
container: this
|
|
});
|
|
|
|
var addtomenu = [
|
|
{ text: _("Cart"), onclick: { fn: addToCart } },
|
|
{ text: _("List"), onclick: { fn: addToShelf } }
|
|
];
|
|
|
|
new YAHOO.widget.Button({
|
|
type: "menu",
|
|
label: _("Add to"),
|
|
name: "addtomenubutton",
|
|
menu: addtomenu,
|
|
container: this
|
|
});
|
|
|
|
new YAHOO.widget.Button({
|
|
id: "printbiblio",
|
|
type: "button",
|
|
label: _("Print"),
|
|
container: this,
|
|
onclick: {fn: printBiblio }
|
|
});
|
|
[% IF ( CAN_user_reserveforothers ) %][% UNLESS ( norequests ) %]
|
|
[% IF ( holdfor ) %]
|
|
// Create an array of YAHOO.widget.MenuItem configuration properties
|
|
var onButtonClick = function () {
|
|
location.href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]";
|
|
}
|
|
var HoldForButtonMenu = [
|
|
{ text: _("Place hold"), url: "/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]" },
|
|
{ text: _("Place hold for")+ " [% holdfor_firstname %] [% holdfor_surname %] ([% holdfor_cardnumber %])", url: "/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]&findborrower=[% holdfor_cardnumber %]" }
|
|
];
|
|
|
|
// Instantiate a Split Button using the array of YAHOO.widget.MenuItem
|
|
// configuration properties as the value for the "menu"
|
|
// configuration attribute.
|
|
|
|
var HoldForButton = new YAHOO.widget.Button({
|
|
id: "holdfor",
|
|
type: "split",
|
|
label: _("Place hold"),
|
|
name: "holdfor",
|
|
menu: HoldForButtonMenu,
|
|
container: this,
|
|
onclick: { fn: onButtonClick }
|
|
});
|
|
[% ELSE %]
|
|
new YAHOO.widget.Button({
|
|
id: "placehold",
|
|
type: "link",
|
|
label: _("Place hold"),
|
|
container: this,
|
|
href: "/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]"
|
|
});
|
|
[% END %]
|
|
[% END %][% END %]
|
|
|
|
});
|
|
//]]>
|
|
</script>
|
|
|
|
<form method="post" name="f" id="f" action="/cgi-bin/koha/cataloguing/addbiblio.pl" onsubmit="return Check();">
|
|
|
|
<ul class="toolbar" id="cattoolbar">
|
|
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
|
|
<li><a id="newbiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl">New Record</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]
|
|
<li><a id="newitem" href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]">New Item</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_serials_create_subscription ) %]
|
|
<li><a id="newsub" href="/cgi-bin/koha/serials/subscription-add.pl?biblionumber_for_new_subscription=[% biblionumber %]">New Subscription</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
|
|
<li><a id="editbiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]&frameworkcode=[% current_framework %]&op=">Edit Record</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_items ) %]
|
|
<li><a id="edititems" href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]">Edit Items</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
|
|
<li><a id="duplicatebiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]&frameworkcode=[% current_framework %]&op=duplicate">Duplicate Record</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
|
|
<li><a id="deletebiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&biblionumber=[% biblionumber %]">Delete</a></li>
|
|
[% END %]
|
|
|
|
<li><a id="addtoshelf" href="/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?biblionumber=[% biblionumber %]">Add to shelf</a></li>
|
|
<li><a id="printbiblio" href="/cgi-bin/koha/catalogue/detailprint.pl?biblionumber=[% biblionumber %]">Print</a></li>
|
|
[% IF ( CAN_user_reserveforothers ) %]
|
|
[% UNLESS ( norequests ) %]<li><a id="placehold" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]">Place Hold</a></li>[% END %]
|
|
[% END %]
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<li id="z3950searchc"><input type="button" id="z3950search" value="Z39.50 Search" onclick="PopupZ3950(); return false;" /></li>[% END %]
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
|