From: Sven Schöling Date: Mon, 14 Mar 2011 16:46:09 +0000 (+0100) Subject: Title erst nach create_invoice setzen, dadrin wird der typ sanitized. X-Git-Tag: release-2.6.3~49 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;ds=inline;h=254bf1ffce20af018f500b81c37b6172f60beccb;hp=5dd469a517459d54610d9999f1b9c68a5ff29a73;p=kivitendo-erp.git Title erst nach create_invoice setzen, dadrin wird der typ sanitized. --- diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 9f57eabf9..5c55ad69b 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -94,14 +94,6 @@ sub edit { $form->{javascript} = qq||; #/show hhistory button - if ($form->{type} eq "credit_note") { - $form->{title} = $locale->text('Edit Credit Note'); - $form->{title} = $locale->text('Edit Storno Credit Note') if $form->{storno}; - } else { - $form->{title} = $locale->text('Edit Sales Invoice'); - $form->{title} = $locale->text('Edit Storno Invoice') if $form->{storno}; - } - my ($language_id, $printer_id); if ($form->{print_and_post}) { $form->{action} = "print"; @@ -109,7 +101,16 @@ sub edit { $language_id = $form->{language_id}; $printer_id = $form->{printer_id}; } + &invoice_links; + if ($form->{type} eq "credit_note") { + $form->{title} = $locale->text('Edit Credit Note'); + $form->{title} = $locale->text('Edit Storno Credit Note') if $form->{storno}; + } else { + $form->{title} = $locale->text('Edit Sales Invoice'); + $form->{title} = $locale->text('Edit Storno Invoice') if $form->{storno}; + } + &prepare_invoice; if ($form->{print_and_post}) { $form->{language_id} = $language_id;