Ansonsten werden die EKs von schon in der DB gespeicherten Aufträgen immer mit
denen des Artikels überschrieben.
siehe auch commit
370d43e2028e8a450055048f1354da48163d3954
"Order Controller - lastcost von Positionen mit speichern"
und refs #201 (redmine)
$item->assign_attributes(%$attr);
$item->longdescription($item->part->notes) if $is_new && !defined $attr->{longdescription};
# item fields that currently can't be set in in row but are needed:
- $item->lastcost($item->part->lastcost);
+ $item->lastcost($item->part->lastcost) if $is_new;
return $item;
}