Improving borrowers statitics management
This commit is contained in:
parent
adbcc2a21f
commit
00efe73c6c
3 changed files with 15 additions and 8 deletions
|
@ -103,12 +103,14 @@
|
|||
<td ><!-- TMPL_VAR NAME="CGISort1" --></td>
|
||||
</tr>
|
||||
<!-- /TMPL_IF -->
|
||||
<!-- TMPL_IF name="hassort2" -->
|
||||
<tr class="hilighted" >
|
||||
<td>Sort2</td>
|
||||
<td align="center"><input type="radio" name="Line" value="sort2"></td>
|
||||
<td align="center"><input type="radio" name="Column" value="sort2"></td>
|
||||
<td><!-- TMPL_VAR NAME="CGISort2" --></td>
|
||||
</tr>
|
||||
<!-- /TMPL_IF -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<ul>
|
||||
<li><a href="/cgi-bin/koha/reports/inventory.pl">Inventory/Stocktaking</a></li>
|
||||
<li><a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalogue by itemtype</a></li>
|
||||
<li><a href="/cgi-bin/koha/reports/catalogue_stats.pl">Inventory/Stocktaking</a></li>
|
||||
<li><a href="/cgi-bin/koha/reports/catalogue_stats.pl">Catalogue statistics</a></li>
|
||||
</ul>
|
||||
<h2 class="reports">Stats on issues</h2>
|
||||
<ul>
|
||||
|
|
|
@ -140,9 +140,13 @@ if ($do_it) {
|
|||
$req->execute;
|
||||
my @select_sort2;
|
||||
push @select_sort2,"";
|
||||
my $hassort2;
|
||||
while (my ($value) =$req->fetchrow) {
|
||||
if ($value) {
|
||||
$hassort2 = 1;
|
||||
push @select_sort2, $value;
|
||||
}
|
||||
}
|
||||
my $CGIsort2=CGI::scrolling_list( -name => 'Filter',
|
||||
-id => 'Filter',
|
||||
-values => \@select_sort2,
|
||||
|
@ -172,6 +176,7 @@ if ($do_it) {
|
|||
CGISort1 => $CGIsort1,
|
||||
hassort1 => $hassort1,
|
||||
CGISort2 => $CGIsort2,
|
||||
hassort2 => $hassort2,
|
||||
CGIextChoice => $CGIextChoice,
|
||||
CGIsepChoice => $CGIsepChoice
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue