693 lines
32 KiB
Cheetah
693 lines
32 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Cataloging › <!-- TMPL_IF NAME="biblionumber" -->Editing <!-- TMPL_VAR NAME="title" --> (Record Number <!-- TMPL_VAR name="biblionumber" -->)<!-- TMPL_ELSE -->Add MARC Record<!-- /TMPL_IF --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/yui/plugins/bubbling-min.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
|
|
var fields_in_use = {};
|
|
$(document).ready(function() {
|
|
$('#addbibliotabs > ul').tabs().bind('show.ui-tabs', function(e, ui) {
|
|
$("#"+ui.panel.id+" input:eq(0)").focus();
|
|
});
|
|
$('.tag').each(function() {
|
|
var field_id = this.getAttribute('id').substring(0, 7);
|
|
if (field_id in fields_in_use) {
|
|
fields_in_use[field_id]++;
|
|
} else {
|
|
fields_in_use[field_id] = 1;
|
|
}
|
|
});
|
|
$('.subfield_line').each(function() {
|
|
var field_id = this.getAttribute('id').substring(0, 12);
|
|
if (field_id in fields_in_use) {
|
|
fields_in_use[field_id]++;
|
|
} else {
|
|
fields_in_use[field_id] = 1;
|
|
}
|
|
});
|
|
});
|
|
|
|
$('#header_search > ul').tabs().bind('show.ui-tabs', function(e, ui) { $('#header_search > div:not(.ui-tabs-hide)').find('input').eq(0).focus(); });
|
|
|
|
function confirmnotdup(){
|
|
$("#confirm_not_duplicate").attr("value","1");
|
|
// alert(_("Not a duplicate confirmed. Please click on Add biblio to save the record"));
|
|
var checkform = $("#f");
|
|
Check(checkform);
|
|
}
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
function Check(){
|
|
var StrAlert = AreMandatoriesNotOk();
|
|
if( ! StrAlert ){
|
|
document.f.submit();
|
|
return true;
|
|
} else {
|
|
alert(StrAlert);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function Dopop(link,i) {
|
|
defaultvalue = document.getElementById(i).value;
|
|
window.open(link+"&result="+defaultvalue,"value builder",'width=700,height=550,toolbar=false,scrollbars=yes');
|
|
}
|
|
|
|
/**
|
|
* 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=<!-- TMPL_VAR NAME="biblionumber" -->"+strQuery,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* check if mandatory subfields are written
|
|
*/
|
|
function AreMandatoriesNotOk(){
|
|
var mandatories = new Array();
|
|
var tab = new Array();
|
|
var label = new Array();
|
|
var flag=0;
|
|
var tabflag= new Array();
|
|
<!-- TMPL_LOOP NAME='BIG_LOOP' --><!-- TMPL_LOOP NAME='innerloop' --><!-- TMPL_LOOP NAME='subfield_loop'--><!-- TMPL_IF NAME='mandatory'-->mandatories.push("<!-- TMPL_VAR NAME='id' -->");
|
|
tab.push("<!-- TMPL_VAR NAME='number' -->");
|
|
label.push("<!-- TMPL_VAR NAME='marc_lib' -->");
|
|
<!-- /TMPL_IF --><!-- /TMPL_LOOP --><!-- /TMPL_LOOP --><!-- /TMPL_LOOP -->
|
|
var StrAlert = _("Can't save this record because the following field aren't filled :\n\n");
|
|
for(var i=0,len=mandatories.length; i<len ; i++){
|
|
var tag=mandatories[i].substr(4,3);
|
|
var subfield=mandatories[i].substr(17,1);
|
|
var tagnumber=mandatories[i].substr(19,mandatories[i].lastIndexOf("_")-19);
|
|
tabflag[tag+subfield+tagnumber]=new Array();
|
|
tabflag[tag+subfield+tagnumber][0]=0;
|
|
if( ! document.getElementById(mandatories[i]).value){
|
|
tabflag[tag+subfield+tagnumber][0] = 0 + tabflag[tag+subfield+tagnumber] ;
|
|
document.getElementById(mandatories[i]).setAttribute('class','subfield_not_filled');
|
|
document.getElementById(mandatories[i]).focus();
|
|
tabflag[tag+subfield+tagnumber][1]=label[i];
|
|
tabflag[tag+subfield+tagnumber][2]=tab[i];
|
|
} else {
|
|
tabflag[tag+subfield+tagnumber][0] = 1;
|
|
}
|
|
}
|
|
for (var tagsubfieldid in tabflag){
|
|
if (tabflag[tagsubfieldid][0]==0){
|
|
var tag=tagsubfieldid.substr(0,3);
|
|
var subfield=tagsubfieldid.substr(3,1);
|
|
StrAlert += "\t* "+_("tag ")+tag+_(" subfield ")+subfield+" "+tabflag[tagsubfieldid][1]+_(" in tab ")+tabflag[tagsubfieldid][2]+"\n";
|
|
//StrAlert += "\t* "+label[i]+_(" in tab ")+tab[i]+"\n";
|
|
flag=1;
|
|
}
|
|
}
|
|
if(flag){
|
|
return StrAlert;
|
|
} else {
|
|
return flag;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* check if z3950 mandatories are set or not
|
|
*/
|
|
function GetZ3950Terms(){
|
|
var strQuery="&frameworkcode="+document.forms['f'].frameworkcode.value;
|
|
var mandatories = new Array();
|
|
var mandatories_label = new Array();
|
|
<!-- TMPL_LOOP NAME='BIG_LOOP' --><!-- TMPL_LOOP NAME='innerloop' --><!-- TMPL_LOOP NAME='subfield_loop'--><!-- TMPL_IF NAME='z3950_mandatory'-->mandatories.push("<!-- TMPL_VAR NAME='id' -->");
|
|
mandatories_label.push("<!-- TMPL_VAR NAME='z3950_mandatory' -->");<!-- /TMPL_IF --><!-- /TMPL_LOOP --><!-- /TMPL_LOOP --><!-- /TMPL_LOOP -->
|
|
|
|
for(var i=0,len=mandatories.length; i<len ; i++){
|
|
var field_value = document.getElementById(mandatories[i]).value;
|
|
if( field_value ){
|
|
strQuery += "&"+mandatories_label[i]+"="+field_value;
|
|
}
|
|
}
|
|
return strQuery;
|
|
}
|
|
|
|
function Changefwk(FwkList) {
|
|
var fwk = FwkList.options[FwkList.selectedIndex].value;
|
|
window.location = "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!--TMPL_VAR Name="biblionumber"-->&breedingid=<!-- TMPL_VAR name="breedingid" -->&frameworkcode="+fwk;
|
|
|
|
}
|
|
|
|
function openAuth(tagid,authtype,X) {
|
|
// defaultid=document.getElementById(subfieldid);
|
|
// alert("X"+X);
|
|
Y=X.parentNode.getAttribute("id");
|
|
// alert("tagid"+Y);
|
|
newin=window.open("../authorities/auth_finder.pl?authtypecode="+ authtype+ "&tagid="+Y, "value builder",'width=700,height=550,toolbar=false,scrollbars=yes');
|
|
}
|
|
|
|
|
|
function ExpandField(index) {
|
|
var original = document.getElementById(index); //original <div>
|
|
var divs = original.getElementsByTagName('div');
|
|
for(var i=0,divslen = divs.length ; i<divslen ; i++){ // foreach div
|
|
if(divs[i].getAttribute('id').match(/^subfield/)){ // if it s a subfield
|
|
if (divs[i].style.display == 'block') {
|
|
divs[i].style.display = 'none';
|
|
} else {
|
|
divs[i].style.display = 'block';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* To clone a field or a subfield by clicking on '+' button
|
|
*/
|
|
function CloneField(index) {
|
|
var original = document.getElementById(index); //original <div>
|
|
fields_in_use[index.substr(0, 7)]++;
|
|
var clone = original.cloneNode(true);
|
|
var new_key = CreateKey();
|
|
var new_id = original.getAttribute('id')+new_key;
|
|
|
|
clone.setAttribute('id',new_id); // setting a new id for the parent div
|
|
|
|
var divs = clone.getElementsByTagName('div');
|
|
|
|
<!-- TMPL_UNLESS NAME='hide_marc'--> // No indicator if hide_marc
|
|
// setting a new name for the new indicator
|
|
for(var i=0; i < 2; i++) {
|
|
var indicator = clone.getElementsByTagName('input')[i];
|
|
indicator.setAttribute('name',indicator.getAttribute('name')+new_key);
|
|
}
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
// settings all subfields
|
|
for(var i=0,divslen = divs.length ; i<divslen ; i++){ // foreach div
|
|
if(divs[i].getAttribute("id").match(/^subfield/)){ // if it s a subfield
|
|
|
|
// set the attribute for the new 'div' subfields
|
|
divs[i].setAttribute('id',divs[i].getAttribute('id')+new_key);
|
|
|
|
var inputs = divs[i].getElementsByTagName('input');
|
|
var id_input = "";
|
|
|
|
inputs[0].setAttribute('id',inputs[0].getAttribute('id')+new_key);
|
|
inputs[0].setAttribute('name',inputs[0].getAttribute('name')+new_key);
|
|
var id_input;
|
|
try {
|
|
id_input = inputs[1].getAttribute('id')+new_key;
|
|
inputs[1].setAttribute('id',id_input);
|
|
inputs[1].setAttribute('name',inputs[1].getAttribute('name')+new_key);
|
|
} catch(e) {
|
|
try{ // it s a select if it is not an input
|
|
var selects = divs[i].getElementsByTagName('select');
|
|
id_input = selects[0].getAttribute('id')+new_key;
|
|
selects[0].setAttribute('id',id_input);
|
|
selects[0].setAttribute('name',selects[0].getAttribute('name')+new_key);
|
|
}catch(e2){ // it is a textarea if it s not a select or an input
|
|
var textaeras = divs[i].getElementsByTagName('textarea');
|
|
id_input = textaeras[0].getAttribute('id')+new_key;
|
|
textaeras[0].setAttribute('id',id_input);
|
|
textaeras[0].setAttribute('name',textaeras[0].getAttribute('name')+new_key);
|
|
}
|
|
}
|
|
|
|
<!-- TMPL_UNLESS NAME='advancedMARCEditor'-->
|
|
// when cloning a subfield, re set its label too.
|
|
var labels = divs[i].getElementsByTagName('label');
|
|
labels[0].setAttribute('for',id_input);
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
<!-- TMPL_UNLESS NAME='hide_marc'-->
|
|
// updating javascript parameters on button up
|
|
var imgs = divs[i].getElementsByTagName('img');
|
|
imgs[0].setAttribute('onclick',"upSubfield(\'"+divs[i].getAttribute('id')+"\');");
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
// setting its '+' and '-' buttons
|
|
try {
|
|
var spans = divs[i].getElementsByTagName('span');
|
|
for (var j = 0; j < spans.length; j++) {
|
|
if(spans[j].getAttribute('class') == 'buttonPlus'){
|
|
spans[j].setAttribute('onclick',"CloneSubfield('" + divs[i].getAttribute('id') + "')");
|
|
} else if (spans[j].getAttribute('class') == 'buttonMinus') {
|
|
spans[j].setAttribute('onclick',"UnCloneField('" + divs[i].getAttribute('id') + "')");
|
|
}
|
|
}
|
|
}
|
|
catch(e){
|
|
// do nothig if ButtonPlus & CloneButtonPlus don t exist.
|
|
}
|
|
|
|
// button ...
|
|
var spans=0;
|
|
try {
|
|
spans = divs[i].getElementsByTagName('a');
|
|
} catch(e) {
|
|
// no spans
|
|
}
|
|
if(spans){
|
|
var buttonDot;
|
|
if(!CloneButtonPlus){ // it s impossible to have + ... (buttonDot AND buttonPlus)
|
|
buttonDot = spans[0];
|
|
if(buttonDot){
|
|
// 2 possibilities :
|
|
try{
|
|
var buttonDotOnClick = buttonDot.getAttribute('onclick');
|
|
if(buttonDotOnClick.match('Clictag')){ // -1- It s a plugin
|
|
var re = /\('.*'\)/i;
|
|
buttonDotOnClick = buttonDotOnClick.replace(re,"('"+inputs[1].getAttribute('id')+"')");
|
|
if(buttonDotOnClick){
|
|
buttonDot.setAttribute('onclick',buttonDotOnClick);
|
|
}
|
|
} else {
|
|
if(buttonDotOnClick.match('Dopop')) { // -2- It's a auth value
|
|
var re1 = /&index=.*',/;
|
|
var re2 = /,.*\)/;
|
|
|
|
buttonDotOnClick = buttonDotOnClick.replace(re1,"&index="+inputs[1].getAttribute('id')+"',");
|
|
buttonDotOnClick = buttonDotOnClick.replace(re2,",'"+inputs[1].getAttribute('id')+"')");
|
|
|
|
if(buttonDotOnClick){
|
|
buttonDot.setAttribute('onclick',buttonDotOnClick);
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
// do not copy the script section.
|
|
var script = spans[0].getElementsByTagName('script')[0];
|
|
spans[0].removeChild(script);
|
|
} catch(e) {
|
|
// do nothing if there is no script
|
|
}
|
|
}catch(e){}
|
|
}
|
|
}
|
|
}
|
|
<!-- TMPL_UNLESS NAME='hide_marc'-->
|
|
var buttonUp = divs[i].getElementsByTagName('img')[0];
|
|
buttonUp.setAttribute('onclick',"upSubfield('" + divs[i].getAttribute('id') + "')");
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
} else { // it's a indicator div
|
|
if(divs[i].getAttribute('id').match(/^div_indicator/)){
|
|
var inputs = divs[i].getElementsByTagName('input');
|
|
inputs[0].setAttribute('id',inputs[0].getAttribute('id')+new_key);
|
|
inputs[1].setAttribute('id',inputs[1].getAttribute('id')+new_key);
|
|
|
|
var CloneButtonPlus;
|
|
try {
|
|
var anchors = divs[i].getElementsByTagName('a');
|
|
for (var j = 0; j < anchors.length; j++) {
|
|
if (anchors[j].getAttribute('class') == 'buttonPlus') {
|
|
anchors[j].setAttribute('onclick',"CloneField('" + new_id + "')");
|
|
} else if (anchors[j].getAttribute('class') == 'buttonMinus') {
|
|
anchors[j].setAttribute('onclick',"UnCloneField('" + new_id + "')");
|
|
}
|
|
}
|
|
}
|
|
catch(e){
|
|
// do nothig CloneButtonPlus doesn't exist.
|
|
}
|
|
// setting its 'Expand' property
|
|
var ExpandFieldA=0;
|
|
try {
|
|
ExpandFieldA = divs[i].getElementsByTagName('a')[0];
|
|
ExpandFieldA.setAttribute('onclick',"ExpandField('" + divs[i].parentNode.getAttribute('id') + "')");
|
|
}
|
|
catch(e){
|
|
// do nothig if ButtonPlus & CloneButtonPlus don t exist.
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// insert this line on the page
|
|
original.parentNode.insertBefore(clone,original.nextSibling);
|
|
}
|
|
|
|
function CloneSubfield(index){
|
|
var original = document.getElementById(index); //original <div>
|
|
fields_in_use[index.substr(0, 12)]++;
|
|
var clone = original.cloneNode(true);
|
|
var new_key = CreateKey();
|
|
var new_id = original.getAttribute('id')+new_key;
|
|
|
|
// set the attribute for the new 'div' subfields
|
|
var inputs = clone.getElementsByTagName('input');
|
|
var selects = clone.getElementsByTagName('select');
|
|
var textareas = clone.getElementsByTagName('textarea');
|
|
|
|
// input
|
|
var id_input = "";
|
|
for(var i=0,len=inputs.length; i<len ; i++ ){
|
|
id_input = inputs[i].getAttribute('id')+new_key;
|
|
inputs[i].setAttribute('id',id_input);
|
|
inputs[i].setAttribute('name',inputs[i].getAttribute('name')+new_key);
|
|
}
|
|
|
|
// select
|
|
for(var i=0,len=selects.length; i<len ; i++ ){
|
|
id_input = selects[i].getAttribute('id')+new_key;
|
|
selects[i].setAttribute('id',selects[i].getAttribute('id')+new_key);
|
|
selects[i].setAttribute('name',selects[i].getAttribute('name')+new_key);
|
|
}
|
|
|
|
// textarea
|
|
for(var i=0,len=textareas.length; i<len ; i++ ){
|
|
id_input = textareas[i].getAttribute('id')+new_key;
|
|
textareas[i].setAttribute('id',textareas[i].getAttribute('id')+new_key);
|
|
textareas[i].setAttribute('name',textareas[i].getAttribute('name')+new_key);
|
|
}
|
|
|
|
<!-- TMPL_UNLESS NAME='advancedMARCEditor' -->
|
|
// when cloning a subfield, reset its label too.
|
|
var label = clone.getElementsByTagName('label')[0];
|
|
label.setAttribute('for',id_input);
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
// setting a new if for the parent div
|
|
clone.setAttribute('id',new_id);
|
|
|
|
try {
|
|
var buttonUp = clone.getElementsByTagName('img')[0];
|
|
buttonUp.setAttribute('onclick',"upSubfield('" + new_id + "')");
|
|
var spans = clone.getElementsByTagName('span');
|
|
if(spans.length){
|
|
for(var i = 0 ,lenspans = spans.length ; i < lenspans ; i++){
|
|
if(spans[i].getAttribute('class') == 'buttonPlus'){
|
|
spans[i].setAttribute('onclick',"CloneSubfield('" + new_id + "')");
|
|
} else if (spans[i].getAttribute('class') == 'buttonMinus') {
|
|
spans[i].setAttribute('onclick',"UnCloneField('" + new_id + "')");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch(e){
|
|
// do nothig if ButtonPlus & CloneButtonPlus don't exist.
|
|
}
|
|
// insert this line on the page
|
|
original.parentNode.insertBefore(clone,original.nextSibling);
|
|
}
|
|
|
|
/**
|
|
* This function removes or clears unwanted subfields
|
|
*/
|
|
function UnCloneField(index) {
|
|
var original = document.getElementById(index);
|
|
var field_id;
|
|
if (index.match("tag")) {
|
|
field_id = index.substr(0, 7);
|
|
} else {
|
|
field_id = index.substr(0, 12);
|
|
}
|
|
if (1 == fields_in_use[field_id]) {
|
|
// clear inputs, but don't delete
|
|
$(":input.input_marceditor", original).each(function(){
|
|
// thanks to http://www.learningjquery.com/2007/08/clearing-form-data for
|
|
// hint about clearing selects correctly
|
|
var type = this.type;
|
|
var tag = this.tagName.toLowerCase();
|
|
if (type == 'text' || type == 'password' || tag == 'textarea') {
|
|
this.value = "";
|
|
} else if (type == 'checkbox' || type == 'radio') {
|
|
this.checked = false;
|
|
} else if (tag == 'select') {
|
|
this.selectedIndex = -1;
|
|
}
|
|
});
|
|
$(":input.indicator", original).val("");
|
|
} else {
|
|
original.parentNode.removeChild(original);
|
|
fields_in_use[field_id]--;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This function create a random number
|
|
*/
|
|
function CreateKey(){
|
|
return parseInt(Math.random() * 100000);
|
|
}
|
|
|
|
/**
|
|
* This function allows to move a subfield up by clickink on the 'up' button .
|
|
*/
|
|
function upSubfield(index) {
|
|
try{
|
|
var line = document.getElementById(index); // get the line where the user has clicked.
|
|
} catch(e) {
|
|
return; // this line doesn't exist...
|
|
}
|
|
var tag = line.parentNode; // get the dad of this line. (should be "<div id='tag_...'>")
|
|
|
|
// getting all subfields for this tag
|
|
var subfields = tag.getElementsByTagName('div');
|
|
var subfieldsLength = subfields.length;
|
|
|
|
if(subfieldsLength<=1) return; // nothing to do if there is just one subfield.
|
|
|
|
// among all subfields
|
|
for(var i=0;i<subfieldsLength;i++){
|
|
if(subfields[i].getAttribute('id') == index){ //looking for the subfield which is clicked :
|
|
if(i==1){ // if the clicked subfield is on the top
|
|
tag.appendChild(subfields[1]);
|
|
return;
|
|
} else {
|
|
var lineAbove = subfields[i-1];
|
|
tag.insertBefore(line,lineAbove);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function unHideSubfield(index,labelindex) { // FIXME :: is it used ?
|
|
subfield = document.getElementById(index);
|
|
subfield.style.display = 'block';
|
|
label = document.getElementById(labelindex);
|
|
label.style.display='none';
|
|
}
|
|
//]]>
|
|
</script>
|
|
<link type="text/css" rel="stylesheet" href="<!-- TMPL_VAR NAME="themelang" -->/css/addbiblio.css" />
|
|
</head>
|
|
<body>
|
|
<div id="yui-cms-loading">
|
|
<div id="yui-cms-float">
|
|
Loading, please wait...
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/yui/plugins/loading-min.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
(function() {
|
|
// configuring the loading mask
|
|
YAHOO.widget.Loading.config({
|
|
opacity: 0.8
|
|
});
|
|
})();
|
|
//]]>
|
|
</script>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloguing</a> › <!-- TMPL_IF NAME="biblionumber" -->Editing <em><!-- TMPL_VAR NAME="title" --></em> (Record Number <!-- TMPL_VAR name="biblionumber" -->)<!-- TMPL_ELSE -->Add MARC Record<!-- /TMPL_IF --></div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-g">
|
|
|
|
|
|
|
|
<h1><!-- TMPL_IF NAME="biblionumber" -->Editing <em><!-- TMPL_VAR NAME="title" --></em> (Record Number <!-- TMPL_VAR name="biblionumber" -->)</h1><!-- TMPL_ELSE -->Add MARC Record</h1><!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_UNLESS name="number" -->
|
|
<!-- show duplicate warning on tab 0 only -->
|
|
<!-- TMPL_IF name="duplicatebiblionumber" -->
|
|
<div class="dialog alert">
|
|
<h4>Duplicate Record suspected</h4>
|
|
<p>Is this a duplicate of <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR name="duplicatebiblionumber" -->" onclick="openWindow('../MARCdetail.pl?biblionumber=<!-- TMPL_VAR name="duplicatebiblionumber" -->&popup=1', 'Duplicate biblio'; return false;)"><!-- TMPL_VAR name="duplicatetitle" --></a>?</p>
|
|
<form action="/cgi-bin/koha/cataloguing/additem.pl" method="get">
|
|
<input type="hidden" name="biblionumber" value="<!-- TMPL_VAR name="duplicatebiblionumber" -->" />
|
|
<input type="submit" class="edit" value="Yes: Edit existing items" />
|
|
</form>
|
|
<form action="/cgi-bin/koha/cataloguing/addbiblio.pl" method="get">
|
|
<input type="submit" class="save" onclick="confirmnotdup(); return false;" value="No: Save as New Record" />
|
|
</form>
|
|
</div>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
<!--TMPL_IF Name="done"-->
|
|
<script type="text/javascript">
|
|
opener.document.forms['f'].biblionumber.value=<!--TMPL_VAR Name="biblionumber"-->;
|
|
opener.document.forms['f'].title.value='<!--TMPL_VAR Name="title" ESCAPE="HTML"-->';
|
|
window.close();
|
|
</script>
|
|
<!--TMPL_ELSE-->
|
|
<form method="post" name="f" id="f" action="/cgi-bin/koha/cataloguing/addbiblio.pl" onsubmit="return Check();">
|
|
<input type="hidden" value="0" id="confirm_not_duplicate" name="confirm_not_duplicate" />
|
|
<!-- /TMPL_IF -->
|
|
|
|
<div id="toolbar">
|
|
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
|
|
// prepare DOM for YUI Toolbar
|
|
|
|
$(document).ready(function() {
|
|
$("#z3950searchc").empty();
|
|
yuiToolbar();
|
|
});
|
|
|
|
// YUI Toolbar Functions
|
|
|
|
function yuiToolbar() {
|
|
new YAHOO.widget.Button("addbiblio");
|
|
new YAHOO.widget.Button({
|
|
id: "z3950search",
|
|
type: "button",
|
|
label: _("z39.50 Search"),
|
|
container: "z3950searchc",
|
|
onclick: {fn:function(){PopupZ3950()}}
|
|
});
|
|
}
|
|
|
|
//]]>
|
|
</script>
|
|
|
|
<ul class="toolbar">
|
|
<li><input id="addbiblio" type="submit" value="Save" /></li>
|
|
<li id="z3950searchc"><input type="button" id="z3950search" value="z39.50 Search" onclick="PopupZ3950(); return false;" /></li>
|
|
<li id="changeframework"><label for="Frameworks">Change framework: </label>
|
|
<select name="Frameworks" id="Frameworks" onchange="Changefwk(this);">
|
|
<option value="">Default</option>
|
|
<!-- TMPL_LOOP NAME="frameworkcodeloop" -->
|
|
<option value="<!-- TMPL_VAR NAME="value"-->" <!-- TMPL_VAR NAME="selected" -->>
|
|
<!-- TMPL_VAR NAME="frameworktext" -->
|
|
</option>
|
|
<!-- /TMPL_LOOP -->
|
|
</select>
|
|
<input type="hidden" name="op" value="addbiblio" /></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--TMPL_IF Name="popup"-->
|
|
<input type="hidden" name="mode" value="popup" />
|
|
<!--/TMPL_IF-->
|
|
<input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR NAME="frameworkcode" -->" />
|
|
<input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="biblionumber" -->" />
|
|
<input type="hidden" name="breedingid" value="<!-- TMPL_VAR NAME="breedingid" -->" />
|
|
|
|
<div id="addbibliotabs" class="toptabs numbered">
|
|
<ul><!-- TMPL_LOOP name="BIG_LOOP" -->
|
|
<li> <!-- TMPL_IF name="number" -->
|
|
<a href="/cgi-bin/koha/cataloguing/addbiblio.pl#tab<!-- TMPL_VAR name="number" -->XX"><!-- TMPL_VAR name="number"--></a>
|
|
<!-- TMPL_ELSE -->
|
|
<a href="/cgi-bin/koha/cataloguing/addbiblio.pl#tab<!-- TMPL_VAR name="number" -->XX"><!-- TMPL_VAR name="number"--></a>
|
|
<!-- /TMPL_IF --></li>
|
|
<!-- /TMPL_LOOP --></ul>
|
|
|
|
<!-- TMPL_LOOP name="BIG_LOOP" -->
|
|
<!-- hide every tab except the 1st -->
|
|
<!-- TMPL_IF name="number" -->
|
|
<div id="tab<!-- TMPL_VAR name="number" -->XX">
|
|
<!-- TMPL_ELSE -->
|
|
<div id="tab<!-- TMPL_VAR name="number" -->XX">
|
|
<!-- /TMPL_IF -->
|
|
|
|
|
|
<!-- TMPL_LOOP NAME="innerloop" -->
|
|
<!-- TMPL_IF NAME="tag" -->
|
|
<div class="tag" id="tag_<!-- TMPL_VAR name="tag"-->_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->">
|
|
<div class="tag_title" id="div_indicator_tag_<!-- TMPL_VAR name="tag"-->_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->">
|
|
<!-- TMPL_UNLESS name="hide_marc" -->
|
|
<span class="tagnum" title="<!-- TMPL_VAR NAME="tag_lib" -->"><!-- TMPL_VAR NAME="tag" --></span>
|
|
<!-- TMPL_IF NAME="fixedfield" -->
|
|
<input tabindex="1" class="indicator flat" type="text" style="display:none;" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator1_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" size="1" maxlength="1" value="<!-- TMPL_VAR NAME="indicator1" -->" />
|
|
<input tabindex="1" class="indicator flat" type="text" style="display:none;" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator2_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" size="1" maxlength="1" value="<!-- TMPL_VAR NAME="indicator2" -->" />
|
|
<!-- TMPL_ELSE -->
|
|
<input tabindex="1" class="indicator flat" type="text" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator1_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" size="1" maxlength="1" value="<!-- TMPL_VAR NAME="indicator1" -->" />
|
|
<input tabindex="1" class="indicator flat" type="text" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator2_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" size="1" maxlength="1" value="<!-- TMPL_VAR NAME="indicator2" -->" />
|
|
<!-- /TMPL_IF --> -
|
|
<!-- TMPL_ELSE -->
|
|
<!-- TMPL_IF NAME="fixedfield" -->
|
|
<input tabindex="1" type="hidden" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator1_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" value="<!-- TMPL_VAR NAME="indicator1" -->" />
|
|
<input tabindex="1" type="hidden" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator2_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" value="<!-- TMPL_VAR NAME="indicator2" -->" />
|
|
<!-- TMPL_ELSE -->
|
|
<input tabindex="1" type="hidden" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator1_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" value="<!-- TMPL_VAR NAME="indicator1" -->" />
|
|
<input tabindex="1" type="hidden" name="tag_<!-- TMPL_VAR NAME="tag" -->_indicator2_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->" value="<!-- TMPL_VAR NAME="indicator2" -->" />
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
<!-- TMPL_UNLESS NAME="advancedMARCEditor" -->
|
|
<a href="#" class="expandfield" onclick="ExpandField('tag_<!-- TMPL_VAR name="tag"-->_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->'); return false;" title="Click to Expand this Tag"><!-- TMPL_VAR NAME="tag_lib" --></a>
|
|
<!-- /TMPL_UNLESS -->
|
|
<!-- TMPL_IF name="repeatable" -->
|
|
<a href="#" class="buttonPlus" onclick="CloneField('tag_<!-- TMPL_VAR name="tag"-->_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->'); return false;" title="Repeat this Tag">+</a>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_UNLESS name="mandatory" -->
|
|
<a href="#" class="buttonMinus" onclick="UnCloneField('tag_<!-- TMPL_VAR name="tag"-->_<!-- TMPL_VAR NAME='index'--><!-- TMPL_VAR name="random" -->'); return false;" title="Delete this Tag">−</a>
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
</div>
|
|
|
|
<!-- TMPL_LOOP NAME="subfield_loop" -->
|
|
<!-- One line on the marc editor -->
|
|
<div class="subfield_line" style="<!-- TMPL_VAR NAME='visibility' -->; float: left; clear: left;" id="subfield<!-- TMPL_VAR NAME='tag' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->">
|
|
|
|
<!--TMPL_UNLESS NAME="advancedMARCEditor" -->
|
|
<label for="tag_<!-- TMPL_VAR NAME='tag'-->_subfield_<!-- TMPL_VAR NAME='subfield'-->_<!-- TMPL_VAR NAME='index'-->_<!-- TMPL_VAR NAME='index_subfield'-->" <!-- TMPL_IF NAME="fixedfield" --> style="display:none;" <!-- /TMPL_IF --> class="labelsubfield">
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
<!-- TMPL_UNLESS name="hide_marc" -->
|
|
<span class="subfieldcode"><!-- TMPL_IF NAME="fixedfield" -->
|
|
<img class="buttonUp" style="display:none;" src="<!-- TMPL_VAR NAME="themelang" -->/../img/up.png" onclick="upSubfield('subfield<!-- TMPL_VAR NAME='tag' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->')" alt="Move Up" title="Move Up" />
|
|
<!-- TMPL_ELSE -->
|
|
<img class="buttonUp" src="<!-- TMPL_VAR NAME="themelang" -->/../img/up.png" onclick="upSubfield('subfield<!-- TMPL_VAR NAME='tag' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->')" alt="Move Up" title="Move Up" />
|
|
<!-- /TMPL_IF -->
|
|
<input title="<!-- TMPL_VAR NAME='marc_lib_plain' -->" style=" <!-- TMPL_IF NAME="fixedfield" -->display:none; <!-- /TMPL_IF -->border:0;" type="text" name="tag_<!-- TMPL_VAR NAME='tag'-->_code_<!-- TMPL_VAR NAME='subfield'-->_<!-- TMPL_VAR NAME='index'-->_<!-- TMPL_VAR NAME='index_subfield'-->" value="<!-- TMPL_VAR NAME="subfield" -->" size="1" maxlength="1" class="flat" tabindex="0" />
|
|
</span>
|
|
<!-- TMPL_ELSE -->
|
|
<input type="hidden" name="tag_<!-- TMPL_VAR NAME='tag'-->_code_<!-- TMPL_VAR NAME='subfield'-->_<!-- TMPL_VAR NAME='index'-->_<!-- TMPL_VAR NAME='index_subfield'-->" value="<!-- TMPL_VAR NAME="subfield" -->" />
|
|
</span>
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
<!-- TMPL_UNLESS NAME="advancedMARCEditor" -->
|
|
<!-- TMPL_IF name="mandatory" --><span class="subfield subfield_mandatory"><!-- TMPL_ELSE --><span class="subfield"><!-- /TMPL_IF -->
|
|
<!-- TMPL_VAR NAME="marc_lib_plain" -->
|
|
</span>
|
|
</label>
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
<!-- TMPL_VAR NAME="marc_value" -->
|
|
|
|
<!-- TMPL_IF NAME="repeatable" -->
|
|
<span class="buttonPlus" onclick="CloneSubfield('subfield<!-- TMPL_VAR NAME='tag' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->')">+</span>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_UNLESS NAME="mandatory" -->
|
|
<span class="buttonMinus" onclick="UnCloneField('subfield<!-- TMPL_VAR NAME='tag' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->')">−</span>
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
</div>
|
|
<!-- End of the line -->
|
|
|
|
<!-- /TMPL_LOOP -->
|
|
</div>
|
|
<!-- /TMPL_IF --><!-- tag -->
|
|
<!-- /TMPL_LOOP -->
|
|
</div>
|
|
<!-- /TMPL_LOOP -->
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|