Bug 34478: Basket group export CSV option should not check cud-op

The Export CSV operation is GET and uses op=export, so the script should
not check for "cud-op."

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Owen Leonard 2024-02-15 12:32:25 +00:00 committed by Jonathan Druart
parent 62d9f73e9e
commit 95c4f93671
Signed by: jonathan.druart
GPG key ID: A085E712BEF0E0F0

View file

@ -324,7 +324,7 @@ if ( $op eq "add_form" ) {
my $basketgroupid = $input->param('basketgroupid');
printbasketgrouppdf($basketgroupid);
exit;
}elsif ( $op eq "cud-export" ) {
}elsif ( $op eq "export" ) {
#
# export a closed basketgroup in csv
#