Show partial deliveries in shopping cart and collective delivery

188 downloads
Rule-based splitting of orders into partial deliveries with individual shipping costs, delivery times and flexible control in the shopping basket and at checkout.
Monthly
€69.90* / month
Cancelable monthly
Annual
16.67% discount
€58.25 / month
€838.80* €699.00* / year
after first year €838.80* / year

Technical Information

Category Checkout / Cart process
Created At October 11, 2020
Last Updated June 13, 2026
Languages de_DE, en_GB
Keywords partial deliveries, collective delivery, split delivery, deliver in parts
Technical name AcrisPartialDelivery

Highlights

  • Rule-based splitting of orders into partial deliveries
  • Different shipping costs and delivery times for each partial delivery
  • Separate delivery possible for each order item
  • Individual cancellation configuration for each partial delivery

Features

  • Rule-based creation and display of partial deliveries
  • Display of partial deliveries in the shopping basket, checkout and customer account
  • Support for different shipping costs per delivery
  • Individual delivery times configurable per partial delivery
  • Extended delivery statuses for better process control
  • Option for consolidated delivery or splitting into multiple deliveries
  • Automatic splitting of items when stock is limited
  • Definition of partial delivery rules via the Rule Builder
  • Control of cancellation eligibility per delivery status
  • Email template for displaying partial deliveries

Purpose of the plugin

This plugin is designed to manage and monitor split deliveries within the Shopware shopping basket. It enables a transparent and rule-based splitting of orders across multiple deliveries, optimises communication with the customer regarding order status, and allows for granular control over shipping options and costs.

Rule-based splitting of orders into partial deliveries
Orders can be automatically split across multiple deliveries based on individually definable rules such as stock levels, product properties or shipping requirements. The split is clearly displayed in the shopping basket and at checkout, ensuring transparent communication with the customer.

Different shipping costs and delivery times per partial delivery
Separate shipping costs and delivery times can be defined for each partial delivery. This allows different shipping methods or service providers to be flexibly combined and individual requirements to be accommodated within the shipping process.

Seperate delivery per order item possible
With the ‘Separate delivery per order item’ option, each item in the shopping basket is automatically processed as a separate delivery. This enables particularly granular control of shipping, costs and delivery times at item level.

Individual cancellation configuration per partial delivery
For each partial delivery, you can specify individually whether cancellation is permitted and under what conditions. This allows you to manage the entire ordering and dispatch process in a targeted manner and adapt it to your specific business requirements.

Possible Use Cases / Scenarios

• Splitting immediately available and backordered products in the cart
• Shipping via different carriers, e.g., parcel service and freight forwarding
• Mapping custom business rules for deliverability and shipping options
• Allowing customers to choose between combined or partial deliveries during checkout

Installation

  • Open the Plugin Manager via Settings > System > Plugins
  • Upload, install and activate the plugin

Create rules for partial delivery

Settings > Extensions > Partial Delivery > Rules for partial delivery > Add partial delivery rule

  1. Internal Name
    Used to uniquely identify the rule
  2. Active
    Enables or disables the respective partial delivery rule
  3. Rule
    Select an existing rule from the Rule Builder to control the application
  4. Priority
    Determines the order in which multiple rules are applied
  5. Split items into two deliveries if the added quantity exceeds the available stock
    Specifies how items are split if the ordered quantity exceeds stock
  6. Create multiple deliveries
    Do not split delivery  or create a separate delivery per order line (allows a separate delivery for each item in the basket)
  7. Free delivery if one of the following rules applies
    Defines conditions under which delivery is free of charge
  8. Information text for shop customers
    Optional: Custom text or dynamic content (e.g. delivery times via TWIG)
  9. Permitted shipping methods (optional)
    Restriction of available shipping methods for this partial delivery

Rule Builder

Settings > Automation > Rule Builder

  1. Pre-configured rules are included and can be customised or added to.

Email Template

Settings > Content > Email Templates > ACRIS Partial Delivery

  1. The email template provided can be customised as required here

Plugin configuration

Extensions > My Extensions > Partial Delivery > Configure

  1. Show heading on delivery
    Displays “Delivery 1 of 1”, even if there is only one delivery
  2. Position of the heading in the ordering process
    Control the display in the checkout under “Additional items”
  3. Enable consolidated delivery
    Customers can choose whether the order is delivered as a combined or partial delivery
  4. Default setting for combined delivery
    Determines which option is selected by default in the shopping basket
  5. Shipping cost calculation
    Calculate per delivery or apply highest shipping costs
  6. Enforce uniform shipping method
    All deliveries must use the same shipping method
  7. Calculation based on basket value
    Specifies that shipping costs for all partial deliveries are calculated based on the total basket value as soon as at least one defined rule applies.
  8. Information message for shipping changes
    Specifies whether and how customers are informed if the shipping method for a partial delivery changes.
  9. Validate the shipping price rule based on
    Shopping basket or delivery
  10. Length of the description text for the unselected shipping method at checkout
    Control of text length at checkout
  11. Restrict order cancellation
    Prevents cancellations for certain order statuses (e.g. in progress, completed)
  12. Prohibit delivery cancellations only for delivery statuses
    Control cancellation eligibility by delivery status
  13. Prohibit delivery cancellations only for order statuses
    Control cancellation eligibility by order status
  14. Use ‘Cancellation requested’ status
    Can be used for orders and deliveries
  15. Restrict changes to payment method
    Payment methods can be blocked for specific order statuses
  16. Display customer information text
    Optional information text for customers 

Restrictions / Notes

  1. To ensure partial deliveries are displayed correctly in email notifications, the supplied template must be activated
  2. Rules for partial deliveries must be defined appropriately in the Rule Builder
  3. If multiple delivery methods are used, the customer must make the selection in the frontend
  4. The blacklist for non-cancellable statuses must be maintained manually
  5. The display of partial deliveries depends on the selected rules and stock levels





Videos

Frequently Asked Questions

The partial deliveries will be displayed in all checkout steps and in the account at the specific order. The partial deliveries will not be displayed on the orderr confirmation and in the Showpare admin panel.

Yes, this functionality was added in the plugin version 10.3.0 and now it is possible to use TWIG variables inside the partial delivery info text. Here is an example to view the longest delivery time of all products inside the partial delivery:

{% set minDeliveryDays = 0 %}
{% set maxDeliveryDays = 0 %}
{% if delivery.positions is defined and delivery.positions.elements|length > 0 %}
    {% for deliveryPosition in delivery.positions %}
        {% set calculatedDeliveryTime = null %}
        {% if deliveryPosition.lineItem is defined and deliveryPosition.lineItem.payload and deliveryPosition.lineItem.payload.acrisDeliveryTimeConfiguration and deliveryPosition.lineItem.payload.acrisDeliveryTimeConfiguration.calculatedDeliveryTime is defined and deliveryPosition.lineItem.payload.acrisDeliveryTimeConfiguration.calculatedDeliveryTime|length > 0 %}
            {% set calculatedDeliveryTime = deliveryPosition.lineItem.payload.acrisDeliveryTimeConfiguration.calculatedDeliveryTime %}
        {% elseif deliveryPosition.orderLineItem is defined and deliveryPosition.orderLineItem.payload and deliveryPosition.orderLineItem.payload.acrisDeliveryTimeConfiguration and deliveryPosition.orderLineItem.payload.acrisDeliveryTimeConfiguration.calculatedDeliveryTime is defined and deliveryPosition.orderLineItem.payload.acrisDeliveryTimeConfiguration.calculatedDeliveryTime|length > 0 %}
            {% set calculatedDeliveryTime = deliveryPosition.orderLineItem.payload.acrisDeliveryTimeConfiguration.calculatedDeliveryTime %}
        {% endif %}
        {% if calculatedDeliveryTime is not empty %}
            {% for deliveryTimeConfig in calculatedDeliveryTime %}
                {% if deliveryTimeConfig.minDeliveryDays is defined and deliveryTimeConfig.maxDeliveryDays is defined and deliveryTimeConfig.maxDeliveryDays > maxDeliveryDays %}
                    {% set minDeliveryDays = deliveryTimeConfig.minDeliveryDays %}
                    {% set maxDeliveryDays = deliveryTimeConfig.maxDeliveryDays %}
                {% endif %}
            {% endfor %}
        {% endif %}
    {% endfor %}
{% endif %}
Delivery time {{ minDeliveryDays }}-{{ maxDeliveryDays }} days.

Version Date Compatibility Changelog
13.4.0 15 May 2026 >=6.7.0.0 <6.8.0.0
  • - Adds new option "Create a separate delivery for each order line and quantity" to the multiple deliveries field in the partial delivery rule.
13.3.1 6 May 2026 >=6.7.0.0 <6.8.0.0
  • - Simplifies help text and clarifies option labels for the split item and multiple deliveries fields in the partial delivery rule.
13.3.0 4 May 2026 >=6.7.0.0 <6.8.0.0
  • - Adds "Active" boolean configuration option to enable or disable all plugin functionality per sales channel.
13.2.1 29 April 2026 >=6.7.0.0 <6.8.0.0
  • - Fixes a bug that caused an error for certain products when adding them to the cart.
13.2.0 17 April 2026 >=6.7.0.0 <6.8.0.0
  • - Adds new configuration option for the partial delivery to make multiple deliveries possible.
13.1.10 14 April 2026 >=6.7.0.0 <6.8.0.0
  • - Adds two new plugin configuration fields for controlling the display of the "Info text for shop customer" when the customer selects "Send all products in one delivery" (single delivery mode). Previously, when single delivery was selected, no info text was shown under the delivery heading in the storefront, because the delivery is built by Shopware's default mechanism and does not carry any info text from the partial delivery rules. The first new field is a select field ("Single delivery: Info text for shop customer — display mode") that lets the shop administrator choose between keeping the default behaviour (no info text shown for single delivery) or enabling a custom info text for this case. The second new field is an HTML text field ("Single delivery: Info text for shop customer") — identical in style to the info text field in the partial delivery rule — where the custom info text can be entered. When the custom option is selected and the text field is filled in, the entered text is displayed in the storefront under the delivery heading on both the cart and checkout confirm pages whenever the customer has chosen to send all products in one delivery.
13.1.9 9 April 2026 >=6.7.0.0 <6.8.0.0
  • - Fixes a compatibility issue causing a PHP crash (SIGSEGV / memory exhaustion) when the AcrisPartialDeliveryCS plugin is used together with third-party payment plugins such as PayonePayment. The root cause was a circular service dependency in the Symfony DI container: the decorated `CartService` injected `PaymentProcessor` directly, which in turn resolved `PaymentHandlerRegistry`, which instantiated the Payone payment handler, which again required the decorated `CartService` — resulting in an infinite loop at container compilation time. The fix extracts the pre-payment validation call (`PaymentProcessor::validate()`) into a dedicated helper service `PartialDeliveryPaymentService`, registered with `lazy="true"` in the service container. This ensures that `PaymentProcessor` and its dependency chain are only resolved at runtime when an order is actually placed, not during container compilation, which breaks the circular dependency entirely. Pre-payment validation continues to run on every order placement on all customer systems, regardless of which payment plugins are active.
13.1.8 31 March 2026 >=6.7.0.0 <6.8.0.0
  • - Fixes an issue where split order line items were not correctly displayed in the administration order detail view for Shopware 6.7. In some cases, delivery positions were not loaded for all deliveries, causing split positions to show only one delivery entry instead of multiple. The fix adds a fallback mechanism that fetches missing delivery positions directly from the API when a delivery has no positions loaded, ensuring that split items correctly display the quantity per delivery (e.g. `6x 1 of 2` / `4x 2 of 2`).
13.1.7 24 March 2026 >=6.7.0.0 <6.8.0.0
  • - Fixes an issue where order information (delivery address, statuses) was missing in the administration because data was not correctly saved during order placement.
13.1.6 23 March 2026 >=6.7.0.0 <6.8.0.0
  • - Fixes an issue where the delivery period was incorrectly displayed for split deliveries containing partial stock.
13.1.5 9 March 2026 >=6.7.0.0 <6.8.0.0
  • - Fixes the issue on the shipping costs calculation for the partial deliveries shipping methods.
13.1.4 18 February 2026 >=6.7.0.0 <6.8.0.0
  • - Optimizes loading of shipping methods for partial deliveries.
13.1.3 10 February 2026 >=6.7.0.0 <6.8.0.0
  • - Fixed an issue that the shipping switches continuously and runs into a memory limit.
13.1.2 16 January 2026 >=6.7.0.0 <6.8.0.0
  • - Optimizes shipping costs calculation for partial deliveries.
13.1.1 29 December 2025 >=6.7.0.0 <6.8.0.0
  • - Fixed a php error caused by null delivery time in the custom DeliveryBuilder.
13.1.0 11 December 2025 >=6.7.0.0 <6.8.0.0
  • - Adds new configuration option for default collective delivery setting in shopping cart.
13.0.10 20 November 2025 >=6.7.0.0 <6.8.0.0
  • - Fixes shipping address display in admin for partial deliveries and Click & Collect in order detail.
13.0.9 2 October 2025 >=6.7.0.0 <6.8.0.0
  • - Optimizes shipping method preselection for multiple deliveries.
13.0.8 24 September 2025 >=6.7.0.0 <6.8.0.0
  • - Fixes the issue on assigning single delivery flag to the order.
13.0.7 11 August 2025 >=6.7.0.0 <6.8.0.0
  • - Improves plugin compatibility.
13.0.6 30 July 2025 >=6.7.0.0 <6.8.0.0
  • - Fixed icon compatibility with other plugins.
13.0.5 11 July 2025 >=6.7.0.0 <6.8.0.0
  • - Improved plugin compatibility with Shopware 6.7.
13.0.4 8 July 2025 >=6.7.0.0 <6.8.0.0
  • - Optimizes assigning of the single delivery in the cart.
13.0.3 3 July 2025 >=6.7.0.0 <6.8.0.0
  • - Improved plugin compatibility with Shopware 6.7.
13.0.2 1 July 2025 >=6.7.0.0 <6.8.0.0
  • - Fixes an issue with the shipping costs calculation for partial deliveries regarding the selected shipping methods.
  • - Deprecated methods have been removed to ensure compatibility with Shopware 6.7.
13.0.1 26 June 2025 >=6.7.0.0 < 6.8.0.0
  • - Optimization of the provided email template when a single item is split in a partial delivery and an additional order line is present.
13.0.0 7 May 2025 >=6.7.0.0 < 6.8.0.0
  • - Compatibility with Shopware 6.7.
  • - Support for the following languages: de-DE, en-GB, nl-NL, fr-FR, es-ES, fi-FI, nn-NO, sv-SE, cs-CZ, pt-PT, tr-TR, da-DK, it-IT, pl-PL, bs-BA
12.5.0 15 May 2026 >=6.6.3.0 <6.7.0.0
  • - Adds the "Multiple deliveries" option to partial delivery rules, allowing separate deliveries per order line or per order line and quantity.
12.4.0 4 May 2026 >=6.6.3.0 <6.7.0.0
  • - Adds "Active" boolean configuration option to enable or disable all plugin functionality per sales channel.
12.3.2 16 March 2026 >=6.6.3.0 <6.7.0.0
  • - Improves plugin compatibility.
12.3.1 9 March 2026 >=6.6.3.0 <6.7.0.0
  • - Fixes the issue on the shipping costs calculation for the partial deliveries shipping methods.
12.3.0 18 February 2026 >=6.6.3.0 <6.7.0.0
  • - Optimizes loading of shipping methods for partial deliveries.
12.2.0 11 December 2025 >=6.6.0.0 <6.7.0.0
  • - Adds new configuration option for default collective delivery setting in shopping cart.
12.1.56 20 November 2025 >=6.6.0.0 <6.7.0.0
  • - Fixes shipping address display in admin for partial deliveries and Click & Collect in order detail.
12.1.55 2 October 2025 >=6.6.0.0 <6.7.0.0
  • - Optimizes shipping method preselection for multiple deliveries.
12.1.54 24 September 2025 >=6.6.0.0 <6.7.0.0
  • - Fixes the issue on assigning single delivery flag to the order.
12.1.53 8 July 2025 >=6.6.0.0 <6.7.0.0
  • - Optimizes assigning of the single delivery in the cart.
12.1.52 1 July 2025 >=6.6.0.0 <6.7.0.0
  • - Fixes an issue with the shipping costs calculation for partial deliveries regarding the selected shipping methods.
12.1.51 26 June 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimization of the provided email template when a single item is split in a partial delivery and an additional order line is present.
12.1.50 17 April 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes delivery shipping calculation in the admin.
12.1.49 31 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin compatibility.
12.1.48 26 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes shipping costs calculation of partial deliveries with one uniform shipping method.
12.1.47 25 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Improved admin compatibility with Shopware 6.6.10.*
12.1.46 14 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of the partial delivery data.
12.1.45 13 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin compatibility with Shopware 6.6.10.* versions.
12.1.44 11 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes the calculating of the highest shipping costs.
12.1.43 4 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of partial deliveries.
12.1.42 3 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin performance.
12.1.41 3 March 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimization of the delivery cost price display.
12.1.40 26 February 2025 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin compatibility.
12.1.39 24 February 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of partial deliveries.
12.1.38 19 February 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes shipping costs calculating of partial deliveries.
12.1.37 6 February 2025 >=6.6.0.0 < 6.7.0.0
  • - Fixes with the sorting of deliveries on sending email.
12.1.36 22 January 2025 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin compatibility.
12.1.35 15 January 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes displaying tracking codes for partial deliveries.
12.1.34 15 January 2025 >=6.6.0.0 < 6.7.0.0
  • - Fixes the issue on displaying tracking codes for partial deliveries.
12.1.33 8 January 2025 >=6.6.0.0 < 6.7.0.0
  • - Optimizes partial deliveries count rule.
12.1.32 27 December 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes default partial deliveries e-mail template.
12.1.31 19 December 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes assigning the single delivery flag to the order.
12.1.30 19 December 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes displaying of the tracking numbers in the Storefront.
12.1.29 19 December 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixes the issue with assigning of the tracking numbers to the delivery at the order detail page in the admin.
12.1.28 6 December 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixed shipping method rule.
12.1.27 6 December 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixed shipping method rule.
12.1.26 20 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of the product data in the cart.
12.1.25 14 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixes the issue with loading of the orders at the account page in the Storefront.
12.1.24 13 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes validating of shipping methods in the cart.
12.1.23 13 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of the order data with partial deliveries.
12.1.22 12 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes shipping costs calculation.
12.1.21 6 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes displaying of the partial deliveries in the checkout process.
12.1.20 6 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes displaying of the partial deliveries in the order.
12.1.19 4 November 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves loading performance.
12.1.18 30 October 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixes the issue on loading delivery information at the order detail page in the admin.
12.1.17 28 October 2024 >=6.6.0.0 < 6.7.0.0
  • - Adds additional TWIG blocks for offcanvas, cart, confirm, finish, account order detail index pages to improve plugin compatibility.
12.1.16 24 October 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes highest shipping costs calculation.
12.1.15 10 October 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixes a problem in connection with other plugins where the shopping basket could not be completely emptied via a separate call.
12.1.14 8 October 2024 >=6.6.0.0 < 6.7.0.0
  • - Fixed email translation.
12.1.13 26 August 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin compatibility.
12.1.12 21 August 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves compatibility with the "Delivery Time" plugin.
12.1.11 25 July 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes checking the free shipping for partial deliveries.
12.1.10 15 July 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes shipping costs calculation in the cart.
12.1.9 9 July 2024 >=6.6.0.0 < 6.7.0.0
  • - Improved compatibility with Shopware >= 6.5.4.0 and various plugins.
12.1.8 18 June 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes persisting of the calculated cart.
12.1.7 6 June 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin compatibility.
12.1.6 24 May 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes available stock update after making an order to prevent duplicating of available stock update.
12.1.5 23 May 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves compatibility with the click and collect plugin.
12.1.4 22 April 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes splitting of items in the cart.
12.1.3 19 April 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves assigning of the partial delivery information in the Administration.
  • - Improves rendering of the partial delivery information, now is possible to include twig template inside of information.
12.1.2 17 April 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes plugin security.
12.1.1 17 April 2024 >=6.6.0.0 < 6.7.0.0
  • - Improves plugin security.
12.1.0 12 April 2024 >=6.6.0.0 < 6.7.0.0
  • - New plugin setting to control the display of headings in the order process below"More positions"
12.0.3 22 March 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimized compiled js files.
12.0.2 21 March 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of compiled files.
12.0.1 15 March 2024 >=6.6.0.0 < 6.7.0.0
  • - Optimizes loading of js files.
12.0.0 29 February 2024 >=6.6.0.0 < 6.7.0.0
  • - Compatibility with Shopware 6.6.
11.4.11 17 April 2025 >=6.5.8.0 < 6.6.0.0
  • - Optimizes delivery shipping calculation in the admin.
11.4.10 16 April 2025 >=6.5.8.0 < 6.6.0.0
  • - Correction of the rule conditions "Shipping method applies to one delivery" and "Shipping method applies to all deliveries" in admin.
11.4.9 4 March 2025 >=6.5.8.0 < 6.6.0.0
  • - Optimizes loading of partial deliveries.
11.4.8 3 March 2025 >=6.5.8.0 < 6.6.0.0
  • - Improves plugin performance.
11.4.7 28 February 2025 >=6.5.8.0 < 6.6.0.0
  • - Optimizes loading of partial deliveries.
11.4.6 26 February 2025 >=6.5.8.0 < 6.6.0.0
  • - Improves plugin compatibility.
11.4.5 22 January 2025 >=6.5.8.0 < 6.6.0.0
  • - Improves plugin compatibility.
11.4.4 28 October 2024 >=6.5.8.0 < 6.6.0.0
  • - Adds additional TWIG blocks for offcanvas, cart, confirm, finish, account order detail index pages to improve plugin compatibility.
11.4.3 24 October 2024 >=6.5.8.0 < 6.6.0.0
  • - Optimizes highest shipping costs calculation.
11.4.2 10 October 2024 >=6.5.8.0 < 6.6.0.0
  • - Fixes a problem in connection with other plugins where the shopping basket could not be completely emptied via a separate call.
11.4.1 8 October 2024 >=6.5.8.0 < 6.6.0.0
  • - Fixed email translation.
11.4.0 5 September 2024 >=6.5.8.0 < 6.6.0.0
  • - Improves plugin compatibility.
11.3.16 17 April 2025 >=6.5.0.0 < 6.6.0.0
  • - Optimizes delivery shipping calculation in the admin.
11.3.15 14 April 2025 >=6.5.0.0 < 6.6.0.0
  • - Correction of the rule conditions "Shipping method applies to one delivery" and "Shipping method applies to all deliveries" in admin.
11.3.14 22 January 2025 >=6.5.0.0 < 6.6.0.0
  • - Improves plugin compatibility.
11.3.13 5 September 2024 >=6.5.0.0 < 6.6.0.0
  • - Improves plugin compatibility.
11.3.12 21 August 2024 >=6.5.0.0 < 6.6.0.0
  • - Improves compatibility with the "Delivery Time" plugin.
11.3.11 25 July 2024 >=6.5.0.0 < 6.6.0.0
  • - Optimizes checking the free shipping for partial deliveries.
11.3.10 15 July 2024 >=6.5.0.0 < 6.6.0.0
  • - Optimizes shipping costs calculation in the cart.
11.3.9 9 July 2024 >=6.5.0.0 < 6.6.0.0
  • - Improved compatibility with Shopware >= 6.5.4.0 and various plugins.
11.3.8 18 June 2024 >=6.5.0.0 < 6.6.0.0
  • - Optimizes persisting of the calculated cart.
11.3.7 6 June 2024 >=6.5.0.0 < 6.6.0.0
  • - Improves plugin compatibility.
11.3.6 24 May 2024 >=6.5.0.0 < 6.6.0.0
  • - Optimizes available stock update after making an order to prevent duplicating of available stock update.
11.3.5 23 May 2024 >=6.5.0.0 < 6.6.0.0
  • - Improves compatibility with the click and collect plugin.
11.3.4 22 April 2024 >=6.5.0.0 < 6.6.0.0
  • - Optimizes splitting of items in the cart.
11.3.3 19 April 2024 >=6.5.0.0 < 6.6.0.0
  • - Improves assigning of the partial delivery information in the Administration.
  • - Improves rendering of the partial delivery information, now is possible to include twig template inside of information.
11.3.2 17 April 2024 >=6.5.0.0 < 6.6.0.0
  • - Optimizes plugin security.
11.3.1 16 April 2024 >=6.5.0.0 < 6.6.0.0
  • - Improves plugin security.
11.3.0 12 April 2024 >=6.5.0.0
  • - New plugin setting to control the display of headings in the order process below "More positions"
11.2.5 29 February 2024 >=6.5.0.0
  • - Improves calculating of shipping costs based on cart price for partial deliveries.
11.2.4 23 February 2024 >=6.5.0.0
  • - Optimizes calculating of shipping costs for partial deliveries.
11.2.3 21 February 2024 >=6.5.0.0
  • - Fixes the incorrect preselected shipping method when all products are sent in one delivery.
11.2.2 14 February 2024 >=6.5.0.0
  • - Improves plugin compatibility.
11.2.1 14 February 2024 >=6.5.0.0
  • - Optimizes loading of assigned shipping methods to deliveries in the cart.
11.2.0 28 December 2023 >=6.5.0.0
  • - Allows you to customise the length of the description text of the unselected shipping method in the checkout via a plugin configuration.
11.1.18 18 December 2023 >=6.5.0.0
  • - Fixes the issue on leaving the modal at the order detail page in the Administration.
11.1.17 21 November 2023 >=6.5.0.0
  • - Optimizes loading of the partial delivery shipping method prices in the cart.
11.1.16 9 November 2023 >=6.5.0.0
  • - Optimizes loading of the shipping methods.
11.1.15 8 November 2023 >=6.5.0.0
  • - Fixes the compatibility issue.
11.1.14 9 October 2023 >=6.5.0.0
  • - Improves plugin compatibility.
11.1.13 5 October 2023 >=6.5.0.0
  • - Fixes issue on loading of the partial delivery products in Administration.
11.1.12 4 October 2023 >=6.5.0.0
  • - Optimizes partial delivery email templates.
11.1.11 5 September 2023 >=6.5.0.0
  • - Optimizes loading of the deliveries in the flow event.
11.1.10 1 September 2023 >=6.5.0.0
  • - Improves plugin compatibility.
11.1.9 1 September 2023 >=6.5.0.0
  • - Optimizes displaying of the partial delivery shipping methods.
11.1.8 30 August 2023 >=6.5.0.0
  • - Optimizes displaying of the delivery time information in the partial deliveries.
11.1.7 28 August 2023 >=6.5.0.0
  • - Optimizes shipping costs calculation.
11.1.6 23 August 2023 >=6.5.0.0
  • - Fixes issue with the compatibility.
11.1.5 21 August 2023 >=6.5.0.0
  • - Improves plugin compatibility.
11.1.4 20 July 2023 >=6.5.0.0
  • - Optimizes loading of the shipping methods.
11.1.3 20 July 2023 >=6.5.0.0
  • - Improves plugin compatibility.
11.1.2 16 June 2023 >=6.5.0.0
  • - Improved storefront compatibility with other plugins.
11.1.1 12 June 2023 >=6.5.0.0
  • - Optimizes stock updater.
11.1.0 9 May 2023 >=6.5.0.0
  • - Removes deprecated feature.
  • - Improves plugin compatibility.
11.0.3 12 April 2023 >=6.5.0.0
  • - Improves plugin compatibility.
11.0.2 11 April 2023 >=6.5.0.0
  • - Fixes possible problems in connection with PayPal.
  • - Adaptation of the email templates.
11.0.1 11 April 2023 >=6.5.0.0
  • - Fixed wrong price rounding calculation inside storefront order history page.
11.0.0 3 April 2023 >=6.5.0.0
  • - Improves plugin compatibility with Shopware versions >= 6.5.0.0.
10.4.0 31 March 2026 >=6.4.14.0 < 6.5.0.0
  • - Fixes an issue where manually set shipping costs (e.g. CHF 0.00) in the Administration order creation could not be saved because the plugin recalculated and overrode the manually entered value.
10.3.20 23 May 2024 >=6.4.11.0 < 6.5.0.0
  • - Improves compatibility with the click and collect plugin.
10.3.19 19 April 2024 >=6.4.11.0 < 6.5.0.0
  • - Improves assigning of the partial delivery information in the Administration.
  • - Improves rendering of the partial delivery information, now is possible to include twig template inside of information.
10.3.18 17 April 2024 >=6.4.11.0 < 6.5.0.0
  • - Optimizes plugin security.
10.3.17 16 April 2024 >=6.4.11.0 < 6.5.0.0
  • - Improves plugin security.
10.3.16 29 February 2024 >=6.4.11.0 < 6.5.0.0
  • - Improves calculating of shipping costs based on cart price for partial deliveries.
10.3.15 23 February 2024 >=6.4.11.0 < 6.5.0.0
  • - Optimizes calculating of shipping costs for partial deliveries.
10.3.14 21 February 2024 >=6.4.11.0 < 6.5.0.0
  • - Fixes the incorrect preselected shipping method when all products are sent in one delivery.
10.3.13 14 February 2024 >=6.4.11.0 < 6.5.0.0
  • - Optimizes loading of assigned shipping methods to deliveries in the cart.
10.3.12 9 November 2023 >=6.4.11.0 < 6.5.0.0
  • - Optimizes loading of the shipping methods.
10.3.11 9 October 2023 >=6.4.11.0 < 6.5.0.0
  • - Improves plugin compatibility.
10.3.10 5 October 2023 >=6.4.11.0 < 6.5.0.0
  • - Fixes issue on loading of the partial delivery products in Administration.
10.3.9 4 October 2023 >=6.4.11.0 < 6.5.0.0
  • - Optimizes partial delivery email templates.
10.3.8 23 August 2023 >=6.4.11.0 < 6.5.0.0
  • - Fixes issue with the compatibility.
10.3.7 21 August 2023 >=6.4.11.0 < 6.5.0.0
  • - Improves plugin compatibility.
10.3.6 20 June 2023 >=6.4.11.0
  • - Optimizes loading of the items for the partial deliveries at the order detail page in the Administration.
10.3.5 11 April 2023 >=6.4.11.0
  • - Fixes possible problems in connection with PayPal.
  • - Adaptation of the email templates.
10.3.4 11 April 2023 >=6.4.11.0
  • - Fixed wrong price rounding calculation inside storefront order history page.
10.3.3 4 April 2023 >=6.4.11.0
  • - Optimizes partial delivery shipping method rules.
10.3.2 27 March 2023 >=6.4.11.0
  • - Optimizes rendering of the partial delivery templates.
10.3.1 24 March 2023 >=6.4.11.0
  • - Shows the partial delivery info text also when the setting 'show heading "Delivery 1 of 1" if there is only one delivery' is active.
10.3.0 22 March 2023 >=6.4.11.0
  • - Adds possibility to use TWIG variables inside the partial delivery info text.
10.2.6 24 February 2023 >=6.4.11.0
  • - Optimizes loading of the state history entries.
10.2.5 22 February 2023 >=6.4.11.0
  • - Optimizes sending all products in one delivery.
10.2.4 21 February 2023 >=6.4.11.0
  • - Optimizes assigning of the shipping methods to deliveries.
  • - Optimizes sorting of the shipping methods.
10.2.3 21 February 2023 >=6.4.11.0
  • - Improves plugin compatibility.
10.2.2 21 February 2023 >=6.4.11.0
  • - Optimizes shipping methods in the cart for one delivery.
10.2.1 10 February 2023 >=6.4.11.0
  • - Change of the plugin name and the manufacturer links.
10.2.0 6 February 2023 >=6.4.11.0
  • - Optimizes changing of the blocked shipping method for the partial deliveries.
  • - Improves plugin compatibility with the "ACRIS Shipping and payment method availability" plugin.
10.1.0 2 February 2023 >=6.4.11.0
  • - Adds an option in the partial delivery configuration to split the item into two deliveries if the added quantity in the cart is higher than the item available stock.
10.0.1 1 February 2023 >=6.4.11.0
  • - Optimizes shipping method price calculation based on the delivery.
10.0.0 31 January 2023 >=6.4.11.0
  • - Optimizes building of the partial deliveries.
  • - Optimizes loading of the partial delivery rules.
  • - Improves delivery validation.
  • - Improves delivery shipping calculation.
  • - Improves plugin performance.
9.5.0 23 January 2023 >=6.4.11.0
  • - Adds an option in the partial delivery configuration to split the item into two deliveries if the added quantity in the cart is higher than the item available stock.
9.4.2 15 December 2022 >=6.4.11.0
  • - Improves plugin compatibility.
9.4.1 13 December 2022 >=6.4.11.0
  • - Optimizes partial delivery shipping method rule conditions.
9.4.0 26 November 2022 >=6.4.11.0
  • - Adds rules for the partial deliveries, if any of the assigned rules applies then the delivery will be free.
  • - Adds new "Shipping costs of all deliveries" rule condition.
9.3.11 26 November 2022 >=6.4.11.0
  • - Fixes a problem on loading of the shipping methods for partial deliveries.
  • - Fixes a problem on loading of rule price for partial deliveries.
9.3.10 26 November 2022 >=6.4.11.0
  • - Fixes a problem with the rules inserted by the plugin when the stock level is 0.
9.3.9 26 November 2022 >=6.4.11.0
  • - Fixes error on checkout finish page.
9.3.8 26 November 2022 >=6.4.11.0
  • - Improves plugin compatibility.
9.3.7 26 November 2022 >=6.4.11.0
  • - Optimizes inserting of the default rules by the plugin.
9.3.6 26 November 2022 >=6.4.11.0
  • - Correction of the rules inserted by the plugin in the standard.
9.3.5 26 November 2022 >=6.4.11.0
  • - Optimisation of plug-in compatibility with Pickware.
9.3.4 26 November 2022 >=6.4.11.0
  • - Optimizes criteria on creating an order.
  • - Adds "CheckoutOrderPlacedCriteriaEvent" event for criteria on creating an order.
9.3.3 26 November 2022 >=6.4.11.0
  • - Improves plugin compatibility with "ZEO BV Visible discounts" plugin.
9.3.2 26 November 2022 >=6.4.11.0
  • - Improves plugin compatibility with "Prems One Page Checkout" plugin.
9.3.1 26 November 2022 >=6.4.11.0
  • - Optimizes loading of the lineItem children at the order detail list page in the Storefront.
9.3.0 26 November 2022 >=6.4.11.0
  • - Adds plugin configuration for calculating the highest shipping costs based on assigned rules.
  • - Optimizes shipping costs calculation.
9.2.12 26 November 2022 >=6.4.11.0
  • - Optimizes calculating the shipping costs for deliveries with allowed shipping methods.
9.2.11 26 November 2022 >=6.4.11.0
  • - Optimizes calculating only the highest shipping cost.
9.2.10 26 November 2022 >=6.4.11.0
  • - Optimizes assigning of the allowed shipping methods for the partial deliveries.
9.2.9 26 November 2022 >=6.4.11.0
  • - Optimizes validating of the shipping methods for deliveries.
9.2.8 26 November 2022 >=6.4.11.0
  • - Optimizes displaying of the shipping costs in offcanvas.
  • - Optimizes loading of the shipping methods for partial deliveries.
  • - Optimizes calculating of the partial delivery shipping costs.
  • - Optimizes updating of the stocks and sales for products in partial delivery.
9.2.7 26 November 2022 >=6.4.11.0
  • - Optimizes displaying of the order shipping costs.
9.2.6 26 November 2022 >=6.4.11.0
  • - Optimizes delivery shipping costs calculation on calculating only the highest ones.
9.2.5 26 November 2022 >=6.4.11.0
  • - Optimizes delivery shipping costs calculation.
9.2.4 26 November 2022 >=6.4.11.0
  • - Optimizes shipping costs calculating for the partial deliveries.
9.2.3 26 November 2022 >=6.4.11.0
  • - Optimizes changing of the blocked shipping methods for the partial delivery.
  • - Adds plugin configuration for displaying the info message on changing the blocked method for the partial delivery.
9.2.2 26 November 2022 >=6.4.11.0
  • - Optimizes loading of the shipping methods for deliveries.
  • - Adds validation for the blocked partial delivery shipping method.
9.2.1 26 November 2022 >=6.4.11.0
  • - Optimizes building of the partial deliveries.
9.2.0 26 November 2022 >=6.4.11.0
  • - Optimizes using one shipping method for all deliveries on the order edit page.
  • - Adds plugin configurations for using one shipping method for all deliveries and for calculating of the shipping costs based on whole cart price.
9.1.1 26 November 2022 >=6.4.11.0
  • - Adds blocks in templates for improving the plugin compatibility.
9.1.0 26 November 2022 >=6.4.11.0
  • - Adds two rule conditions for checking if the shipping method apply in deliveries.
9.0.3 26 November 2022 >=6.4.11.0
  • - Optimizes delivery validator.
9.0.2 26 November 2022 >=6.4.11.0
  • - Optimizes rules.
9.0.1 26 November 2022 >=6.4.11.0
  • - Optimizes loading of the delivery time for the partial deliveries.
9.0.0 26 November 2022 >=6.4.11.0
  • - Change of minimum shopware version to 6.4.11.0.
8.1.6 26 November 2022 >=6.4.5.0
  • - Optimizes displaying of the order shipping costs.
8.1.5 26 November 2022 >=6.4.5.0
  • - Adds blocks in templates for improving the plugin compatibility.
8.1.4 26 November 2022 >=6.4.5.0
  • - Improved compatibility with Shopware < 6.4.11.0.
8.1.3 26 November 2022 >=6.4.5.0
  • - Fixes problems when shipping methods are not available for partial deliveries.
8.1.2 26 November 2022 >=6.4.5.0
  • - Improves plugin compatibility with Shopware version >= 6.4.11.0.
8.1.1 26 November 2022 >=6.4.5.0
  • - Improves plugin compatibility on stock updater decoration.
8.1.0 26 November 2022 >=6.4.5.0
  • - Adds a new rule condition to check for the product delivery times on checkout.
8.0.3 26 November 2022 >=6.4.9.0
  • - Optimizes loading of the shipping methods in Storefront and in Administration.
  • - Improves plugin compatibility.
8.0.2 26 November 2022 >=6.4.9.0
  • - Optimizes plugin image.
  • - Improves compatibility with Shopware >= 6.4.10.0.
  • - Optimizes plugin color in administration.
8.0.1 26 November 2022 >=6.4.9.0
  • - Fixes a problem where cancellations of orders and individual deliveries were no longer possible.
  • - Fixes a problem with the installation of the plugin.
8.0.0 26 November 2022 >=6.4.9.0
  • - Improved compatibility with Shopware >= 6.4.9.0.
7.3.3 26 November 2022 >=6.4.5.0
  • - Optimizes loading the partial delivery shipping method.
7.3.2 26 November 2022 >=6.4.5.0
  • - Adds blocks in templates for improving the plugin compatibility.
7.3.1 26 November 2022 >=6.4.5.0
  • - Optimizes using one shipping method for all deliveries on the order edit page.
7.3.0 26 November 2022 >=6.4.5.0
  • - Adds plugin configurations for using one shipping method for all deliveries and for calculating of the shipping costs based on whole cart price.
7.2.6 26 November 2022 >=6.4.5.0
  • - Optimizes rules.
7.2.5 26 November 2022 >=6.4.5.0
  • - Fixes a problem where cancellations of orders and individual deliveries were no longer possible.
  • - Fixes a problem with the installation of the plugin.
7.2.4 26 November 2022 >=6.4.5.0
  • - Adds validation on inserting of default data.
7.2.3 26 November 2022 >=6.4.5.0
  • - Displays delivery column first in items grid at the order detail page in Administration.
7.2.2 26 November 2022 >=6.4.5.0
  • - Fixes problem with order rule ids on converting cart to the order.
7.2.1 26 November 2022 >=6.4.5.0
  • - Optimizes loading of the partial delivery shipping method with fixed tax.
7.2.0 26 November 2022 >=6.4.5.0
  • - Adds internal id for partial delivery in Administration.
  • - On order confirmation the internal id is assigned to the order delivery for the API.
  • - Optimizes displaying of the tracking numbers for partial deliveries at Storefront.
7.1.2 26 November 2022 >=6.4.5.0
  • - Optimizes calculating costs for shipping methods in cart.
7.1.1 26 November 2022 >=6.4.5.0
  • - Optimisation of free shipping snippet
7.1.0 26 November 2022 >=6.4.5.0
  • - Optimizes displaying of the partial deliveries in account edit order page at Storefront.
  • - Displays free shipping message for shipping methods with cost 0.
7.0.1 26 November 2022 >=6.4.5.0
  • - Optimizes displaying of the shipping method tracking URL at Storefront.
7.0.0 26 November 2022 >=6.4.5.0
  • - Improved compatibility with Shopware >= 6.4.5.0.
6.1.1 26 November 2022 >=6.4.3.0
  • - Optimizes compatibility of the offcanvas template.
6.1.0 26 November 2022 >=6.4.3.0
  • - Optimizes building of the partial deliveries and partial delivery templates.
  • - Adds default mail template for the partial delivery.
6.0.0 26 November 2022 >=6.4.3.0
  • - Adds possibility to select shipping method for each partial delivery.
  • - Adds shipping method whitelist for each partial delivery.
5.1.0 26 November 2022 >=6.4.3.0
  • - Adds possibility to select shipping method for each partial delivery.
  • - Adds shipping method whitelist for each partial delivery.
5.0.0 26 November 2022 >=6.4.3.0
  • - Adds possibility for customer to send the order in single delivery.
  • - Adds plugin configuration for calculating one shipping cost of the multiple deliveries.
4.0.3 26 November 2022 >=6.4.3.0
  • - Optimize adding shipping cost promotions to the partial deliveries.
4.0.2 26 November 2022 >=6.4.3.0
  • - Displays delivery status of deliveries at order detail page in Administration.
4.0.1 26 November 2022 >=6.4.3.0
  • - Fixes problem on order converter.
4.0.0 26 November 2022 >=6.4.3.0
  • - Improved compatibility with Shopware 6.4.3*.
3.0.3 26 November 2022 >=6.4.0.0
  • - Added customer comment and tracking codes on order.
3.0.2 26 November 2022 >=6.4.0.0
  • - Fix a problem on loading addresses on checkout finish page.
3.0.1 26 November 2022 >=6.4.0.0
  • - Fix problem on loading order deliveries.
3.0.0 26 November 2022 >=6.4.0.0
  • - Improved compatibility with Shopware 6.4*.
2.5.1 26 November 2022 >=6.3.4.0
  • - Fix problem on loading order deliveries.
2.5.0 26 November 2022 >=6.3.4.0
  • - Display deliveries and tracking codes in administration.
Bewertungen

Average rating of 4.8 out of 5 stars

9 reviews

9
0
0
0
0

Super Support

Review with rating of 5 out of 5 stars

· 8 April 2026

Wir hatten im Plugin den Fehler, dass wir bei einer Bestellung die über den Admin gemacht wird, die Versandkosten nicht anpassen konnten. Wir haben dies dem Support gemeldet und innert weniger Tagen wurde das Plugin angepasst und uns zur Verfügung gestellt. Nun funktioniert alles perfekt.
Ich kann Acris und deren Support somit sehr empfehlen.

Super schneller support der auch meinen kleinen Bug behebte

Review with rating of 5 out of 5 stars

· 10 September 2024

New: Probably NR1 Support was Shopware Plugins angeht. Hatte ein Problem mit einem anderen Plugin und Acris geschrieben, sofort geantwortet und innerhalb 2 Tagen wurde das Problem behoben. Danke. LG
Old: Wahnsinn, ich hatte ein Problem mit dem Theme das ich nutze und nichtmal innerhalb eines Tages kam ein Update. Ich brauchte das Plugin dringendst, da wir tagtäglich mehrere Versandwarenkörbe/Mischwarenkörbe verkaufen.
Super vielen Dank!
Update: Julian war asap parat und hat mein Problem super schnell gelöst.

alles was das herz begehrt

Review with rating of 5 out of 5 stars

· 25 August 2024

alles was das herz begehrt

Schneller und unkomplizierter Support

Review with rating of 4.5 out of 5 stars

· 6 February 2024

-

One of the most unique extensions in the store

Review with rating of 4.5 out of 5 stars

· 9 November 2023

This extension makes it possible to offer multiple deliveries, all with their own delivery methods and shipping costs, based on rules. This was exactly what we needed and something Shopware does not offer out of the box.

We had an issue with a certain rule with the shipping price matrix, which Acris released a fix for within hours. Support is great aswell.