Zuviel in b24afac71c944 entfernt. Historie und Wiedervorlage wieder anzeigen
authorJan Büren <jan@kivitendo.de>
Thu, 31 Mar 2022 08:35:06 +0000 (10:35 +0200)
committerJan Büren <jan@kivitendo.de>
Thu, 31 Mar 2022 08:35:06 +0000 (10:35 +0200)
Historie ist nur lesend im Zugriff und Wiedervorlagen zu
schreibgeschützten Belegen zu erstellen, wenn das Recht productivity
vergeben ist, find ich i.O.

SL/Controller/Order.pm

index 39b3c01..af7858a 100644 (file)
@@ -2226,6 +2226,22 @@ sub setup_edit_action_bar {
         only_if  => $deletion_allowed,
       ],
 
+      combobox => [
+        action => [
+          t8('more')
+        ],
+        action => [
+          t8('History'),
+          call     => [ 'set_history_window', $self->order->id, 'id' ],
+          disabled => !$self->order->id ? t8('This record has not been saved yet.') : undef,
+        ],
+        action => [
+          t8('Follow-Up'),
+          call     => [ 'kivi.Order.follow_up_window' ],
+          disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
+          only_if  => $::auth->assert('productivity', 1),
+        ],
+      ], # end of combobox "more"
     );
   }
 }