From: G. Richardson Date: Tue, 20 Jan 2015 15:24:29 +0000 (+0100) Subject: Preisgruppenpreis = Verkaufspreis erlauben X-Git-Tag: release-3.2.0beta~65 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=c47100f5cfbb8ffc6f1f8b8fe6d6dff914b1e24a;p=kivitendo-erp.git Preisgruppenpreis = Verkaufspreis erlauben War eine Uraltregel, sollte mit dem neuen Pricesource weder nötig, noch erwünscht sein. Siehe Ticket 24. --- diff --git a/SL/IC.pm b/SL/IC.pm index 751a1473b..27af46a50 100644 --- a/SL/IC.pm +++ b/SL/IC.pm @@ -419,10 +419,9 @@ sub save { $query = qq|INSERT INTO prices (parts_id, pricegroup_id, price) VALUES(?, ?, ?)|; $sth = prepare_query($form, $dbh, $query); - # insert price records only if different to sellprice for my $i (1 .. $form->{price_rows}) { my $price = $form->parse_amount($myconfig, $form->{"price_$i"}); - next unless $price && ($price != $form->{sellprice}); + next unless $price; @values = (conv_i($form->{id}), conv_i($form->{"pricegroup_id_$i"}), $price); do_statement($form, $sth, $query, @values);