Settings and activity
118 results found
-
19 votes
Benjamin Hummel supported this idea ·
-
1 vote
Benjamin Hummel shared this idea ·
-
3 votes
Benjamin Hummel supported this idea ·
-
33 votes
Benjamin Hummel supported this idea ·
-
1 vote
Benjamin Hummel shared this idea ·
-
4 votes
An error occurred while saving the comment Benjamin Hummel supported this idea ·
-
13 votes
Benjamin Hummel shared this idea ·
-
7 votes
An error occurred while saving the comment Benjamin Hummel commented
See screenshot.
Benjamin Hummel shared this idea ·
-
6 votes
Benjamin Hummel supported this idea ·
-
27 votes
Benjamin Hummel supported this idea ·
-
1 vote
Benjamin Hummel shared this idea ·
-
3 votes
An error occurred while saving the comment Benjamin Hummel commented
The problem is that the discount is listed as an individual item and is therefore not included in the customs documents. As a result, the customs costs are calculated on the basis of the original price (without the discount) and customers are therefore charged too much in customs costs.
If the discount were calculated directly by Shopware on an item-related basis (and not listed as an individual item), the items would be included directly in the customs invoice at the reduced price and the customs costs would be calculated correctly accordingly.
Benjamin Hummel supported this idea ·
-
5 votes
Benjamin Hummel supported this idea ·
-
46 votes
We are currently developing a solution to create e-invoices with Shopware 6.
Benjamin Hummel supported this idea ·
-
10 votes
Benjamin Hummel supported this idea ·
-
3 votes
Benjamin Hummel supported this idea ·
-
67 votesIN RESEARCH · 14 comments · Shopware 6 - Product Feedback & Ideas » Products, Prices & Properties · Admin →
Benjamin Hummel supported this idea ·
-
6 votes
Benjamin Hummel supported this idea ·
-
8 votes
An error occurred while saving the comment Benjamin Hummel commented
A basic function that must be available. Optionally, with the display of the message "x € left until minimum order value". This function is missing and is common practice in most stores around the world.
The configuration via the Rule Builder (payment method/shipping method) is "currently" neither intuitive nor up to the end with this request
In the context of internationalization, the minimum order value should also be configurable differently based on delivery countries and would certainly be used directly in most stores.
Benjamin Hummel supported this idea ·
-
41 votes
Benjamin Hummel supported this idea ·
Possible fix from customer:
The change we did in shopware terms is to first decorate the Shopware\Commercial\B2B\QuoteManagement\Domain\CartToQuote\QuoteRequestRoute class in the plugin and changed the request function
Added code for removing the discount items from the cart before the validate function is called. So that there will be no validation error when creating a Quote which has discount items in the cart.
$cart = $this->cartService->getCart($context->getToken(), $context); if ($cart->getLineItems()->filterType(LineItem::PROMOTION_LINE_ITEM_TYPE)->count() > 0) { $discountItems = $cart->getLineItems()->filterType(LineItem::PROMOTION_LINE_ITEM_TYPE)->getElements(); $discountItemIds = array_map(function (LineItem $item) { return $item->getId(); }, $discountItems); $this->cartService->removeItems($cart, $discountItemIds, $context); } $this->validateCart($cart, $context->getContext());