From dc0dff70aac51adc6086a3d61e4c027174b711bc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 25 Oct 2007 16:18:15 +0000 Subject: [PATCH] Fix zu Bug 769 --- bin/mozilla/oe.pl | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index 7b7fae9d9..3a31a2ee7 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -300,7 +300,9 @@ sub prepare_order { sub form_header { $lxdebug->enter_sub(); my @custom_hiddens; - %TMPL_VAR = (); + + # Container for template variables. Unfortunately this has to be visible in form_footer too, so not my. + our %TMPL_VAR = (); $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id}; $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id}; @@ -310,19 +312,19 @@ sub form_header { $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id}; $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id}; - map { $form->{$_} =~ s/\"/"/g } - qw(ordnumber quonumber shippingpoint shipvia notes intnotes shiptoname + map { $form->{$_} = H($form->{$_}) } + qw(shippingpoint shipvia notes intnotes shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptodepartment_1 shiptodepartment_2); # use JavaScript Calendar or not $form->{jsscript} = 1; $TMPL_VAR{button1} = qq| - + text('button') . qq|> |; $TMPL_VAR{button2} = qq| - + text('button') . qq|> |; #write Trigger @@ -382,7 +384,7 @@ sub form_header { ($myconfig{vclimit} <= scalar(@values)) ? $cgi->textfield(-value => H($form->{"old$form->{vc}"} =~ /^(.*)\-\-.*$/), -name => $form->{vc}) : NTI($cgi->popup_menu('-name' => "$form->{vc}", '-default' => $form->{"old$form->{vc}"}, - '-onChange' => 'document.getElementById(\'update_button\').click();', + '-onChange' => "document.getElementById('update_button').click();", '-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')); # payments (for footer) @@ -393,6 +395,10 @@ sub form_header { # shipto @values = ("", map { $_->{shipto_id} } @{ $form->{ALL_SHIPTO} }); + $TMPL_VAR{ALL_SHIPTO} = $form->{ALL_SHIPTO}; + for my $item ( @{ $TMPL_VAR{ALL_SHIPTO} }) { + $item->{label} = join "; ", grep { $_ } map { $item->{"shipto${_}" } } qw(name department_1 street city); + } %labels = map { my $item=$_; $_->{shipto_id} => join "; ", grep { $_ } map { $item->{"shipto${_}" } } qw(name department_1 street city) } @{ $form->{ALL_SHIPTO} }; $TMPL_VAR{shipto} = NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values, '-style' => 'width: 250px', '-labels' => \%labels, '-default' => $form->{"shipto_id"})) if scalar @values > 1; @@ -2013,7 +2019,7 @@ sub display_row { { id => 'projectnr', width => 10, value => $locale->text('Project'), display => 0, }, { id => 'sellprice', width => 15, value => $locale->text('Price'), display => 1, }, { id => 'sellprice_pg', width => 15, value => $locale->text('Pricegroup'), display => $form->{type} =~ /^sales_/, }, - { id => 'discount', width => undef, value => $locale->text('Discount'), display => $form->{vc} eq 'customer', }, + { id => 'discount', width => 5, value => $locale->text('Discount'), display => $form->{vc} eq 'customer', }, { id => 'linetotal', width => 10, value => $locale->text('Extended'), display => 1, }, { id => 'bin', width => 10, value => $locale->text('Bin'), display => 0, }, ); -- 2.20.1