Revision cfb02930
Von Jan Büren vor mehr als 2 Jahren hinzugefügt
SL/ShopConnector/Shopware6.pm | ||
---|---|---|
701 | 701 |
sub set_orderstatus { |
702 | 702 |
my ($self, $order_id, $transition) = @_; |
703 | 703 |
|
704 |
# one state differs |
|
705 |
$transition = 'complete' if $transition eq 'completed'; |
|
706 |
|
|
704 | 707 |
croak "No shop order ID, should be in format [0-9a-f]{32}" unless $order_id =~ m/^[0-9a-f]{32}$/; |
705 | 708 |
croak "NO valid transition value" unless $transition =~ m/(open|process|cancel|complete)/; |
706 | 709 |
my $ret; |
Auch abrufbar als: Unified diff
Shopware6: Status completed innerhalb des Konnektors mappen
Zufälligerweise heißen die alle fast schon so wie vordefiniert,
aber leider nicht ganz genauso ...