From: Sven Schöling Date: Wed, 9 Apr 2008 16:39:32 +0000 (+0000) Subject: Bugfix: oldcustomer/oldvendor wurden beim laden nicht richtig gesetzt, was Versuche... X-Git-Tag: release-2.6.0beta1~175 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=85f74d13afed6c9212ad0856b9f34a1f81f354c4;p=kivitendo-erp.git Bugfix: oldcustomer/oldvendor wurden beim laden nicht richtig gesetzt, was Versuche ein geladenes Angebot ohne update zu speichern verbuggt hat. --- diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index 3cda960b3..93f28f020 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -229,11 +229,11 @@ sub order_links { $form->{employee} = "$form->{employee}--$form->{employee_id}"; # build vendor/customer drop down comatibility... don't ask - $form->{"old$form->{vc}"} = $form->{vc}; if (@{ $form->{"all_$form->{vc}"} }) { $form->{"select$form->{vc}"} = 1; $form->{$form->{vc}} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|; } + $form->{"old$form->{vc}"} = $form->{$form->{vc}}; $lxdebug->leave_sub(); }