From: Jan Büren Date: Thu, 18 Nov 2021 09:32:28 +0000 (+0100) Subject: Shop: Not Yet Implemented Errors falls eine Shopware6 Config gespeichert wird X-Git-Tag: kivitendo-mebil_0.1-0~10^2~2^2~218^2~29 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=499b6f5c727d0492517f169b4389fa29858773a4;p=kivitendo-erp.git Shop: Not Yet Implemented Errors falls eine Shopware6 Config gespeichert wird --- diff --git a/SL/DB/Shop.pm b/SL/DB/Shop.pm index e75f17c6e..efa54c7fa 100644 --- a/SL/DB/Shop.pm +++ b/SL/DB/Shop.pm @@ -23,6 +23,13 @@ sub validate { push @errors, $::locale->text('The Host Name seems invalid') unless $self->{server} =~ m/[0-9A-Za-z].\.[0-9A-Za-z]/; push @errors, $::locale->text('Orders to fetch neeeds a positive Integer') unless $self->{orders_to_fetch} > 0; + + # not yet implemented checks + push @errors, $::locale->text('Transaction Description is not yet implemented') if $self->{transaction_description}; + if ($self->{connector} eq 'shopware6') { + push @errors, $::locale->text('Shipping cost article not implemented') if $self->{shipping_costs_parts_id}; + push @errors, $::locale->text('Fetch from last order number not implemented') if $self->{last_order_number}; + } return @errors; }