X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/2c6717d9653f11fd560fdac0a2aa06b4096ba2b6..9d6a2ef23cd5586ed4ea3d5a8d59362220251d68:/SL/Controller/CsvImport/Part.pm?ds=inline diff --git a/SL/Controller/CsvImport/Part.pm b/SL/Controller/CsvImport/Part.pm index 4f1278ac4..6756ad676 100644 --- a/SL/Controller/CsvImport/Part.pm +++ b/SL/Controller/CsvImport/Part.pm @@ -192,7 +192,7 @@ sub check_existing { if ($self->settings->{article_number_policy} eq 'update_prices') { if ($entry->{part}) { - map { $object->$_( $entry->{part}->$_ ) } qw(sellprice listprice lastcost); + map { $entry->{part}->$_( $object->$_ ) } qw(sellprice listprice lastcost min_sellprice); push @{ $entry->{information} }, $::locale->text('Updating prices of existing entry in database'); $entry->{object_to_save} = $entry->{part}; }