844f63f1f8
This patch does the following: * Fixes the typos in updatedatabase.pl ( updates colBranchcode to varchar(10) * Adds the rotating_collections template files that somehow were not committed * Adds a missing sub from RotatingCollections.pm that must been deleted by accident * Adds the neccessary hooks in returns.pl to warn that and item needs to be returned to the branch that currently holds the collection. Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
48 lines
2 KiB
Cheetah
48 lines
2 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Tools › Rotating Collections › Transfer Collection</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="cat-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating Collections</a> › Transfer Collection</div>
|
|
<div id="doc3">
|
|
<div id="bd">
|
|
<div class="yui-gb">
|
|
<h1>Rotating Collections: Transfer Collection</h1>
|
|
<br />
|
|
<!-- TMPL_IF NAME="transferSuccess" -->
|
|
<div>Collection Transfered Successfully</div>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="transferFailure" -->
|
|
<div>Failed to Transfer Collection!</div>
|
|
<div>Reason: <strong><!-- TMPL_VAR NAME="errorMessage" --></strong></div>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="transferSuccess" -->
|
|
<!-- TMPL_ELSE -->
|
|
<div>
|
|
<form action="transferCollection.pl" method="post">
|
|
<input type="hidden" name="colId" value="<!-- TMPL_VAR NAME="colId" -->">
|
|
|
|
<label for="toBranch">Choose your Library:</label>
|
|
<select name="toBranch">
|
|
<!-- TMPL_LOOP Name="branchoptionloop" -->
|
|
<!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR Name="code" -->" selected="selected"><!-- TMPL_VAR Name="name" --></option><!-- TMPL_ELSE --><option value="<!-- TMPL_VAR Name="code" -->"><!-- TMPL_VAR Name="name" --></option><!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select>
|
|
<INPUT type="submit" value="Transfer Collection">
|
|
</form>
|
|
</div>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<div>
|
|
<br/>
|
|
<input type="button" value="Return to Rotating Collections Home" onclick="window.location.href='rotatingCollections.pl'">
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|