Revision 9ff2730f
Von Moritz Bunkus vor etwa 4 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
1037 | 1037 |
my ($self) = @_; |
1038 | 1038 |
|
1039 | 1039 |
foreach my $item_id (@{ $::form->{item_ids} }) { |
1040 |
my $idx = first_index { $_ eq $item_id } @{ $::form->{orderitem_ids} }; |
|
1041 |
my $item = $self->order->items_sorted->[$idx]; |
|
1040 |
my $idx = first_index { $_ eq $item_id } @{ $::form->{orderitem_ids} }; |
|
1041 |
my $item = $self->order->items_sorted->[$idx]; |
|
1042 |
my $texts = get_part_texts($item->part, $self->order->language_id); |
|
1042 | 1043 |
|
1043 |
$item->description($item->part->description);
|
|
1044 |
$item->longdescription($item->part->notes);
|
|
1044 |
$item->description($texts->{description});
|
|
1045 |
$item->longdescription($texts->{longdescription});
|
|
1045 | 1046 |
|
1046 | 1047 |
my $price_source = SL::PriceSource->new(record_item => $item, record => $self->order); |
1047 | 1048 |
|
Auch abrufbar als: Unified diff
Neuer Angebots-/Auftragscontroller: Unterstützung für Artikelübersetzungen 2
Bei Funktion »Artikeldaten aus Stammdaten holen«.
Funktioniert noch nicht für die Langbeschreibung, weil die Funktion
das von der Architektur her bisher gar nicht unterstützt.