Nick Clemens
f50106a605
Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
76 lines
3 KiB
Text
76 lines
3 KiB
Text
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
[% IF subscription %]
|
|
<title>Koha › Serials subscription renew #[% subscription.subscriptionid | html %]</title>
|
|
[% ELSE %]
|
|
<title>Koha › Serials subscription renew</title>
|
|
[% END %]
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
|
|
<body id="ser_subscription-renew" class="ser">
|
|
<div class="container-fluid">
|
|
|
|
[% INCLUDE 'blocking_errors.inc' %]
|
|
|
|
[% IF op == 'renew' OR op =='multi_renew' %]
|
|
[% IF op == 'renew' %]
|
|
<span>Subscription renewed.<span>
|
|
[% ELSE %]
|
|
<span>Subscriptions renewed.<span>
|
|
[% END %]
|
|
|
|
<div id="closewindow">
|
|
<a class="btn btn-default btn-default close" href="#">Close</a>
|
|
</div>
|
|
[% ELSE %]
|
|
|
|
<form name="f" action="/cgi-bin/koha/serials/subscription-renew.pl" method="post">
|
|
<input type="hidden" name="op" value="renew" />
|
|
<input type="hidden" name="subscriptionid" value="[% subscription.subscriptionid | html %]" />
|
|
<fieldset class="rows"><legend>Subscription renewal for [% subscription.bibliotitle | html %]</legend>
|
|
<ol>
|
|
<li>
|
|
<label for="startdate">Start date: </label>
|
|
<input type="text" size="10" id="startdate" name="startdate" value="[% startdate | html %]" class="datepicker"/>
|
|
<div class="hint">[% INCLUDE 'date-format.inc' %]</div>
|
|
</li>
|
|
<li><fieldset>
|
|
<legend>Subscription length:</legend>
|
|
<ol><li><label for="numberlength">Number of num:</label><input type="text" id="numberlength" name="numberlength" value="[% subscription.numberlength | html %]" /></li>
|
|
<li><label for="weeklength">Number of weeks: </label><input type="text" id="weeklength" name="weeklength" value="[% subscription.weeklength | html %]" /></li>
|
|
<li><label for="monthlength">Number of months: </label><input type="text" id="monthlength" name="monthlength" value="[% subscription.monthlength | html %]" /></li></ol></fieldset></li>
|
|
|
|
<li><label for="branchcode">Library:</label>
|
|
<select name="branchcode" id="branchcode" style="width: 20em;">
|
|
[% UNLESS ( Independentbranches ) %]
|
|
<option value="">None</option>
|
|
[% END %]
|
|
[% IF CAN_user_serials_superserials %]
|
|
[% FOREACH library IN libraries %]
|
|
<option value="[% library.branchcode | html %]"> [% library.branchname | html %] </option>
|
|
[% END %]
|
|
[% END %]
|
|
</select> (select a library)
|
|
</li>
|
|
|
|
<li><label for="note">Note for the librarian that will manage your renewal request: </label>
|
|
<textarea name="note" id="note" rows="5" cols="50"></textarea></li></ol></fieldset>
|
|
<fieldset class="action"><input type="submit" value="Submit" class="button" /></fieldset>
|
|
</form>
|
|
[% END %]
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% INCLUDE 'calendar.inc' %]
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$(".close").on("click", function(e){
|
|
e.preventDefault();
|
|
window.opener.location.reload(false);
|
|
self.close();
|
|
});
|
|
});
|
|
</script>
|
|
[% END %]
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' popup_window=1 %]
|