Bug 25033: (follow-up) Don't delete branchcode key from suggestion_ref
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
4d01e9da98
commit
182db38e22
1 changed files with 2 additions and 2 deletions
|
@ -219,7 +219,7 @@ if ( $op =~ /save/i ) {
|
|||
}
|
||||
# empty fields, to avoid filter in "SearchSuggestion"
|
||||
}
|
||||
map{delete $$suggestion_ref{$_}} keys %$suggestion_ref;
|
||||
map{delete $$suggestion_ref{$_} unless $_ eq 'branchcode' } keys %$suggestion_ref;
|
||||
$op = 'else';
|
||||
|
||||
if( $redirect eq 'purchase_suggestions' ) {
|
||||
|
@ -324,7 +324,7 @@ elsif ( $op eq 'show' ) {
|
|||
}
|
||||
if ($op=~/else/) {
|
||||
$op='else';
|
||||
|
||||
|
||||
$displayby||="STATUS";
|
||||
# distinct values of display by
|
||||
my $criteria_list=GetDistinctValues("suggestions.".$displayby);
|
||||
|
|
Loading…
Reference in a new issue