Revision 02e6f9db
Von Bernd Bleßmann vor fast 11 Jahren hinzugefügt
SL/Controller/CsvImport/Order.pm | ||
---|---|---|
49 | 49 |
# SUPER::init_profile sets row_ident to the translated class name |
50 | 50 |
# overwrite it with the user specified settings |
51 | 51 |
foreach my $p (@{ $profile }) { |
52 |
if ($p->{row_ident} eq $::locale->text('Order')) {
|
|
52 |
if ($p->{class} eq 'SL::DB::Order') {
|
|
53 | 53 |
$p->{row_ident} = $self->_order_column; |
54 | 54 |
} |
55 |
if ($p->{row_ident} eq $::locale->text('OrderItem')) {
|
|
55 |
if ($p->{class} eq 'SL::DB::OrderItem') {
|
|
56 | 56 |
$p->{row_ident} = $self->_item_column; |
57 | 57 |
} |
58 | 58 |
} |
Auch abrufbar als: Unified diff
Deutlich machen, dass hier auf das der Klasse entsprechende Profil geprüft wird.