From: Moritz Bunkus Date: Mon, 5 Feb 2007 15:51:19 +0000 (+0000) Subject: Beim Drucken von Proforma-Rechnungen aus der Rechnungsmaske heraus muss die Variable... X-Git-Tag: release-2.4.2~145 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=38bb53ed90fc6260db01741bdc8f295db4149e9a;p=kivitendo-erp.git Beim Drucken von Proforma-Rechnungen aus der Rechnungsmaske heraus muss die Variable $form->{"invdate"} und nicht $form->{"transdate"} benutzt werden. Fix für Bug 525. --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 3732e77cb..5588939f8 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -1762,8 +1762,7 @@ sub print_form { if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) { $inv = "inv"; $due = "due"; - $form->{"${inv}date"} = $form->{transdate}; - $form->{"invdate"} = $form->{transdate}; + $form->{"${inv}date"} = $form->{invdate}; $form->{label} = $locale->text('Proforma Invoice'); $numberfld = "sonumber"; $order = 0;