From 529750ee9087ac159f07708ccd75d5403e694ce6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Fri, 4 Oct 2019 19:07:29 +0200 Subject: [PATCH] S:C:YearEndTransactions: Warnung vermeiden: Variablen waren schon deklariert --- SL/Controller/YearEndTransactions.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SL/Controller/YearEndTransactions.pm b/SL/Controller/YearEndTransactions.pm index 658cf42f8..00dea4b67 100644 --- a/SL/Controller/YearEndTransactions.pm +++ b/SL/Controller/YearEndTransactions.pm @@ -364,7 +364,7 @@ sub _year_end_bookings { }; }; - my $debit_cb_acc = SL::DB::AccTransaction->new( + $debit_cb_acc = SL::DB::AccTransaction->new( transdate => $cb_date, ob_transaction => 0, cb_transaction => 1, @@ -374,7 +374,7 @@ sub _year_end_bookings { taxkey => 0, amount => $pl_debit_balance, ); - my $credit_cb_acc = SL::DB::AccTransaction->new( + $credit_cb_acc = SL::DB::AccTransaction->new( transdate => $cb_date, ob_transaction => 0, cb_transaction => 1, -- 2.20.1