Browse Source

bug fixing :

- Printer selection for add a new branch, is now working

   - the branchname of librarian is not display automaticly if you add a new branch

   - the printqueue is now displayed on branches infos page and edit branch page
3.0.x
alaurin 18 years ago
parent
commit
c80648938c
  1. 22
      admin/branches.pl
  2. 2
      koha-tmpl/intranet-tmpl/prog/en/admin/branches.tmpl

22
admin/branches.pl

@ -204,14 +204,14 @@ sub editbranchform {
my $selected = 1 if $oldprinter eq $printers->{$thisprinter}->{'printqueue'};
my %row =(value => $thisprinter,
selected => $selected,
branchprinter => $printers->{$thisprinter}->{'printername'},
branchprinter => $printers->{$thisprinter}->{'printqueue'},
);
push @printerloop, \%row;
}
$template->param(printerloop => \@printerloop );
$template->param(branchcode => $data->{'branchcode'});
$template->param(branchname => $data->{'branchname'});
$template->param(branch_name => $data->{'branchname'});
$template->param(branchaddress1 => $data->{'branchaddress1'});
$template->param(branchaddress2 => $data->{'branchaddress2'});
$template->param(branchaddress3 => $data->{'branchaddress3'});
@ -220,17 +220,15 @@ sub editbranchform {
$template->param(branchemail => $data->{'branchemail'});
$template->param(branchip => $data->{'branchip'});
}
else {
# on add new branch mode, simple scrolling list
$CGIprinter=CGI::scrolling_list( -name => 'branchprinter',
-id => 'branchprinter',
-values => \@printerloop,
-size => 1,
-multiple => 0 );
else { #case of an add branch select printer
foreach my $thisprinter (keys %$printers) {
my %row =(value => $thisprinter,
branchprinter => $printers->{$thisprinter}->{'printqueue'},
);
push @printerloop, \%row;
}
$template->param(printerloop => \@printerloop );
}
# sending the cgiprinter to the template
# $template->param(printerloop => $CGIprinter);
# make the checkboxs.....
#

2
koha-tmpl/intranet-tmpl/prog/en/admin/branches.tmpl

@ -25,7 +25,7 @@
</tr>
<tr>
<td>Name</td>
<td><input type="text" name="branchname" size="40" maxlength="80" value="<!-- TMPL_VAR name="branchname" escape="HTML" -->" />&nbsp;</td>
<td><input type="text" name="branchname" size="40" maxlength="80" value="<!-- TMPL_VAR name="branch_name" escape="HTML" -->" />&nbsp;</td>
</tr>
<!-- TMPL_LOOP name="categoryloop" -->
<tr>

Loading…
Cancel
Save