From: Bernd Bleßmann Date: Fri, 8 Dec 2017 13:50:34 +0000 (+0100) Subject: Auftrags-Controller: Sortimente mit Mehrfachauswahl hinzufügen können. X-Git-Tag: release-3.5.4~502 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=01e7e97823e87669b285c8126810e5eb9f9810db;p=kivitendo-erp.git Auftrags-Controller: Sortimente mit Mehrfachauswahl hinzufügen können. Behebt #220 (redmine). --- diff --git a/SL/Controller/Order.pm b/SL/Controller/Order.pm index 06a9f74cb..3075b6790 100644 --- a/SL/Controller/Order.pm +++ b/SL/Controller/Order.pm @@ -517,7 +517,7 @@ sub action_add_multi_items { # set discount to 100% if item isn't supposed to be charged, overwriting any customer discount $item->discount(1) unless $assortment_item->charge; - push @items, $assortment_item; + push @items, $item; } } }