From 48b04341b15c68a697bd2d0c3e6ffa8e5594dda3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Wed, 17 Nov 2021 13:28:31 +0100 Subject: [PATCH] Shop:update_part um POD und Beispiel Code erweitert --- SL/ShopConnector/Base.pm | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/SL/ShopConnector/Base.pm b/SL/ShopConnector/Base.pm index cf2f9f636..fd19e218e 100644 --- a/SL/ShopConnector/Base.pm +++ b/SL/ShopConnector/Base.pm @@ -34,7 +34,21 @@ sub get_one_order { sub get_new_orders { die 'get_order needs to be implemented' } -sub update_part { die 'update_part needs to be implemented' } +sub update_part { + die 'update_part needs to be implemented'; + + my ($self, $shop_part, $todo) = @_; + #shop_part is passed as a param + die "Need a valid Shop Part for updating Part" unless ref($shop_part) eq 'SL::DB::ShopPart'; + die "Invalid todo for updating Part" unless $todo =~ m/(price|stock|price_stock|active|all)/; + + my $part = SL::DB::Part->new(id => $shop_part->part_id)->load; + die "Shop Part but no kivi Part?" unless ref $part eq 'SL::DB::Part'; + + my $success; + + return $success ? 1 : 0; +} sub get_article { die 'get_article needs to be implemented' } @@ -85,7 +99,24 @@ imported order or within the same hash structure a error message. =item C -=item C +=item C + +Updates one Part including all metadata and Images in a Shop. +Needs a valid 'SL::DB::ShopPart' as first parameter and a requested action +as second parameter. Valid values for the second parameter are +"price, stock, price_stock, active, all". +The method updates either all metadata or a subset. +Name and action for the subsets: + + price => updates only the price + stock => updates only the available stock (qty) + price_stock => combines both predecessors + active => updates only the state of the shop part + +Images should always be updated, regardless of the requested action. +Returns 1 if all updates were executed successful. + + =item C -- 2.20.1