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:
a06b7de
)
Bei Angebot / Auftrag / Lieferschein (Ein- und Verkauf) wird beim Drucken-Knopf der...
author
Martin Helmling
<MartinHelmling@octo-soft.de>
Tue, 7 Jan 2014 10:18:28 +0000
(11:18 +0100)
committer
Martin Helmling
<MartinHelmling@octo-soft.de>
Tue, 7 Jan 2014 10:18:40 +0000
(11:18 +0100)
Bug 2047 beheben
bin/mozilla/io.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/io.pl
b/bin/mozilla/io.pl
index
56a0354
..
0ba1991
100644
(file)
--- a/
bin/mozilla/io.pl
+++ b/
bin/mozilla/io.pl
@@
-1196,12
+1196,17
@@
sub print {
}
$form->{print_and_save} = 1;
my $formname = $form->{formname};
-
&
save();
+ save();
$form->{formname} = $formname;
-
&
edit();
+ edit();
$::lxdebug->leave_sub();
::end_of_request();
}
+ elsif (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)) {
+ $form->{print_and_save} = 1;
+ save();
+ }
+
&print_form($old_form);