From: Moritz Bunkus Date: Mon, 5 May 2008 12:14:26 +0000 (+0000) Subject: Anlegen von Waren und Dienstleistungen aus Vorgängen heraus: Wird gleich eine Langbes... X-Git-Tag: release-2.6.0beta1~153 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=00682ca916d34ee1478d50a431b904999dedf207;p=kivitendo-erp.git Anlegen von Waren und Dienstleistungen aus Vorgängen heraus: Wird gleich eine Langbeschreibung eingegeben, so wird diese nun in das Bemerkungsfeld des neuanzulegenden Artikels übernommen. --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index da884bc78..9d290c739 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -632,6 +632,7 @@ sub new_item { push @HIDDENS, map +{ 'name' => $_, 'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit); push @HIDDENS, { 'name' => 'taxaccount2', 'value' => $form->{taxaccounts} }; push @HIDDENS, { 'name' => $price_key, 'value' => $form->parse_amount(\%myconfig, $form->{"sellprice_$form->{rowcount}"}) }; + push @HIDDENS, { 'name' => 'notes', 'value' => $form->{"longdescription_$form->{rowcount}"} }; $form->header(); print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );