Revision d1b27aa3
Von Tamino Steinert vor 5 Tagen hinzugefügt
SL/Controller/Part.pm | ||
---|---|---|
522 | 522 |
assortment => t8('Edit Assortment'), |
523 | 523 |
); |
524 | 524 |
my $title = $title_hash{$self->part->part_type}; |
525 |
$title .= |
|
526 |
' (' . SL::Presenter::Part::variant_type_abbreviation($self->part->variant_type) . ')' |
|
527 |
if $self->part->variant_type; |
|
525 |
|
|
526 |
my $variant_abbr = SL::Presenter::Part::variant_type_abbreviation( |
|
527 |
$self->part->variant_type); |
|
528 |
$title .= ' (' . $variant_abbr . ')' if $variant_abbr; |
|
528 | 529 |
|
529 | 530 |
$self->part->prices([]) unless $self->part->prices; |
530 | 531 |
$self->part->translations([]) unless $self->part->translations; |
Auch abrufbar als: Unified diff
Varianten: S:C:Part: Varianten-Type-Abkürzung bei 'single' nicht anzeigen