Das per Email Versenden wird nicht in der History des Dokuments angezeigt
authorMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Wed, 25 Oct 2017 08:16:03 +0000 (10:16 +0200)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 15 Sep 2021 11:17:34 +0000 (13:17 +0200)
Hier war eine Einschränkung in der Datenbankabfrage zu viel.

fix #101

(cherry picked from commit 41dfbbd6b8d0823a34c201e849e8570172758307)
(angepasster cherry-pick von odyn)

bin/mozilla/common.pl

index 33ef7e3..2f9df9e 100644 (file)
@@ -242,7 +242,7 @@ sub show_history {
   if ( $form->{trans_id_type} eq 'glid' ) {
     $restriction = "AND ( snumbers LIKE 'invnumber%' OR what_done LIKE '%Buchungsnummer%' OR snumbers LIKE 'gltransaction%' OR snumbers LIKE 'emailjournal%' ) ";
   } elsif ( $form->{trans_id_type} eq 'id' ) {
-    $restriction = " AND ( snumbers NOT LIKE 'invnumber_%' AND snumbers NOT LIKE 'gltransaction%' AND snumbers NOT LIKE 'emailjournal%' AND (what_done NOT LIKE '%Buchungsnummer%' OR what_done IS null))";
+    $restriction = " AND ( snumbers NOT LIKE 'invnumber_%' AND snumbers NOT LIKE 'gltransaction%' AND (what_done NOT LIKE '%Buchungsnummer%' OR what_done IS null))";
   } else {
     $restriction = '';
   };