From 00682ca916d34ee1478d50a431b904999dedf207 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 5 May 2008 12:14:26 +0000 Subject: [PATCH] =?utf8?q?Anlegen=20von=20Waren=20und=20Dienstleistungen?= =?utf8?q?=20aus=20Vorg=C3=A4ngen=20heraus:=20Wird=20gleich=20eine=20Langb?= =?utf8?q?eschreibung=20eingegeben,=20so=20wird=20diese=20nun=20in=20das?= =?utf8?q?=20Bemerkungsfeld=20des=20neuanzulegenden=20Artikels=20=C3=BCber?= =?utf8?q?nommen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bin/mozilla/io.pl | 1 + 1 file changed, 1 insertion(+) 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 ] } ); -- 2.39.5