Revision ba817380
Von Jan Büren vor fast 3 Jahren hinzugefügt
SL/DB/Shop.pm | ||
---|---|---|
25 | 25 |
unless $self->{orders_to_fetch} > 0; |
26 | 26 |
|
27 | 27 |
# not yet implemented checks |
28 |
push @errors, $::locale->text('Transaction Description is not yet implemented') if $self->{transaction_description}; |
|
28 |
push @errors, $::locale->text('Transaction Description is not yet implemented') if $self->{transaction_description};
|
|
29 | 29 |
if ($self->{connector} eq 'shopware6') { |
30 |
push @errors, $::locale->text('Shipping cost article not implemented') if $self->{shipping_costs_parts_id}; |
|
31 |
push @errors, $::locale->text('Fetch from last order number not implemented') if $self->{last_order_number}; |
|
30 |
push @errors, $::locale->text('Shipping cost article is not implemented') if $self->{shipping_costs_parts_id}; |
|
31 |
push @errors, $::locale->text('Fetch from last order number is not implemented') if $self->{last_order_number}; |
|
32 |
} else { |
|
33 |
push @errors, $::locale->text('Use Long Description from Parts is only for Shopware6 implemented') |
|
34 |
if $self->{use_part_longdescription}; |
|
32 | 35 |
} |
33 | 36 |
return @errors; |
34 | 37 |
} |
Auch abrufbar als: Unified diff
Shop-Konfig: Not implemented für alles außer sw6 ergänzt (part.notes)