Revision 2f7402c4
Von Jan Büren vor etwa 3 Jahren hinzugefügt
SL/DB/Shop.pm | ||
---|---|---|
23 | 23 |
push @errors, $::locale->text('The Host Name seems invalid') unless $self->{server} =~ m/[0-9A-Za-z].\.[0-9A-Za-z]/; |
24 | 24 |
push @errors, $::locale->text('Orders to fetch neeeds a positive Integer') |
25 | 25 |
unless $self->{orders_to_fetch} > 0; |
26 |
|
|
27 |
# not yet implemented checks |
|
28 |
push @errors, $::locale->text('Transaction Description is not yet implemented') if $self->{transaction_description}; |
|
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}; |
|
32 |
} |
|
26 | 33 |
return @errors; |
27 | 34 |
} |
28 | 35 |
|
Auch abrufbar als: Unified diff
Shop: Not Yet Implemented Errors falls eine Shopware6 Config gespeichert wird