projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
178cd80
)
Ganz böse Verwechselung mit 't' und 'f' bzw. '1' und '0', die zur Verwechslung von...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 5 Jul 2007 13:40:10 +0000
(13:40 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 5 Jul 2007 13:40:10 +0000
(13:40 +0000)
SL/OE.pm
patch
|
blob
|
history
diff --git
a/SL/OE.pm
b/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};
}