4399daf0bd
librarian can edit only subscriptions on branches of his or subscription with no branch now. cannotedit is a calculated value in Mysql and transfered for process. Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
1209 lines
49 KiB
Cheetah
1209 lines
49 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Serials › <!-- TMPL_IF name="mod" --> Modify subscription to <!-- TMPL_VAR name="bibliotitle" --><!-- TMPL_ELSE -->New subscription<!-- /TMPL_IF --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="calendar.inc" -->
|
|
|
|
<script type="text/javascript">
|
|
<!--
|
|
|
|
// the english words used in display purposes
|
|
var text = new Array(_('Number'),_('Volume'),_('Issue'),_('Month'),_('Week'),_('Starting with:'),_('Rollover at:'),_('Choose Hemisphere:'),_('Northern'),_('Southern'),
|
|
_('Autumn'),_('Winter'),_('Spring'),_('Summer'),_('Fall'),_('Season'),_('Year'));
|
|
var is_season = 0;
|
|
var is_hemisphere = 1;
|
|
|
|
function YMDaToYWDa(S) {
|
|
with (new Date(Date.UTC(S[0], S[1] - 1, S[2]))) {
|
|
var DoW = getUTCDay();
|
|
setUTCDate(getUTCDate() - (DoW + 6) % 7 + 3);
|
|
var ms = valueOf();
|
|
setUTCMonth(0, 4);
|
|
var WN = Math.round((ms - valueOf()) / 604800000) + 1;
|
|
return [getUTCFullYear(), WN, DoW == 0 ? 7 : DoW];
|
|
}
|
|
}
|
|
function dayofyear(d) { // d is a Date object
|
|
var yn = d.getFullYear();
|
|
var mn = d.getMonth();
|
|
var dn = d.getDate();
|
|
var d1 = new Date(yn,0,1,12,0,0); // noon on Jan. 1
|
|
var d2 = new Date(yn,mn,dn,12,0,0); // noon on input date
|
|
var ddiff = Math.round((d2-d1)/864e5);
|
|
return ddiff+1;
|
|
}
|
|
|
|
|
|
// common pre defined number patterns
|
|
function num_pattern() {
|
|
var patternchoice = document.getElementById("numberpattern").value;
|
|
switch(patternchoice){
|
|
case "2":
|
|
document.f.add1.value=1;
|
|
document.f.add2.value=1;
|
|
document.f.add3.value=1;
|
|
document.f.every1.value=12;
|
|
document.f.every2.value=1;
|
|
document.f.every3.value=1;
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value=12;
|
|
document.f.whenmorethan3.value=4;
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value=1;
|
|
document.f.setto3.value=1;
|
|
/* document.f.lastvalue1.value=1;
|
|
document.f.lastvalue2.value=1;
|
|
document.f.lastvalue3.value=1;*/
|
|
document.f.numberingmethod.value=_('Vol {X}, No {Y}, Issue {Z}');
|
|
moreoptions(text[1],text[0],text[2]);
|
|
display_table(0); // toggle info box on (1) or off (0)
|
|
break;
|
|
case "3":
|
|
document.f.add1.value=1;
|
|
document.f.add2.value=1;
|
|
document.f.add3.value='';
|
|
document.f.every1.value=12;
|
|
document.f.every2.value=1;
|
|
document.f.every3.value='';
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value=12;
|
|
document.f.whenmorethan3.value='';
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value=1;
|
|
document.f.setto3.value='';
|
|
/* document.f.lastvalue1.value=1;
|
|
document.f.lastvalue2.value=1;
|
|
document.f.lastvalue3.value='';*/
|
|
document.f.numberingmethod.value=_('Vol {X}, No {Y}');
|
|
moreoptions(text[1],text[0]);
|
|
display_table(0);
|
|
break;
|
|
case "4":
|
|
document.f.add1.value=1;
|
|
document.f.add2.value=1;
|
|
document.f.add3.value='';
|
|
document.f.every1.value=12;
|
|
document.f.every2.value=1;
|
|
document.f.every3.value='';
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value=12;
|
|
document.f.whenmorethan3.value='';
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value=1;
|
|
document.f.setto3.value='';
|
|
document.f.numberingmethod.value=_('Vol {X}, Issue {Y}');
|
|
moreoptions(text[1],text[2]);
|
|
display_table(0);
|
|
break;
|
|
case "5":
|
|
var d = new Date(document.f.firstacquidate.value);
|
|
var smonth = d.getMonth();
|
|
document.f.add1.value=1;
|
|
document.f.add2.value=1;
|
|
document.f.add3.value='';
|
|
document.f.every1.value=12;
|
|
document.f.every2.value=1;
|
|
document.f.every3.value='';
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value=12;
|
|
document.f.whenmorethan3.value='';
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value=1;
|
|
document.f.setto3.value='';
|
|
document.f.numberingmethod.value=_('No {X}, Issue {Y}');
|
|
moreoptions(text[0],text[2]);
|
|
display_table(0);
|
|
break;
|
|
case "6":
|
|
var d = new Date(document.f.firstacquidate.value);
|
|
var sYear = d.getFullYear();
|
|
moreoptions_seasons(text[15],sYear);
|
|
var d = new Date(document.f.firstacquidate.value);
|
|
var sYear = d.getFullYear();
|
|
document.f.add1.value=1;
|
|
document.f.add2.value='1';
|
|
document.f.add3.value='';
|
|
document.f.every1.value=4;
|
|
document.f.every2.value='1';
|
|
document.f.every3.value='';
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value='4';
|
|
document.f.whenmorethan3.value='';
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value='1';
|
|
document.f.setto3.value='';
|
|
document.f.lastvaluetemp1.value=sYear;
|
|
document.f.periodicity.value='8';
|
|
document.f.numberingmethod.value=_('{Y} {X}');
|
|
moreoptions_seasons(text[15],sYear);
|
|
display_table(0);
|
|
is_season = 1;
|
|
break;
|
|
case "7":
|
|
display_table(1);
|
|
document.getElementById("more_options").innerHTML = '';
|
|
document.f.irreg_check.value=1;
|
|
break;
|
|
case "8":
|
|
var d = new Date(document.f.startdate.value);
|
|
var sYear = d.getFullYear();
|
|
document.f.add1.value=1;
|
|
document.f.add2.value=1;
|
|
document.f.add3.value='';
|
|
document.f.every1.value=12;
|
|
document.f.every2.value=1;
|
|
document.f.every3.value='';
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value=12;
|
|
document.f.whenmorethan3.value='';
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value=1;
|
|
document.f.setto3.value='';
|
|
// document.f.setto3.value='';
|
|
if (document.f.lastvalue1.value==0){document.f.lastvalue1.value=sYear};
|
|
if (document.f.lastvalue2.value==0 ||document.f.lastvalue2.value=='' ){
|
|
switch (document.f.periodicity.value){
|
|
case 1:
|
|
var doy = dayofyear(d);
|
|
//var Weeknumber=YWDA[1];
|
|
document.f.lastvalue2.value=doy;
|
|
break;
|
|
case 12:
|
|
var doy = dayofyear(d);
|
|
//var Weeknumber=YWDA[1];
|
|
document.f.lastvalue2.value=doy*2;
|
|
break;
|
|
case 13:
|
|
var doy = dayofyear(d);
|
|
//var Weeknumber=YWDA[1];
|
|
document.f.lastvalue2.value=doy/3;
|
|
break;
|
|
case 2:
|
|
case 3:
|
|
case 4:
|
|
var YWDa = YMDaToYWDa(d);
|
|
//var Weeknumber=YWDA[1];
|
|
document.f.lastvalue2.value=YWDA[1]/(document.f.periodicity.value-1);
|
|
break;
|
|
case 5:
|
|
var smonth = d.getMonth();
|
|
document.f.lastvalue2.value=smonth;
|
|
break;
|
|
case 6:
|
|
var smonth = d.getMonth();
|
|
document.f.lastvalue2.value=smonth/2;
|
|
break;
|
|
case 7:
|
|
case 8:
|
|
var smonth = d.getMonth();
|
|
document.f.lastvalue2.value=smonth/3;
|
|
break;
|
|
case 9:
|
|
var smonth = d.getMonth();
|
|
document.f.lastvalue2.value=smonth/6;
|
|
break;
|
|
default:
|
|
}
|
|
}
|
|
// document.f.lastvalue2.value=document.f.lastvaluetemp2.value;
|
|
document.f.lastvalue3.value='';
|
|
document.f.numberingmethod.value=_('{X}/{Y}');
|
|
moreoptions(text[16],text[0]);
|
|
display_table(0);
|
|
break;
|
|
default:
|
|
document.f.add1.value=1;
|
|
document.f.add2.value='';
|
|
document.f.add3.value='';
|
|
document.f.every1.value=1;
|
|
document.f.every2.value='';
|
|
document.f.every3.value='';
|
|
document.f.whenmorethan1.value=9999999;
|
|
document.f.whenmorethan2.value='';
|
|
document.f.whenmorethan3.value='';
|
|
document.f.setto1.value=0;
|
|
document.f.setto2.value='';
|
|
document.f.setto3.value='';
|
|
/* document.f.lastvalue1.value=1;
|
|
document.f.lastvalue2.value='';
|
|
document.f.lastvalue3.value='';*/
|
|
document.f.numberingmethod.value='{X}';
|
|
moreoptions_daily_check(text[0]);
|
|
document.f.irreg_check.value=1;
|
|
display_table(0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
function display_table(n) {
|
|
if(n==1){
|
|
document.getElementById("basetable").style.display = 'block';
|
|
} else {
|
|
document.getElementById("basetable").style.display = 'none';
|
|
}
|
|
}
|
|
|
|
function modify_num_pattern() {
|
|
if(!document.getElementById("numberpattern")){ return false; }
|
|
document.getElementById("numberpattern").value = '<!-- TMPL_VAR NAME="numberpattern" -->';
|
|
num_pattern();
|
|
|
|
document.f.add1.value='<!-- TMPL_VAR NAME="add1" -->';
|
|
document.f.add2.value='<!-- TMPL_VAR NAME="add2" -->';
|
|
document.f.add3.value='<!-- TMPL_VAR NAME="add3" -->';
|
|
document.f.every1.value='<!-- TMPL_VAR NAME="every1" -->';
|
|
document.f.every2.value='<!-- TMPL_VAR NAME="every2" -->';
|
|
document.f.every3.value='<!-- TMPL_VAR NAME="every3" -->';
|
|
document.f.whenmorethan1.value='<!-- TMPL_VAR NAME="whenmorethan1" -->';
|
|
document.f.whenmorethan2.value='<!-- TMPL_VAR NAME="whenmorethan2" -->';
|
|
document.f.whenmorethan3.value='<!-- TMPL_VAR NAME="whenmorethan3" -->';
|
|
document.f.setto1.value='<!-- TMPL_VAR NAME="setto1" -->';
|
|
document.f.setto2.value='<!-- TMPL_VAR NAME="setto2" -->';
|
|
document.f.setto3.value='<!-- TMPL_VAR NAME="setto3" -->';
|
|
document.f.lastvalue1.value='<!-- TMPL_VAR NAME="lastvalue1" -->';
|
|
document.f.lastvalue2.value='<!-- TMPL_VAR NAME="lastvalue2" -->';
|
|
document.f.lastvalue3.value='<!-- TMPL_VAR NAME="lastvalue3" -->';
|
|
document.f.numberingmethod.value='<!-- TMPL_VAR NAME="numberingmethod" -->';
|
|
|
|
var more_strY;
|
|
var more_strZ;
|
|
<!-- TMPL_IF NAME="add2" -->
|
|
if(<!-- TMPL_VAR NAME="add2" --> > 0){
|
|
more_strY="Y";
|
|
}
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="add3" -->
|
|
if(<!-- TMPL_VAR NAME="add3" --> > 0){
|
|
more_strZ="Z";
|
|
}
|
|
<!-- /TMPL_IF -->
|
|
|
|
document.f.lastvaluetemp1.value='<!-- TMPL_VAR NAME="lastvalue1" -->';
|
|
if(more_strY){
|
|
document.f.lastvaluetemp2.value='<!-- TMPL_VAR NAME="lastvalue2" -->';
|
|
document.f.whenmorethantemp2.value='<!-- TMPL_VAR NAME="whenmorethan2" -->';
|
|
}
|
|
if(more_strZ){
|
|
document.f.lastvaluetemp3.value='<!-- TMPL_VAR NAME="lastvalue3" -->';
|
|
document.f.whenmorethantemp3.value='<!-- TMPL_VAR NAME="whenmorethan3" -->';
|
|
}
|
|
}
|
|
|
|
// a pre check with more options to see if 'number' and '1/day' are chosen
|
|
function moreoptions_daily_check(x) {
|
|
var periodicity = document.f.periodicity.value;
|
|
var errortext='';
|
|
if(periodicity == 1){
|
|
document.getElementById("irregularity").innerHTML = '';
|
|
var daynames = new Array(_('Monday'),_('Tuesday'),_('Wednesday'),_('Thursday'),_('Friday'),_('Saturday'),_('Sunday'));
|
|
errortext =_("Please indicate which days of the week you <b>DO NOT<\/b> expect to receive issues.<br \/>");
|
|
for(var j=0;j<daynames.length;j++){
|
|
errortext +="<input type='checkbox' name='irregular' id='irregular"+(j+1)+"' value='"+(j+1)+"' />"+daynames[j]+" ";
|
|
}
|
|
var error = errortext;
|
|
moreoptions(x);
|
|
document.getElementById("irregularity").innerHTML = error;
|
|
} else {
|
|
document.getElementById("irregularity").innerHTML = '';
|
|
document.getElementById("more_options").innerHTML = '';
|
|
moreoptions(x);
|
|
}
|
|
}
|
|
|
|
// to dispaly the more options section
|
|
function moreoptions(x,y,z){
|
|
document.getElementById("irregularity").innerHTML = '';
|
|
document.getElementById("more_options").innerHTML = '';
|
|
var textbox = '';
|
|
// alert("X: "+x+"Y: "+y+"Z: "+z);
|
|
if(x){
|
|
textbox +="<table>\n<tr><th> <\/th><th>"+x+"<\/th>";
|
|
if(y){
|
|
textbox +="<th>"+y+"<\/th>";
|
|
if(z){
|
|
textbox +="<th>"+z+"<\/th>";
|
|
}
|
|
}
|
|
textbox +="<\/tr>\n";
|
|
textbox +="<tr><th scope=\"row\">"+text[5]+"<\/td><td><input type='text' name='lastvaluetemp1' size='4' onkeyup='moreoptionsupdate(\"lastvalue1\")' value=" + document.f.lastvalue1.value +" /><\/td>\n";
|
|
if(y){
|
|
textbox +="<td><input type='text' name='lastvaluetemp2' size='4' onkeyup='moreoptionsupdate(\"lastvalue2\")' value=" + document.f.lastvalue2.value + " /><\/td>\n";
|
|
if(z){
|
|
textbox +="<td><input type='text' name='lastvaluetemp3' size='4' onkeyup='moreoptionsupdate(\"lastvalue3\")' value=" + document.f.lastvalue3.value + " /><\/td>\n";
|
|
}
|
|
}
|
|
textbox +="<\/tr>\n";
|
|
if(y){
|
|
textbox +="<tr><th scope=\"row\">"+text[6]+"<\/th>";
|
|
textbox +="<td><a href='javascript:irregularity_check()'>"+_('Irregularity?')+"<\/a><\/td>\n";
|
|
textbox +="<td><input type='text' name='whenmorethantemp2' size='4' onkeyup='moreoptionsupdate(\"whenmorethan2\",1)'><\/td>\n";
|
|
if(z){
|
|
textbox +="<td><input type='text' name='whenmorethantemp3' size='4' onkeyup='moreoptionsupdate(\"whenmorethan3\",1)'><\/td>\n";
|
|
}
|
|
textbox +="<\/tr>";
|
|
} else {
|
|
textbox +="<tr> <td>"+_('issues expected')+"</td><td><input type='text' name='issuesexpectedtemp1' size='4' onkeyup='moreoptionsupdate(\"issuesexpected1\",0)' value=" + document.f.issuesexpected1.value + " ><br/><a href='javascript:irregularity_check()'>"+_('Irregularity?')+"</a></td></tr>";
|
|
}
|
|
textbox +="<\/table>\n";
|
|
}
|
|
document.getElementById("more_options").innerHTML = textbox;
|
|
}
|
|
|
|
function hemispheres(chosen){
|
|
var selbox = document.getElementById("season1");
|
|
if(selbox){
|
|
var selboxselected = selbox.options[selbox.selectedIndex].value;
|
|
selbox.options.length = 0;
|
|
|
|
if (chosen == "1") {
|
|
selbox.options[selbox.options.length] = new Option(text[11],'1');
|
|
selbox.options[selbox.options.length] = new Option(text[12],'2');
|
|
selbox.options[selbox.options.length] = new Option(text[13],'3');
|
|
selbox.options[selbox.options.length] = new Option(text[14],'4');
|
|
is_hemisphere = 1;
|
|
selbox.options[selboxselected-1].selected = true;
|
|
}
|
|
|
|
if (chosen == "2") {
|
|
selbox.options[selbox.options.length] = new Option(text[13],'1');
|
|
selbox.options[selbox.options.length] = new Option(text[10],'2');
|
|
selbox.options[selbox.options.length] = new Option(text[11],'3');
|
|
selbox.options[selbox.options.length] = new Option(text[12],'4');
|
|
is_hemisphere = 2;
|
|
selbox.options[selboxselected-1].selected = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
// to dispaly the more options section for seasons
|
|
function moreoptions_seasons(x,y){
|
|
document.getElementById("irregularity").innerHTML = '';
|
|
document.getElementById("more_options").innerHTML = '';
|
|
var textbox = '';
|
|
//alert("X: "+x+"Year: "+y);
|
|
if(x){
|
|
var hemi_select = parseInt('<!-- TMPL_VAR NAME="hemisphere" -->');
|
|
textbox +="<li><label for=\"hemisphere\">"+ text[7] +"<\/label><select name='hemisphere' id=\"hemisphere\" onchange='hemispheres(this.options[this.selectedIndex].value)'>";
|
|
for(var i = 1; i <= 2; i++){
|
|
textbox +="<option value='"+i+"'";
|
|
if(i == hemi_select){
|
|
textbox += " selected "
|
|
}
|
|
textbox +=">"+text[i+7]+"<\/option>";
|
|
}
|
|
textbox +="<\/li>\n";
|
|
textbox +="<table><tr><th> <\/th><th>"+x+"<\/th>";
|
|
textbox +="<th>"+text[16]+"<\/th>";
|
|
textbox +="<\/tr>\n";
|
|
textbox +="<tr><th scope=\"row\">"+text[5]+"<\/th><td><select name='lastvaluetemp2' id='season1' onchange='moreoptionsupdate(\"lastvalue2\")'>";
|
|
for(var j = 1; j <= 4; j++){
|
|
textbox +="<option value='"+j+"'>"+text[j+10]+"<\/option>";
|
|
}
|
|
textbox +="<\/select><\/td><td><select name='lastvaluetemp1' onchange='moreoptionsupdate(\"lastvalue1\")'>";
|
|
for(var k = parseInt(y); k <= parseInt(y)+15; k++){
|
|
textbox +="<option value='"+k+"'>"+k+"<\/option>";
|
|
}
|
|
textbox +="<\/select><\/td><\/tr>\n";
|
|
textbox +="<tr><th scope=\"row\">"+text[6]+"<\/th>";
|
|
textbox +="<td><a href='javascript:irregularity_check()'>"+_('Irregularity?')+"<\/a><\/td>\n";
|
|
textbox +="<td><input type='text' name='whenmorethantemp2' size='4' onkeyup='moreoptionsupdate(\"whenmorethan2\",1)'><\/td>\n";
|
|
textbox +="<\/tr><\/table>\n";
|
|
|
|
}
|
|
document.getElementById("more_options").innerHTML = textbox;
|
|
}
|
|
|
|
function irregularity_check(){
|
|
document.f.irreg_check.value = 1; // Irregularity button now pushed
|
|
var periodicity = document.f.periodicity.value;
|
|
var rollover = document.f.issuesexpected1.value;
|
|
if(document.f.whenmorethantemp2){
|
|
rollover = document.f.whenmorethantemp2.value;
|
|
}
|
|
if(document.f.whenmorethantemp3){
|
|
rollover = document.f.whenmorethantemp3.value;
|
|
}
|
|
var error='';
|
|
var toobig;
|
|
var expected;
|
|
var errortext = _("<b>Warning irregularity detected<\/b><br \/>");
|
|
switch(periodicity){
|
|
case "12":
|
|
if(rollover < 730) expected =730;
|
|
if(rollover > 730) {
|
|
expectedover=730;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "1":
|
|
if(rollover < 365) expected =365;
|
|
if(rollover > 365) {
|
|
expectedover=365;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "13":
|
|
if(rollover < 156) expected =156;
|
|
if(rollover > 156) {
|
|
expectedover=156;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "2":
|
|
if(rollover < 52) expected =52;
|
|
if(rollover > 52){
|
|
expectedover=52;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "3":
|
|
if(rollover < 26) expected =26;
|
|
if(rollover > 26){
|
|
expectedover=26;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "4":
|
|
if(rollover < 17) expected =17;
|
|
if(rollover > 17){
|
|
expectedover=17;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "5":
|
|
if(rollover < 12) expected =12;
|
|
if(rollover > 12){
|
|
expectedover=12;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "6":
|
|
if(rollover < 6) expected =6;
|
|
if(rollover > 6){
|
|
expectedover=6;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "7":
|
|
if(rollover < 4) expected =4;
|
|
if(rollover > 4){
|
|
expectedover=4;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "8":
|
|
if(rollover < 4) expected =4;
|
|
if(rollover > 4){
|
|
expectedover=4;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "9":
|
|
if(rollover < 2) expected =2;
|
|
if(rollover > 2){
|
|
expectedover=2;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
case "10":
|
|
if(rollover < 1) expected =1;
|
|
if(rollover > 1){
|
|
expectedover=1;
|
|
toobig=1;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
if(expected){
|
|
if(expected == 365 || expected==730){
|
|
var daynames = new Array(_('Monday'),_('Tuesday'),_('Wednesday'),_('Thursday'),_('Friday'),_('Saturday'),_('Sunday'));
|
|
errortext += _("Please indicate which days of the week you <b>DO NOT<\/b> expect to receive issues.<br \/>");
|
|
for(var j=0;j<daynames.length;j++){
|
|
errortext +="<input type='checkbox' name='irregular' id='irregular"+(j+1)+"' value='"+(j+1)+"' />"+daynames[j]+" ";
|
|
}
|
|
error=errortext;
|
|
} else {
|
|
errortext +=expected+_(" issues expected ")+rollover+_(" were entered. <br \/>Please indicate which date(s) an issue is not expected<br \/>");
|
|
var count=0;
|
|
for(var i=rollover;i<expected;i++){
|
|
errortext +="<select name='irregular' id='irregular"+count+"' onchange='display_example(expected)'>\n";
|
|
errortext +=irregular_options(periodicity);
|
|
errortext +="<\/select>\n";
|
|
count++;
|
|
}
|
|
error=errortext;
|
|
}
|
|
}
|
|
if(toobig){
|
|
errortext +=expectedover+_(" issues expected ")+rollover+_(" were entered.<br \/> You seem to have indicated more issues per year than expected.");
|
|
error=errortext;
|
|
}
|
|
if(error.length ==0){
|
|
error=_('No irregularities noticed');
|
|
}
|
|
display_example(expected);
|
|
document.getElementById("irregularity").innerHTML = error;
|
|
}
|
|
|
|
function irregular_options(periodicity){
|
|
var titles;
|
|
var count;
|
|
<!-- TMPL_IF NAME="weekarrayjs" -->
|
|
var weeks = new Array(<!-- TMPL_VAR NAME="weekarrayjs" -->);
|
|
<!-- /TMPL_IF -->
|
|
var months = new Array(_('January'),_('February'),_('March'),_('April'),_('May'),_('June'),_('July'),_('August'),_('September'),_('October'),_('November'),_('December'));
|
|
var seasons = new Array(_('Autumn'),_('Winter'),_('Spring'),_('Summer'),_('Fall'));
|
|
var errortext='';
|
|
if(periodicity == 1) {
|
|
expected = 366;
|
|
titles = "Day";
|
|
count = 1;
|
|
}
|
|
if(periodicity == 2 || periodicity == 3 || periodicity == 4) {
|
|
expected = 52;
|
|
<!-- TMPL_IF NAME="weekarrayjs" -->
|
|
titles = weeks;
|
|
count = <!-- TMPL_VAR NAME="weekno" -->;
|
|
<!-- TMPL_ELSE -->
|
|
titles = "Week";
|
|
count = 1;
|
|
<!-- /TMPL_IF -->
|
|
}
|
|
if(periodicity == 5 || periodicity == 6 || periodicity == 7 || periodicity == 8 || periodicity == 9) {
|
|
if(periodicity == 8) {
|
|
is_season = 1; // setting up from edit page
|
|
}
|
|
if(is_season){
|
|
titles = seasons;
|
|
expected = 4;
|
|
if(is_hemisphere == 2){
|
|
count = 2;
|
|
} else {
|
|
count = 1;
|
|
}
|
|
} else {
|
|
titles = months;
|
|
expected = 12;
|
|
count = 1;
|
|
}
|
|
}
|
|
for(var j=1;j<=expected;j++){
|
|
if(isArray(titles)){
|
|
if(count>expected){
|
|
count = count-expected;
|
|
}
|
|
if(is_season && is_hemisphere == 1){
|
|
errortext +="<option value='"+((count*3)-2)+"'>"+titles[j]+"<\/option>\n";
|
|
// alert("value: "+((count*3)-2)+" title: "+titles[j]);
|
|
} else if(is_season && is_hemisphere == 2){
|
|
errortext +="<option value='"+((count*3)-2)+"'>"+titles[j-1]+"<\/option>\n";
|
|
// alert("value: "+((count*3)-2)+" title: "+titles[j-1]);
|
|
} else {
|
|
errortext +="<option value='"+count+"'>"+titles[j-1]+"<\/option>\n";
|
|
}
|
|
count++;
|
|
} else {
|
|
errortext +="<option value='"+j+"'>"+titles+" "+j+"<\/option>\n";
|
|
}
|
|
}
|
|
return errortext;
|
|
}
|
|
|
|
function irregular_order(){
|
|
var irregular = '<!-- TMPL_VAR NAME="irregularity" -->';
|
|
var periodicity = document.f.periodicity.value;
|
|
var irregarray = irregular.split(',');
|
|
if(periodicity ==1){
|
|
for(j=0;j<irregarray.length;j++){
|
|
document.getElementById("irregular"+irregarray[j]).checked = true;
|
|
}
|
|
} else {
|
|
for(i=0;i<irregarray.length;i++){
|
|
document.getElementById("irregular"+i).value = irregarray[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
function display_example(expected){
|
|
var startfrom1 = parseInt(document.f.lastvalue1.value);
|
|
var startfrom2 = parseInt(document.f.lastvalue2.value);
|
|
var startfrom3 = parseInt(document.f.lastvalue3.value);
|
|
var every1 = parseInt(document.f.every1.value);
|
|
var every2 = parseInt(document.f.every2.value);
|
|
var every3 = parseInt(document.f.every3.value);
|
|
var numberpattern = document.f.numberingmethod.value;
|
|
var whenmorethan2 = parseInt(document.f.whenmorethan2.value);
|
|
var whenmorethan3 = parseInt(document.f.whenmorethan3.value);
|
|
var setto2 = parseInt(document.f.setto2.value);
|
|
var setto3 = parseInt(document.f.setto3.value);
|
|
var displaytext = _('Based on the information<br \/>entered the Numbering Pattern<br \/>will look like this<br \/>\n');
|
|
if(startfrom3>0){
|
|
var count=startfrom3-1;
|
|
var count2=startfrom2;
|
|
for(var i=0;i<12;i++){
|
|
if(count>=whenmorethan3){
|
|
count=setto3;
|
|
if(count2>=whenmorethan2){
|
|
startfrom1++;
|
|
count2=setto2;
|
|
} else {
|
|
count2++;
|
|
}
|
|
} else {
|
|
count++;
|
|
}
|
|
displaytext += numberpattern.replace(/{Z}/,count)+'\n';
|
|
displaytext = displaytext.replace(/{Y}/,count2)+'<br \/>\n';
|
|
displaytext = displaytext.replace(/{X}/,startfrom1)+'<br \/>\n';
|
|
|
|
}
|
|
}
|
|
if(startfrom2>0 && !startfrom3){
|
|
var count=startfrom2-1;
|
|
for(var i=0;i<12;i++){
|
|
if(count>=whenmorethan2){
|
|
startfrom1++;
|
|
count=setto2;
|
|
} else {
|
|
count++;
|
|
}
|
|
|
|
if(is_season){
|
|
if(is_hemisphere == 2){
|
|
if(count == 1) {
|
|
displaytext += numberpattern.replace(/{Y}/,text[count+12])+'\n';
|
|
} else {
|
|
displaytext += numberpattern.replace(/{Y}/,text[count+8])+'\n';
|
|
}
|
|
} else {
|
|
displaytext += numberpattern.replace(/{Y}/,text[count+10])+'\n';
|
|
}
|
|
} else {
|
|
displaytext += numberpattern.replace(/{Y}/,count)+'\n';
|
|
}
|
|
displaytext = displaytext.replace(/{X}/,startfrom1)+'<br \/>\n';
|
|
}
|
|
}
|
|
if(startfrom1>0 && !startfrom2 && !startfrom3){
|
|
var offset=eval(document.f.issuesexpected1.value);
|
|
if (!offset){
|
|
offset = 12
|
|
}
|
|
for(var i=startfrom1;i<(startfrom1+offset);i+=every1){
|
|
displaytext += numberpattern.replace(/{X}/,i)+'<br \/>\n';
|
|
}
|
|
}
|
|
displaytext = "<div style='padding: 5px; background-color: #CCCCCC'>"+displaytext+"<\/div>";
|
|
document.getElementById("displayexample").innerHTML = displaytext;
|
|
}
|
|
|
|
function isArray(obj) {
|
|
if (obj.constructor.toString().indexOf("Array") == -1)
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
|
|
function moreoptionsupdate(fieldnames,rollover){
|
|
fieldname = fieldnames;
|
|
fld = fieldname.length;
|
|
fld = fld-1;
|
|
fieldnametempnumber = fieldname.substr(fld);
|
|
//alert(fieldnametempnumber);
|
|
fieldnametemp = fieldname.slice(0,-1)+"temp"+fieldnametempnumber;
|
|
// alert(fieldnametemp);
|
|
eval("document.f."+fieldname+".value = document.f."+fieldnametemp+".value");
|
|
// alert (fieldname+" : "+eval("document.f."+fieldname+".value") +' '+fieldnametemp+' : ' +eval("document.f."+fieldnametemp+".value"));
|
|
var patternchoice = document.getElementById("numberpattern").value;
|
|
switch(patternchoice){
|
|
case "2":
|
|
case "4":
|
|
case "5":
|
|
case "8":
|
|
if (document.f.lastvaluetemp2.value>0){document.f.innerloop1.value = document.f.lastvaluetemp2.value;}
|
|
break;
|
|
}
|
|
if(rollover){
|
|
eval("document.f.every"+(fieldnametempnumber-1)+".value = document.f."+fieldnametemp+".value");
|
|
}
|
|
}
|
|
|
|
|
|
function check_input(e){
|
|
var unicode=e.charCode? e.charCode : e.keyCode
|
|
if (unicode!=8 && unicode !=46 && unicode!=9 && unicode !=13){ // if key isn't backspace or delete
|
|
if (unicode<48||unicode>57) { // if not a number
|
|
alert(_("Needs to be entered in digit form -eg 10"));
|
|
return false // disable key press
|
|
}
|
|
}
|
|
}
|
|
|
|
function addbiblioPopup(biblionumber) {
|
|
var destination = "/cgi-bin/koha/cataloguing/addbiblio.pl?mode=popup";
|
|
if(biblionumber){ destination += "&biblionumber="+biblionumber; }
|
|
window.open(destination,'AddBiblioPopup','width=1024,height=768,toolbar=no,scrollbars=yes');
|
|
}
|
|
|
|
function Plugin(f)
|
|
{
|
|
window.open('subscription-bib-search.pl','FindABibIndex','width=800,height=400,toolbar=no,scrollbars=yes');
|
|
}
|
|
|
|
function FindAcqui(f)
|
|
{
|
|
window.open('acqui-search.pl','FindASupplier','width=800,height=400,toolbar=no,scrollbars=yes');
|
|
}
|
|
|
|
function Find_ISSN(f)
|
|
{
|
|
window.open('issn-search.pl','FindABibIndex','width=800,height=400,toolbar=no,scrollbars=yes');
|
|
}
|
|
|
|
|
|
function Check(f) {
|
|
if (f.aqbooksellerid.value.length==0) {
|
|
alert(_('You must choose a supplier'));
|
|
} else if (f.biblionumber.value.length==0) {
|
|
alert(_('You must choose or create a biblio'));
|
|
} else if(f.startdate.value.length != 0 && f.sublength.value > 0) {
|
|
if (f.irreg_check.value == 1) {
|
|
document.f.submit();
|
|
} else {
|
|
if(f.numbering_pattern.value == ''){
|
|
alert(_("Please choose a numbering pattern"));
|
|
} else {
|
|
alert(_("Please check for irregularity by clicking 'Irregularity?'"));
|
|
}
|
|
}
|
|
} else {
|
|
alert(_('You must choose a start date and a subscription length'));
|
|
}
|
|
return false;
|
|
}
|
|
<!-- TMPL_IF name="mod" -->
|
|
window.onload = modify_num_pattern();
|
|
<!-- TMPL_IF name="hemisphere" -->
|
|
window.onload = hemispheres(<!-- TMPL_VAR NAME="hemisphere" -->);
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="irregularity" -->
|
|
window.onload = irregularity_check();
|
|
window.onload = irregular_order();
|
|
<!-- /TMPL_IF -->
|
|
-->
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="serials-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/serials/subscription-add.pl">Serials</a> › <!-- TMPL_IF name="mod" --> Modify subscription to <i><!-- TMPL_VAR name="bibliotitle" --></i><!-- TMPL_ELSE -->New subscription<!-- /TMPL_IF --></div>
|
|
|
|
<div id="doc3" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div class="yui-g">
|
|
|
|
<!-- TMPL_IF name="mod" -->
|
|
<form method="post" name="f" action="/cgi-bin/koha/serials/subscription-add.pl">
|
|
<input type="hidden" name="op" value="modsubscription" />
|
|
<input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR name="subscriptionid" -->" />
|
|
<!-- TMPL_ELSE -->
|
|
<form method="post" action="/cgi-bin/koha/serials/subscription-add.pl" name="f">
|
|
<input type="hidden" name="op" value="addsubscription" />
|
|
<!-- /TMPL_IF -->
|
|
<input type="hidden" name="user" value="<!-- TMPL_VAR name="loggedinusername" -->" />
|
|
<input type="hidden" name="irreg_check" value="0" />
|
|
<input type="hidden" name="issuesexpected1" value="0" />
|
|
|
|
<div class="yui-u first">
|
|
<fieldset id="subscription_add_information" class="rows">
|
|
<legend>Subscription information for subscription #<!--TMPL_VAR name="subscriptionid"--></legend>
|
|
<ol>
|
|
<li>
|
|
<span class="label">Librarian: </span> <!-- TMPL_VAR name="loggedinusername" -->
|
|
</li>
|
|
<li>
|
|
<label for="aqbooksellerid">Supplier: (*)</label>
|
|
<input type="text" name="aqbooksellerid" id="aqbooksellerid" value="<!-- TMPL_VAR name="aqbooksellerid" -->" size="8" /> (<input type="text" name="aqbooksellername" value="<!-- TMPL_VAR name="aqbooksellername" -->" disabled="disabled" readonly="readonly" />) <div class="inputnote"><a href="#" onclick="FindAcqui(f)">Search for a Supplier</a></div>
|
|
</li>
|
|
<li>
|
|
<label for="biblionumber">Biblio: (*)</label>
|
|
|
|
<input type="text" name="biblionumber" id="biblionumber" value="<!-- TMPL_VAR name="bibnum" -->" size="8" />
|
|
(<input type="text" name="title" value="<!-- TMPL_VAR name="bibliotitle" -->" disabled="disabled" readonly="readonly" />)
|
|
<div class="inputnote"> <a href="#" onclick="Plugin(f)">Search for Biblio</a> | <!--TMPL_IF Name="mod"--><a href="#" onclick="addbiblioPopup(<!-- TMPL_VAR NAME="bibnum" -->); return false;">Edit biblio</a><!-- TMPL_ELSE -->
|
|
<a href="#" onclick="addbiblioPopup(); return false;">Create Biblio</a><!--/TMPL_IF--></div>
|
|
|
|
</li>
|
|
<li>
|
|
<label for="callnumber">Call Number</label>
|
|
<input type="text" name="callnumber" id="callnumber" value="<!-- TMPL_VAR name="callnumber" -->" size="20" />
|
|
</li>
|
|
<li>
|
|
<label for="branchcode">Branch</label>
|
|
|
|
<select name="branchcode" id="branchcode">
|
|
<option value="">Any branch</option>
|
|
<!-- TMPL_LOOP name="branchloop" --><!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select> (select a branch)
|
|
|
|
</li>
|
|
<li>
|
|
<label for="notes">Notes</label>
|
|
<textarea name="notes" id="notes" cols="30" rows="2"><!-- TMPL_VAR name="notes" --></textarea>
|
|
</li>
|
|
<li>
|
|
<label for="internalnotes">Management Notes</label>
|
|
<textarea name="internalnotes" id="internalnotes" cols="30" rows="2"><!-- TMPL_VAR name="internalnotes" --></textarea>
|
|
</li>
|
|
<li>
|
|
<label for="letter">Patron alert with </label>
|
|
|
|
<select name="letter" id="letter">
|
|
<option value="">un-activated</option>
|
|
<!-- TMPL_LOOP name="letterloop" -->
|
|
<!-- TMPL_IF name="selected" -->
|
|
<option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="lettername" --></option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="lettername" --></option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select> <div class="inputnote">(select a letter & patrons will be able to "follow" this subscription and recieve a mail on every new issue)</div>
|
|
|
|
</li>
|
|
</ol>
|
|
|
|
<div class="warning"><b>Note:</b>
|
|
|
|
<ul>
|
|
<li>Remember you <b>must</b> create a biblio</li>
|
|
<li>You <b>must</b> select a supplier</li>
|
|
</ul></div>
|
|
|
|
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="yui-u">
|
|
<div id="subscription_form_planning">
|
|
<fieldset class="rows">
|
|
<legend>Planning</legend>
|
|
<ol>
|
|
<li>
|
|
<label for="firstacquidate"> First Issue ETA:</label>
|
|
|
|
<img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="button2" style="cursor: pointer;" alt="Show Calendar" title="Show Calendar" />
|
|
<input type="text" name="firstacquidate" value="<!-- TMPL_VAR name="firstacquidate" -->" size="13" maxlength="10" id="acqui_date" style="border-width: 0px;" />
|
|
<!-- both scripts for calendar must follow the input field -->
|
|
<script type="text/javascript">
|
|
Calendar.setup({
|
|
inputField:"acqui_date",
|
|
ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
|
|
button : "button2",
|
|
align : "Tl"
|
|
});
|
|
</script>
|
|
<script type="text/javascript">
|
|
Calendar.setup({
|
|
inputField : "acqui_date",
|
|
ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
|
|
button : "acqui_date",
|
|
align : "Tl"
|
|
});
|
|
</script>
|
|
|
|
</li>
|
|
<li>
|
|
<label for="periodicity">Frequency: (*)</label>
|
|
|
|
<select name="periodicity" size="1" id="periodicity" onchange="javascript:document.getElementsByName('manualhist')[0].checked=(this.value==1);num_pattern;">
|
|
<option value="" selected="selected">-- please choose --</option>
|
|
<!-- TMPL_IF name="periodicity16" -->
|
|
<option value="16" selected="selected">Without Periodicity</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="16">Without Periodicity</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity48" -->
|
|
<option value="48" selected="selected">Unknown</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="48">Unknown</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity32" -->
|
|
<option value="32" selected="selected">Irregular</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="32">Irregular</option>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF name="periodicity12" -->
|
|
<option value="12" selected="selected">2/day</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="12">2/day</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity1" -->
|
|
<option value="1" selected="selected">1/day</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="1">1/day</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity13" -->
|
|
<option value="13" selected="selected">3/week</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="13">3/week</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity2" -->
|
|
<option value="2" selected="selected">1/week</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="2">1/week</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity3" -->
|
|
<option value="3" selected="selected">1/2 weeks (2/month)</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="3">1/2 weeks (2/months)</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity4" -->
|
|
<option value="4" selected="selected">1/3 weeks</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="4">1/3 weeks</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity5" -->
|
|
<option value="5" selected="selected">1/month</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="5">1/month</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity6" -->
|
|
<option value="6" selected="selected">1/2 months (6/year)</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="6">1/2 months (6/year)</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity7" -->
|
|
<option value="7" selected="selected">1/3 months (1/quarter)</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="7">1/3 months (1/quarter)</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- periodicity8 is 1/quarter, exactly like periodicity7 but will use it for seasonal option -->
|
|
<!-- TMPL_IF name="periodicity8" -->
|
|
<option value="8" selected="selected">1/quarter (seasonal)</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="8">1/quarter (seasonal)</option>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF name="periodicity9" -->
|
|
<option value="9" selected="selected">2/years</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="9">2/year</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity10" -->
|
|
<option value="10" selected="selected">1/year</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="10">1/year</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="periodicity11" -->
|
|
<option value="11" selected="selected">1/2 years</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="11">1/2 years</option>
|
|
<!-- /TMPL_IF -->
|
|
</select></li>
|
|
<li><label for="manuallist"> Manual History:</label> <input type="checkbox" name="manualhist" id="manuallist" value="1" /></li>
|
|
<li>
|
|
<label for="numberpattern"> Numbering Pattern:</label>
|
|
|
|
<select name="numbering_pattern" size="1" id="numberpattern" onchange="num_pattern()">
|
|
<option value="" selected="selected">-- please choose --</option>
|
|
<!-- TMPL_IF name="numberpattern1" -->
|
|
<option value="1" selected="selected">Number</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="1">Number</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern2" -->
|
|
<option value="2" selected="selected">Volume, Number, Issue</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="2">Volume, Number, Issue</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern3" -->
|
|
<option value="3" selected="selected">Volume, Number</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="3">Volume, Number</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern4" -->
|
|
<option value="4" selected="selected">Volume, Issue</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="4">Volume, Issue</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern5" -->
|
|
<option value="5" selected="selected">Number, Issue</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="5">Number, Issue</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern6" -->
|
|
<option value="6" selected="selected">Seasonal only</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="6">Seasonal only</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern8" -->
|
|
<option value="8" selected="selected">Year/Number</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="8">Year/Number</option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="numberpattern7" -->
|
|
<option value="7" selected="selected">None of the above</option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="7">None of the above</option>
|
|
<!-- /TMPL_IF -->
|
|
</select>
|
|
</li>
|
|
<li id="more_options"></li>
|
|
<li id="irregularity"></li>
|
|
<li id="displayexample"></li>
|
|
<li>
|
|
<label for="startdate"> Begins On: (*)</label>
|
|
|
|
<img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="button1" style="cursor: pointer;" alt="Show Calendar" title="Show Calendar" />
|
|
<input type="text" name="startdate" value="<!-- TMPL_VAR name="startdate" -->" size="13" maxlength="10" id="beginning_date" />
|
|
<!-- both scripts for calendar must follow the input field -->
|
|
<script type="text/javascript">
|
|
Calendar.setup({
|
|
inputField : "beginning_date",
|
|
ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
|
|
button : "button1",
|
|
align : "Tl"
|
|
});
|
|
</script>
|
|
<script type="text/javascript">
|
|
Calendar.setup({
|
|
inputField : "beginning_date",
|
|
ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
|
|
button : "beginning_date",
|
|
align : "Tl"
|
|
});
|
|
</script>
|
|
|
|
</li>
|
|
<li>
|
|
<label for="subtype">Subscription length</label>
|
|
|
|
<select name="subtype" id="subtype">
|
|
<!-- TMPL_LOOP NAME="subtype" -->
|
|
<!-- TMPL_IF NAME="selected" -->
|
|
<option value="<!-- TMPL_VAR NAME="name" -->" selected="selected">
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR NAME="name" -->">
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_VAR NAME="name" -->
|
|
</option>
|
|
<!-- /TMPL_LOOP -->
|
|
</select>
|
|
<input type="text" name="sublength" value="<!-- TMPL_VAR name="sublength" -->" size="3" onkeypress="return check_input(event)" /> (*) (enter amount in numerals)
|
|
|
|
</li>
|
|
<li><label for="numberingmethod">Numbering formula:</label> <input type="text" name="numberingmethod" id="numberingmethod" value="<!-- TMPL_VAR name="numberingmethod" -->" />
|
|
</li>
|
|
<li>
|
|
<div id="basetable" style="display: none;">
|
|
<table class="small">
|
|
<tr>
|
|
<th> </th>
|
|
<th>X</th>
|
|
<th>Y</th>
|
|
<th>Z</th>
|
|
</tr>
|
|
<tr>
|
|
<td>Add</td>
|
|
<td>
|
|
<input type="text" name="add1" value="<!-- TMPL_VAR name="add1" -->" />
|
|
</td>
|
|
<td>
|
|
<input type="text" name="add2" value="<!-- TMPL_VAR name="add2" -->" />
|
|
</td>
|
|
<td>
|
|
<input type="text" name="add3" value="<!-- TMPL_VAR name="add3" -->" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>once every</td>
|
|
<td><input type="text" name="every1" value="<!-- TMPL_VAR name="every1" -->" /></td>
|
|
<td><input type="text" name="every2" value="<!-- TMPL_VAR name="every2" -->" /></td>
|
|
<td><input type="text" name="every3" value="<!-- TMPL_VAR name="every3" -->" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>When more than</td>
|
|
<td><input type="text" name="whenmorethan1" value="<!-- TMPL_VAR name="whenmorethan1" -->" /></td>
|
|
<td><input type="text" name="whenmorethan2" value="<!-- TMPL_VAR name="whenmorethan2" -->" /></td>
|
|
<td><input type="text" name="whenmorethan3" value="<!-- TMPL_VAR name="whenmorethan3" -->" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>inner counter</td>
|
|
<td><input type="text" name="innerloop1" value="<!-- TMPL_VAR name="innerloop1" -->" /></td>
|
|
<td><input type="text" name="innerloop2" value="<!-- TMPL_VAR name="innerloop2" -->" /></td>
|
|
<td><input type="text" name="innerloop3" value="<!-- TMPL_VAR name="innerloop3" -->" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Set back to</td>
|
|
<td><input type="text" name="setto1" value="<!-- TMPL_VAR name="setto1" -->" /></td>
|
|
<td><input type="text" name="setto2" value="<!-- TMPL_VAR name="setto2" -->" /></td>
|
|
<td><input type="text" name="setto3" value="<!-- TMPL_VAR name="setto3" -->" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<!-- TMPL_IF name="mod" -->
|
|
Last value
|
|
<!-- TMPL_ELSE -->
|
|
Begins with
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td><input type="text" name="lastvalue1" value="<!-- TMPL_VAR name="lastvalue1" -->" /></td>
|
|
<td><input type="text" name="lastvalue2" value="<!-- TMPL_VAR name="lastvalue2" -->" /></td>
|
|
<td><input type="text" name="lastvalue3" value="<!-- TMPL_VAR name="lastvalue3" -->" /></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
</div>
|
|
<!--TMPL_IF Name="history"-->
|
|
<div id="subscription_form_history">
|
|
<h2>History</h2>
|
|
<table>
|
|
<tr>
|
|
<td>Starting date:</td>
|
|
<td><input type="text" name="histstartdate" value="<!-- TMPL_VAR name="histstartdate" -->" /> (the date of the 1st subscription)</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Ending date:</td>
|
|
<td><input type="text" name="enddate" value="<!-- TMPL_VAR name="enddate" -->" />(if empty : subscription still active)</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Received issues</td>
|
|
<td><textarea name="recievedlist" cols="60" rows="5"><!-- TMPL_VAR name="recievedlist" --></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Missing issues</td>
|
|
<td><textarea name="missinglist" cols="60" rows="5"><!-- TMPL_VAR name="missinglist" --></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Opac's notes</td>
|
|
<td><textarea name="opacnote" cols="60" rows="5"><!-- TMPL_VAR name="opacnote" --></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Librarian notes</td>
|
|
<td><textarea name="librariannote" cols="60" rows="5"><!-- TMPL_VAR name="librariannote" --></textarea></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<!--/TMPL_IF-->
|
|
|
|
|
|
<input type="button" value="Save subscription" onclick="Check(this.form)" accesskey="w" />
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|