Ganz böse Verwechselung mit 't' und 'f' bzw. '1' und '0', die zur Verwechslung von...
[kivitendo-erp.git] / SL / OE.pm
index b6a261a..6332a59 100644 (file)
--- a/SL/OE.pm
+++ b/SL/OE.pm
@@ -393,11 +393,11 @@ sub save {
 
   # fill in subject if there is none
   if ($form->{type} =~ /_order$/) {
-    $quotation = 't';
+    $quotation = 'f';
     $form->{subject} = qq|$form->{label} $form->{ordnumber}|
       unless $form->{subject};
   } else {
-    $quotation = 'f';
+    $quotation = 't';
     $form->{subject} = qq|$form->{label} $form->{quonumber}|
       unless $form->{subject};
   }