From: Bernd Bleßmann Date: Mon, 7 Sep 2015 12:45:25 +0000 (+0200) Subject: Auftrags-Controller: item-Methoden richtig nutzen, nicht als Hash-Elemente. X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=68be1335e2f0896f2d81939a896ad2e08343abda;p=kivitendo-erp.git Auftrags-Controller: item-Methoden richtig nutzen, nicht als Hash-Elemente. --- diff --git a/SL/Controller/Order.pm b/SL/Controller/Order.pm index b6cdef475..eff55ca07 100644 --- a/SL/Controller/Order.pm +++ b/SL/Controller/Order.pm @@ -144,11 +144,11 @@ sub action_add_item { my %new_attr; $new_attr{part} = $part; - $new_attr{description} = $part->description if ! $item->{description}; - $new_attr{qty} = 1.0 if ! $item->{qty}; + $new_attr{description} = $part->description if ! $item->description; + $new_attr{qty} = 1.0 if ! $item->qty; $new_attr{unit} = $part->unit; - $new_attr{sellprice} = $part->sellprice if ! $item->{sellprice}; - $new_attr{discount} = $cv_discount if ! $item->{discount}; + $new_attr{sellprice} = $part->sellprice if ! $item->sellprice; + $new_attr{discount} = $cv_discount if ! $item->discount; $item->assign_attributes(%new_attr); $item->id(join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000)) if !$item->id;