From d4ad05ef74d91abe9c570e269e0fe0d05a4335f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Thu, 3 Feb 2022 10:35:59 +0100 Subject: [PATCH] Shop: Shop-Order-Items nach OrderItems: Langtext + Beschreibung MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Die Beschreibung aus dem Shop sollte für den Auftrag besser passen, als das was aktuell in kivi.Parts vorhanden ist. Langtext wird nicht im Shop angezeigt, aber das darf dann ruhig aus Parts kommen (so wie beim manuellen Hinzufügen). --- SL/DB/ShopOrder.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SL/DB/ShopOrder.pm b/SL/DB/ShopOrder.pm index ae5d8568f..00399029b 100644 --- a/SL/DB/ShopOrder.pm +++ b/SL/DB/ShopOrder.pm @@ -48,7 +48,8 @@ sub convert_to_sales_order { }else{ my $current_order_item = SL::DB::OrderItem->new( parts_id => $part->id, - description => $part->description, + description => $_->description, # description from the shop + longdescription => $part->notes, # longdescription from parts. TODO locales qty => $_->quantity, sellprice => $_->price, unit => $part->unit, -- 2.20.1