From c4a13349f53975eb5e1e0d8ae6f4e09f5a334797 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Mon, 7 Mar 2022 08:58:57 +0100 Subject: [PATCH] Auftrags-Controller: before-run-hook deutlicher benannt --- SL/Controller/Order.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SL/Controller/Order.pm b/SL/Controller/Order.pm index 87a9e9cf4..e13339b2e 100644 --- a/SL/Controller/Order.pm +++ b/SL/Controller/Order.pm @@ -56,7 +56,7 @@ use Rose::Object::MakeMethods::Generic # safety __PACKAGE__->run_before('check_auth'); -__PACKAGE__->run_before('check_auth_save', +__PACKAGE__->run_before('check_auth_for_edit', except => [ qw(edit show_customer_vendor_details_dialog price_popup load_second_rows) ]); __PACKAGE__->run_before('recalc', @@ -1381,7 +1381,7 @@ sub check_auth { $::auth->assert($right); } -sub check_auth_save { +sub check_auth_for_edit { my ($self) = @_; my $right_for = { map { $_ => $_.'_edit' } @{$self->valid_types} }; -- 2.20.1