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:
4be2d4d
)
Dirty hack: Konvertierung ODT -> PDF als "OK" ansehen, wenn PDF existiert
author
Moritz Bunkus
<moritz@bunkus.org>
Tue, 3 Aug 2010 12:24:08 +0000
(14:24 +0200)
committer
Moritz Bunkus
<moritz@bunkus.org>
Wed, 4 Aug 2010 10:03:30 +0000
(12:03 +0200)
Grund: OpenOffice bzw. der UNO-Connector stürzt gerne nach
erfolgreicher Konviertierung mit einem segmentation fault ab. Das PDF
ist in so einem Fall aber vollständig.
SL/Template.pm
patch
|
blob
|
history
diff --git
a/SL/Template.pm
b/SL/Template.pm
index
f767967
..
24285bf
100644
(file)
--- a/
SL/Template.pm
+++ b/
SL/Template.pm
@@
-1360,7
+1360,7
@@
sub convert_to_pdf {
system(@cmdline);
my $res = $?;
- if (
0 == $?
) {
+ if (
(0 == $?) || (-f "${filename}.pdf" && -s "${filename}.pdf")
) {
$form->{"tmpfile"} =~ s/odt$/pdf/;
unlink($filename . ".odt");