From 81e751641325ca24de4dac97c07f78e1761ce2e3 Mon Sep 17 00:00:00 2001
From: Julian Maurice <julian.maurice@biblibre.com>
Date: Tue, 10 Oct 2023 11:52:26 +0200
Subject: [PATCH] Bug 27249: Fix code style

---
 Koha/Exceptions/Calendar.pm |  2 +-
 circ/circulation.pl         | 64 +++++++++++++++++++------------------
 2 files changed, 34 insertions(+), 32 deletions(-)

diff --git a/Koha/Exceptions/Calendar.pm b/Koha/Exceptions/Calendar.pm
index 3891c3bced..cdb632a195 100644
--- a/Koha/Exceptions/Calendar.pm
+++ b/Koha/Exceptions/Calendar.pm
@@ -9,7 +9,7 @@ use Exception::Class (
         isa => 'Koha::Exception',
     },
     'Koha::Exceptions::Calendar::NoOpenDays' => {
-        isa => 'Koha::Exceptions::Calendar',
+        isa         => 'Koha::Exceptions::Calendar',
         description => 'Library has no open days',
     },
 );
diff --git a/circ/circulation.pl b/circ/circulation.pl
index c947fcd2ca..f96580fee7 100755
--- a/circ/circulation.pl
+++ b/circ/circulation.pl
@@ -290,36 +290,36 @@ if ($patron) {
 #
 #
 if (@$barcodes) {
-  my $checkout_infos;
-  for my $barcode ( @$barcodes ) {
-
-    my $template_params = {
-        barcode         => $barcode,
-        onsite_checkout => $onsite_checkout,
-    };
-
-    # always check for blockers on issuing
-    my ( $error, $question, $alerts, $messages );
-    try {
-        ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
-            $patron,
-            $barcode, $datedue,
-            $inprocess,
-            undef,
-            {
-                onsite_checkout     => $onsite_checkout,
-                override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
-            }
-        );
-    } catch {
-        die $_ unless blessed $_ && $_->can('rethrow');
+    my $checkout_infos;
+    for my $barcode ( @$barcodes ) {
+
+        my $template_params = {
+            barcode         => $barcode,
+            onsite_checkout => $onsite_checkout,
+        };
+
+        # always check for blockers on issuing
+        my ( $error, $question, $alerts, $messages );
+        try {
+            ( $error, $question, $alerts, $messages ) = CanBookBeIssued(
+                $patron,
+                $barcode, $datedue,
+                $inprocess,
+                undef,
+                {
+                    onsite_checkout     => $onsite_checkout,
+                    override_high_holds => $override_high_holds || $override_high_holds_tmp || 0,
+                }
+            );
+        } catch {
+            die $_ unless blessed $_ && $_->can('rethrow');
 
-        if ($_->isa('Koha::Exceptions::Calendar::NoOpenDays')) {
-            $error = { NO_OPEN_DAYS => 1 };
-        } else {
-            $_->rethrow;
-        }
-    };
+            if ( $_->isa('Koha::Exceptions::Calendar::NoOpenDays') ) {
+                $error = { NO_OPEN_DAYS => 1 };
+            } else {
+                $_->rethrow;
+            }
+        };
 
     my $blocker = $invalidduedate ? 1 : 0;
 
@@ -365,8 +365,10 @@ if (@$barcodes) {
 
     # Only some errors will block when performing forced onsite checkout,
     # for other cases all errors will block
-    my @blocking_error_codes = ($onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce")) ?
-        qw( UNKNOWN_BARCODE NO_OPEN_DAYS ) : (keys %$error);
+    my @blocking_error_codes =
+        ( $onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce") )
+        ? qw( UNKNOWN_BARCODE NO_OPEN_DAYS )
+        : ( keys %$error );
 
     foreach my $code ( @blocking_error_codes ) {
         if ($error->{$code}) {
-- 
2.30.2