Skip to main content

Changelog

2.0.13 (2026-09-09)

Improvements

  • ⚠️ The unused Mirasvit\OrderGrid\Ui\Order\Listing\Action\MassDelete class has been removed. It was not wired to anything — the Delete mass action in the Orders grid never used it, and the permission that guards deleting orders (Order Grid → Delete Order) is enforced exactly as before. Only relevant if your own code or a third-party extension referenced that class by name.

Fixed

  • Fixed automatic Order Tag rules that match on a Shipping Table shipping method silently stopping to work after Shipping Table 0.2.1, which renamed its method codes (mstrate_5 became mstrate5). Rules saved before that upgrade kept the old code, so they no longer matched newly placed orders. The stored rules are now updated to the current method codes during setup:upgrade, and matching accepts both spellings, so one rule covers orders placed before and after the upgrade — the nightly tag rebuild no longer strips tags from older orders. The rule's shipping method also shows its proper name again in the condition list instead of a raw code, and removing and re-adding the condition by hand is no longer needed. If you upgrade Order Management before Shipping Table, matching still works and your rules are brought up to date the next time you save them.
  • Fixed automatic Order Tag rules using a negative condition — "is not", "does not contain", "is not one of" — skipping every order that has no value stored for the attribute being checked, even though such an order plainly satisfies the rule. This affected the Status, Discount Amount, Shipping Amount, Customer IP and Total Due attributes. Total Due was the worst case: Magento never fills that field in, so a negative rule on Total Due tagged no orders at all. Such orders are now matched and tagged as expected.
  • Fixed automatic Order Tag conditions that list values ("is one of", "is not one of", "contains", "does not contain") ignoring the value 0 — a real value in Magento for the NOT LOGGED IN customer group, the default store, and the first option of many attributes. A rule keyed on 0 produced no match and tagged nothing; it now works, while empty entries in the list are still skipped as before.
  • Fixed the order timeline and the Order Editor item-change log keeping their records after an order was deleted. Both tables grew with entries describing orders that no longer exist and that nothing could display. Deleting an order now removes its timeline and its item-change history as well. The record of items you removed from an order is untouched — it stays part of that order's history for as long as the order exists.

2.0.12 (2026-08-27)

Improvements

  • Automatic Order Tags are now checked against a single in-memory copy of the order instead of reloading the order from the database once for every tag rule. Orders with several automatic tags save quicker, the scheduled tag job runs far fewer queries, and the order you are saving is never touched by the rule checks — so tag rules can no longer disturb an order that is mid-save, for example causing a payment error during checkout.

Fixed

  • Fixed the automatic Order Tags rebuild running out of memory on large stores. The background process that reassigns automatic tags used to load every order over and over — once per order and again for each automatic tag rule — and never released that data as it went, so memory kept climbing with the number of orders in the store (on a store with 185,000 orders it could consume around 10 GB in a single run and fail). It now loads each order once and frees the loaded orders, addresses, payments and customer records after every batch, so the rebuild finishes reliably regardless of how many orders and automatic tags you have.
  • Fixed a second source of memory growth in the same rebuild on stores whose automatic tags use product-based rules. Checking those rules loaded every ordered product and kept it in memory for the whole run, so a store with a large catalogue could still exhaust memory even after the fix above. Products are now released after every batch as well.
  • Fixed the automatic Order Tags rebuild failing outright on Magento 2.3.7 — the assign-tags cron stopped with a fatal error because the housekeeping step it now performs after each batch is not available on that version. The rebuild works on every supported Magento version (2.3.7 and up) again.
  • Fixed the Order Tag reindex failing on PHP 8.5. The rebuild used a PHP feature that has been deprecated in 8.5, which on stores running in developer mode turned into an error and aborted the reindex (including when it was triggered through the API). The rebuild now works on PHP 7.4 through 8.5 in both developer and production mode.
  • Fixed the Order Editor refusing to open with "Cannot edit section. Quote for the order does not exist." on orders whose shopping cart had been cleaned up by Magento's sales_clean_quotes cron — which happens routinely to older and archived orders. Every section of the editor failed, so such orders could not be edited at all. The editor now rebuilds the missing cart from the order's own data (items, quantities, customer, addresses, payment method) and opens normally.

2.0.11 (2026-08-27)

Features

  • Product options are requested while you pick products in the Order Editor — in the Add Products dialog, ticking a product that cannot be ordered without options (configurable, bundle, grouped) now opens the options dialog straight away, the same way the New Order page does it. Add Selected Products no longer goes through while any such product is still unconfigured: the dialog stays open and lists the products that need options. Products whose options are all optional are not held back — they keep their configure link and can be added as they are.

Improvements

  • The configure link is now available on products you have just added but not yet saved, so you can correct the options you picked without removing the line and adding it back. Previously the link disappeared from a new line the moment its options were set and only came back after the section was saved.
  • Adding the same product to an order more than once now keeps each line's options separate — the second line is configured on its own instead of silently reusing what was chosen for the first.
  • Admin role permission names are now translatable and translated into all 15 shipped languages. In System → Permissions → User Roles → Role Resources, the module's entries (Order Editor, Delete Invoice, Delete Order, Mass Invoice, Mass Shipment, Mass Merge Orders, Mass Split Order, Order Grid, Order Number, Order Tag, Order Tag Group) stayed in English on non-English admin locales; they now follow the admin language.
  • The Billing Company, Billing VAT Number, Shipping Company, and Shipping VAT Number columns in the Orders grid now show translated labels instead of English ones on non-English admin locales.
  • Error and label prefixes across the module — the "Error:" prefix on delete-order and delete-invoice messages, the "Billing:" and "Shipping:" prefixes in the Order Tag condition attribute list, and the "Current:" entry in the merge and split address pickers — are now translated. Their wording is unchanged in English.

Fixed

  • Fixed Add Selected Products adding every product in the list when nothing was ticked — with an empty selection the dialog used to submit the whole product list into the order. It now tells you an item needs to be selected and adds nothing.
  • Fixed unticking a product in the Add Products dialog having no effect — a product you selected and then deselected was still added to the order.
  • Fixed products already on the order disappearing from the Add Products list, which made it impossible to add a second line of the same product from the dialog.
  • Fixed lines you removed in the Order Editor being deleted even when the save was then refused. If anything later in the same save failed — a product Magento would not accept, a quantity that did not pass validation — the removals had already gone through, so the order came back stripped of those lines with the rest of your changes lost. Removals are now applied only once every check has passed, so a refused save leaves the order exactly as it was.
  • Fixed products being dropped from a save without explanation. When Magento refuses a product (for example because its required options were not supplied), the Order Editor now names the products and the reason instead of saving the order without them.
  • Fixed the Add Products dialog closing on a refused submit, which hid the reason and lost the selection. It now stays open so you can fix the problem and try again.

2.0.10 (2026-08-12)

Improvements

  • Faster automatic Order Tag assignment on stores with many orders. The scheduled tag job used to run two lookups for every single order and reload the order once for every tag it checked; it now looks the tags up once per batch of orders and loads each order once, so the job finishes noticeably quicker on large order volumes. Which tags get assigned is unchanged.

Fixed

  • Fixed the Orders grid showing 0.00 Grand Total and Base Grand Total, and not picking up new or edited orders, on stores that have asynchronous order-grid indexing switched on (Stores → Configuration → Advanced → Developer → Grid Settings → Asynchronous indexing). Magento's own cron filled its grid first, which made the module think there was nothing left to sync, so the extra columns stayed empty until a manual reindex — and drifted back out of date as new orders arrived. New and edited orders now reach the module's grid on schedule.
    • ⚠️ Database change: the mst_order_grid table gains an updated_at column (added automatically by setup:upgrade).
  • Fixed stock counts drifting out of sync after merging orders on stores that use Magento's Multi-Source Inventory. When you merged one or more orders into an existing order, the items moved into the target order were no longer holding a stock reservation, so salable quantities could show more units as available than were really committed. Merged orders now rebuild their reservations, so committed stock again matches the items on the order. Stores that don't use Multi-Source Inventory are unaffected.
  • Fixed the quantity of a configurable or bundle product doubling when several orders containing that product were merged into a new order. Magento keeps the ordered quantity of such a product on a second, hidden line for the chosen variant, and merging combined that line twice: the order showed the right quantity on the visible line but twice as much on the variant line, so twice the stock was committed. Cancelling such an order then released only the quantity shown on the visible line and the surplus stayed committed for good, and merging an already-merged order compounded the error further. Quantities are now combined once, so a merged order commits exactly what was ordered and cancelling it releases all of it.
  • Fixed configurable and bundle products losing their stock reservation when they were merged into an existing order. Only the visible line was moved to the target order, leaving the transferred units on a line that stock management does not track, while cancelling the source order released the stock those units were still committed to. Where the target order already contained the same product, the visible line grew but the variant line kept its old quantity. The variant line is now carried across and kept in step with the line you see, so a merged order reports the same quantity everywhere — in stock, on invoices and shipments, and in reports.
  • Fixed committed stock staying over-reported after merging an already-invoiced order on stores that use Magento's Multi-Source Inventory. When a merged source order had already been fully invoiced, it could not be cancelled through Magento's normal flow, so its stock reservation was left behind — salable quantities kept counting those units as committed even though the order had been closed by the merge. Such source orders now release their reservation when they are closed, so committed stock again matches what is really on the orders. Stores that don't use Multi-Source Inventory are unaffected.
  • Fixed salable quantities being overstated after merging an order that had already been partially refunded back to stock, on stores that use Magento's Multi-Source Inventory. Closing such an order as part of a merge released more stock than the order was actually holding, because the refund had returned part of it earlier. Closing an order by a merge now releases exactly the stock that order still holds. Stores that don't use Multi-Source Inventory are unaffected.
  • Fixed the Custom Order Number preview writing a PHP deprecation error to the system log on PHP 8.1 and newer. Every time the preview was rendered in the admin configuration, an error line was logged even though the preview itself worked; the log stays clean now.
  • Fixed the automatic Order Tags rebuild running out of memory on large stores. The background process that reassigns automatic tags to your orders used to keep loading every order over and over — once per order and again for each automatic tag rule — and never released that data as it went, so memory kept climbing with the size of your catalogue of orders (on a store with 185,000 orders it could consume around 10 GB in a single run and fail). It now loads each order once and frees the data after every batch, so the rebuild finishes reliably regardless of how many orders and automatic tags you have. This fix works on all supported Magento versions (2.3.7 and up) and PHP versions (7.4 through 8.5).

2.0.9 (2026-07-22)

Improvements

  • Faster order saving on stores that use automatic Order Tags with customer-based rules. When an order is saved, each customer rule used to re-run the same heavy lookups (the customer's lifetime sales, order count, newsletter subscription, and review count) from scratch. These figures are now calculated once per order and reused by every rule, so orders with several customer-based tags — and bulk operations that save many orders at once — save noticeably quicker with no change to which tags are applied.

2.0.8 (2026-06-24)

Fixed

  • Fixed an error when adding products in the Order Editor — adding or changing a quantity that wasn't a multiple of the product's "qty increment" setting was blocked with a "You can buy this product only in quantities of N at a time" message. As an admin you can now set any quantity, just like when creating a new order from the admin panel.

2.0.6 (2026-06-10)

Improvements

  • The Orders grid column selector now offers both Company and VAT Number under both the Billing and the Shipping address groups — labelled Billing Company, Billing VAT Number, Shipping Company, and Shipping VAT Number. Previously the Billing group offered only VAT Number and the Shipping group only Company. Values backfill for existing orders after an order-grid reindex.

2.0.5 (2026-06-10)

Improvements

  • Significantly faster Orders grid on stores with a large number of orders — each page now loads the visible orders first and only then pulls in the extra columns (tags, product thumbnails, item details) for those rows, instead of processing every order on every page load. This removes the slowdown that grew worse as the order count increased.

Fixed

  • Fixed the Orders grid failing with an "Unknown column" error when filtering or searching while tag or other extra columns are shown, including on stores using the Swissup admin grid extension.

2.0.4 (2026-06-03)

Fixed

  • Fixed order item changes in the Order Editor being treated as final saves during preview — the events fired before and after saving items now correctly indicate whether the change is just a preview or a real save, so custom logic and integrations that react to these events behave correctly while previewing.

2.0.3 (2026-05-27)

Features

  • Translations for 15 languages — the Order Management admin interface now ships with ready-to-use translations for Arabic, Chinese (Simplified), Czech, Dutch, French, German, Italian, Japanese, Polish, Portuguese (Brazil), Portuguese (Portugal), Spanish, Swedish, Turkish, and Ukrainian. Text that was previously hardcoded in English — order timeline field labels, validation and diagnostic messages, and the item id/SKU lines in the timeline — is now translatable, so it follows your store's locale automatically.

Fixed

  • Fixed the shipping method not being applied when you change it in the Order Editor — the selected method is now read from the correct order form field.
  • Fixed a tax calculation issue when editing orders — a duplicate configuration entry was silently disabling the plugin that restores the tax calculation cache, which could lead to incorrect tax amounts. Both tax plugins are active again.
  • Corrected the order-save message "Order Number already exist" to "already exists" and a "Telephon" typo in the Orders page diagnostics warning.

2.0.2 (2026-05-20)

Fixed

  • Cleared PHP 8.1+ deprecation warnings that appeared when editing order items, updating quantities, or applying coupons
  • Stopped a deprecation warning from being raised when applying a discount rule that had no ID yet

2.0.1 (2026-05-14)

Improvements

  • Added public KEY_* constants for section data fields in Mirasvit\OrderEditor\Section\CustomerEmailSection, InformationSection, and ShippingAddressSection (e.g. KEY_CUSTOMER_EMAIL, KEY_INCREMENT_ID, KEY_STREET). Custom code that previously used raw string keys to read or write these section fields can now reference the constants. The DATE_FORMAT and TIME_FORMAT constants on InformationSection were also promoted from private to public so they can be reused externally.

2.0.0 (2026-05-04)

Features

  • Merge Orders — combine several orders into a single order from the Orders grid. Pick the orders, choose which order to keep, review items and totals (with automatic currency conversion when orders use different currencies), and merge in one step. The original orders are cancelled and the merge action is recorded in the order timeline. Coupons applied to the source orders are carried over.
  • Split Order — break a single order into two or more separate orders directly from the order view. Choose which items go to each new order, preview totals, and split with one click. Coupons are recalculated for each resulting order, and the split action is recorded in the order timeline.
  • Restricted statuses for merge and split — added two new admin settings under Stores → Configuration → Mirasvit → Order Management to define which order statuses block merging or splitting (e.g. complete, closed). The Merge mass action and the Split Order button are hidden for orders in those statuses.
  • REST API support — full set of REST endpoints for managing orders, tags, and tag groups from external systems. New endpoints cover:
    • Order Editor — load any section, save Information / Account / Payment / Shipping / Shipping Address / Customer Email / Coupon / Items, preview item changes, resolve product URLs, delete invoices (single and mass).
    • Order Grid — delete order (single and mass), mass invoice, mass shipment, split order, merge orders.
    • Order Tag — full CRUD for tags and tag groups, assign/unassign a tag to an order, mass-assign, reindex.
    • All endpoints respect the existing ACL resources (Mirasvit_OrderEditor::editor, Mirasvit_OrderGrid::delete_order, Mirasvit_OrderGrid::mass_merge, Mirasvit_OrderGrid::mass_split, Mirasvit_OrderTag::order_tag, etc.).
  • New ACL resourcesMass Merge Orders and Mass Split Order permissions added under System → Permissions → User Roles → Order Management → Order Grid, so you can grant or restrict these actions per role.

Improvements

  • Shipping method validation now correctly handles virtual products in the order — virtual items no longer trigger spurious "shipping method is required" errors when editing items.
  • ⚠️ The Mirasvit\OrderEditor\Registry class has moved to Mirasvit\OrderEditor\Model\Registry. Update any custom di.xml references or use statements that point at the old namespace.
  • ⚠️ The Order Editor now exposes typed Data interfaces under Mirasvit\OrderEditor\Api\Data\Section\* (e.g. ItemsDataInterface, AccountDataInterface, ShippingDataInterface). Custom code that previously interacted with section data as raw arrays via the controllers should migrate to these interfaces.

1.4.26 (2026-04-21)

Features

  • Toggle for the online-payment invoice check — added a new admin setting Stores → Configuration → Mirasvit → Order Management → Editor → Prevent invoice creation for online-payment orders. When enabled, submitting an invoice for an order paid online is blocked with a warning instructing the admin to use the Extra Payments tab. The option is disabled by default, so the online-payment invoice validator no longer runs unless you turn it on.

1.4.25 (2026-04-20)

Features

  • Toggle for the insufficient-stock invoice check — added a new admin setting Stores → Configuration → Mirasvit → Order Management → Editor → Prevent invoice creation when there is insufficient stock. When enabled, the system blocks invoice creation (both for individual orders and the mass invoice action) if any item is out of stock and backorders are disabled. The option is disabled by default, so the stock check introduced in 1.4.24 no longer runs unless you turn it on.

1.4.24 (2026-04-14)

Fixed

  • Fixed invoice creation failing silently when product stock was insufficient — the system now checks stock levels before creating an invoice (both for individual orders and mass invoice action) and shows a clear error message when backorders are disabled and stock is too low

1.4.23 (2026-04-03)

Fixed

  • Creating an invoice was incorrectly blocked when an order had already been partially shipped — invoicing now works regardless of shipment status
  • The "Delete" mass action in the order and invoice grids was visible to admin users who lacked delete permissions — it is now correctly hidden based on ACL role settings

1.4.22 (2026-02-26)

Improvements

  • A fixed amount discount has been added

1.4.21 (2026-02-18)

Fixed

  • Online payment invoice issue

1.4.20 (2026-02-16)

Fixed

  • Fixed order item changes for online payments

1.4.19 (2026-01-28)

Fixed

  • Fix issue with entering “0” in Shipping Method custom price
  • Correct timeline month/year positioning

1.4.18 (2025-12-24)

Fixed

  • Hide the "configure" link when it is inactive

1.4.17 (2025-12-22)

Fixed

  • Fix the "configure" link for Configurable Products

1.4.16 (2025-11-27)

Improvements

  • Added Mass Actions for orders (invoice, shipment)

1.4.15 (2025-11-25)

Improvements

  • Added product images
  • Added links to user manual

Fixed

  • Filtering by Purchase Date

1.4.14 (2025-11-12)

Improvements

  • Quote service

1.4.13 (2025-11-10)

Fixed

  • Check for StoreId compliance

1.4.12 (2025-11-03)

Fixed

  • Error: "record.isShowStatusHistory is not a function"

1.4.11 (2025-10-23)

Fixed

  • Fixed multishipping order creation

1.4.10 (2025-10-22)

Fixed

  • Fix Configurable Product issue on the Shipping Method step

1.4.9 (2025-10-09)

Fixed

  • Removing duplicates

1.4.8 (2025-10-03)

Fixed

  • Check the Shipping Method before saving your order

1.4.7 (2025-09-09)

Features

  • Total Due conditions added to Tag Group custom rules
  • Payment additional information conditions added to Tag Group custom rules

1.4.6 (2025-09-05)

Improvements

  • Add tag groups to menu

1.4.5 (2025-07-31)

Fixed

  • Fixed adding some Bundle Products

1.4.4 (2025-07-30)

Features

  • Make product sku link to product detail screen

1.4.3 (2025-07-22)

Fixed

  • Аdding product

1.4.2 (2025-07-02)

Fixed

  • Error changing Payment Method

1.4.1 (2025-06-16)

Fixed

  • Updated dependence of the Extra Payment module

1.4.0 (2025-06-16)

Improvements

  • WCAG 2.2 AA compliance
  • Added a column 'VAT Number' to the order grid

Fixed

  • Issue related to editing configurable options of the same order products

1.3.4 (2025-05-13)

Fixed

  • Issue related to the error 'TypeError: Mirasvit\OrderTag\Model\Tag\Condition\Product::validate(): Argument 1 must be of type Magento\Framework\Model\AbstractModel, null given'

1.3.3 (2025-05-07)

Improvements

  • Hidden 'Delete' button for orders and invoices if the user does not have the appropriate permissions

1.3.2 (2025-04-18)

Improvements

  • Added the ability to prohibit editing orders that have a certain status

Fixed

  • Compatibility with third-party modules

1.3.1 (2025-04-17)

Fixed

  • Issue related to multiplying the quantity of bundle items when editing the Items Ordered section

1.3.0 (2025-04-14)

Improvements

  • Improved configuration structure

Fixed

  • Issue related to the impossibility of editing the 'Items Ordered' section if the order contains bundle product
  • Compatibility with PHP 8.4

1.2.34 (2025-03-03)

Fixed

  • Issue related to returning order items to their original values when editing an item's configuration.

1.2.33 (2025-02-17)

Fixed

  • Issue related to the lack of information about the deleted item in the timeline

1.2.32 (2025-02-12)

Fixed

  • Issue related to incorrect tax rates for order items being applied when submitting an order items section

1.2.31 (2025-02-10)

Improvements

  • Added the ability to remove order items removed from a quote

1.2.30 (2025-02-03)

Fixed

  • Issue related to module deploy
  • Issue related to empty thumbnail for configurable child items

1.2.29 (2025-01-31)

Fixed

  • Compatibility with Magento_PurchaseOrder module

1.2.28 (2025-01-29)

Fixed

  • Issue related to text truncation after editing order items custom options if text contains quotes

1.2.27 (2025-01-23)

Improvements

  • Added ability to change visibility of order grid items

1.2.26 (2024-12-13)

Improvements

  • Added the ability to configure customizable options when editing order items

Fixed

  • Issue related to filtering order tags by a tag group filter

1.2.25 (2024-12-10)

Fixed

  • Issue related to applying tags based on some product conditions

1.2.24 (2024-12-03)

Improvements

  • Added the ability to generate tags based on product attributes
  • Reduced loading time of the orders page

Fixed

  • Issue related to saving the order customer section if the 'Assign to customer if exists' is checked

1.2.23 (2024-11-11)

Fixed

  • "Sku not found" error when a product has customized options

1.2.22 (2024-11-08)

Fixed

  • Issue related to grid filtering by additional columns

1.2.21 (2024-11-07)

Fixed

  • Issue related to order editing if product has customized options

1.2.20 (2024-10-15)

Fixed

  • Issue related to filtering by Purchase Date in the order grid

1.2.19 (2024-09-04)

Fixed

  • Issue with invoice number in miltistore configuration

1.2.18 (2024-09-04)

Improvements

  • added Mirasvit Rma column to the order grid
  • Added pop-up window with order comments

Fixed

  • Issue with order number if order created from admin panel

1.2.17 (2024-07-24)

Improvements

  • Multiselect filter by Tag and Status in the order grid
  • Added Search bar when adding products

Fixed

  • Issue when adding products if the order contains Backordered items

1.2.16 (2024-07-22)

Fixed

  • Issue with incorrect calculation of taxes when changing the Shipping section

1.2.15 (2024-07-08)

Fixed

  • Prevented deletion of invoiced product

1.2.14 (2024-06-24)

Fixed

  • Allow items to be deleted if the order has an invoice
  • Prevented product deletion if there is only one product in the order

1.2.13 (2024-06-19)

Improvements

  • Added checkbox for explicit use of Custom Price when editing the Shipping Method section

Fixed

  • Issue with automatic tag assignment when editing the Shipping Method section

1.2.12 (2024-06-14)

Features

  • Ability to apply coupon

Fixed

  • Incorrect number of records found when filtering by tag
  • Issue with missing Edit Section Button

1.2.11 (2024-06-03)

Fixed

  • OrderTag: Error when placing an order if a payment system is used

1.2.10 (2024-05-30)

Fixed

  • Issue with adding a configurable product

1.2.9 (2024-05-21)

Fixed

  • Issue with add products after an unsuccessful attempt to add a product

1.2.8 (2024-04-15)

Fixed

  • Counter settings

1.2.7 (2024-04-09)

Improvements

  • Error message if product type not found when editing Items Ordered

1.2.6 (2024-04-08)

Fixed

  • Filter by Purchase Date

1.2.5 (2024-03-14)

Fixed

  • Unable serialize error when export on Magento 2.3.3

1.2.4 (2024-03-13)

Improvements

  • Reduced memory consumption and Increased performance when exporting Orders Grid

1.2.3 (2024-01-30)

Fixed

  • Issue with creating a tag condition with a payment method for a store that is not the default

1.2.2 (2024-01-17)

Fixed

  • Date when editing the Account Information section

1.2.1 (2024-01-05)

Improvements

  • Order grid loading speed when QuickView is enabled
  • Add product thumbnail to quick view

1.2.0 (2023-12-18)

Improvements

  • The Company and Street columns have been added to the orders grid

1.1.49 (2023-12-07)

Improvements

  • ACL to restrict permission to delete order and invoice

1.1.48 (2023-12-01)

Fixed

  • Edit purchase order number

1.1.47 (2023-11-29)

Fixed

  • Issue with applying a discount for Magento 2.4.4 if there are no Cart Price Rules

1.1.46 (2023-11-09)

Fixed

  • Date in timeline for admin locale other than en_US
  • Quantity check when Backorders is enabled

1.1.45 (2023-10-30)

Fixed

  • Quantity check when Magento MSI is disabled

1.1.44 (2023-10-18)

Features

  • Delete invoice

Improvements

  • Added a Track Number column to the Orders grid

1.1.43 (2023-10-11)

Fixed

  • Time zone on timeline

1.1.42 (2023-10-02)

Improvements

  • Show product name in quick view

1.1.41 (2023-09-27)

Fixed

  • Issue with configuration Order Number for different stores

1.1.40 (2023-09-22)

Fixed

  • Quantity check when Manage Stock is disabled

1.1.39 (2023-09-19)

Fixed

  • Quantity check when editing the Items section

1.1.38 (2023-09-19)

Fixed

  • Assigning a tag with the condition "Created a few days ago"

1.1.37 (2023-09-05)

Fixed

  • Missing Remove button in some cases when editing the Items Ordered section in stores with multiple StoreViews

1.1.36 (2023-09-04)

Fixed

  • Issue with missing block name in layout when editing Order Tag on Magento EE

1.1.35 (2023-08-02)

Improvements

  • Compatibility with Reward Points module

Fixed

  • Updating order grid data after editing a section

1.1.34 (2023-07-11)

Improvements

  • Compatibility with Store Credit

Fixed

  • Export Tags column

1.1.33 (2023-06-20)

Fixed

  • Export order grid with filter by tag

1.1.32 (2023-05-10)

Fixed

  • Filter by grand total

1.1.31 (2023-05-03)

Fixed

  • Filter in order grid
  • Full tax summary in preview
  • Applying some taxes
  • Issue with tax calculation if the first Order Item is removed
  • Issue displaying applied taxes
  • Order Timeline: Fixed entities creation registration

1.1.30 (2023-04-19)

Improvements

  • Ability to apply multiple taxes
  • Revamped tag appearance and repositioned tags for better user experience

1.1.29 (2023-03-23)

Fixed

  • PHP 8

1.1.28 (2023-03-15)

Fixed

  • PHP 8.2

1.1.27 (2023-03-10)

Fixed

  • Error SQLSTATE23000: Integrity constraint violation: 1062 Duplicate entry

1.1.26 (2023-03-02)

Fixed

  • Filter

1.1.25 (2023-02-27)

Fixed

  • Duplicate rows in Tag Groups Grid

1.1.24 (2023-02-23)

Fixed

  • Filter by Purchase Date, QTY, Cost

1.1.23 (2023-02-13)

Fixed

  • Error "Column not found" while exporting filtered orders

1.1.22 (2023-01-30)

Fixed

  • Customer assignment issue

1.1.21 (2023-01-26)

Improvements

  • Added support of Magento 2.4.6

Fixed

  • Issue with checkout if using Klarna for payment

1.1.19 (2023-01-17)

Fixed

  • Issue with changing Shipping Address in guest order

1.1.18 (2022-12-16)

Fixed

  • Issue with removing discounts when editing items

1.1.17 (2022-12-15)

Fixed

  • Export

1.1.16 (2022-11-11)

Fixed

  • Sorting by Tags

1.1.15 (2022-11-09)

Fixed

  • Incorrect price if order currency is not base

1.1.14 (2022-11-09)

Features

  • Delete order

1.1.13 (2022-10-26)

Fixed

  • Create Order

1.1.12 (2022-10-26)

Fixed

  • Error while editing customer email on Account Information tab

1.1.11 (2022-10-24)

Improvements

  • Increase performance Order Grid

1.1.10 (2022-10-18)

Features

  • Order changes timeline

1.1.9 (2022-10-12)

Fixed

  • Change Tax Rate

1.1.8 (2022-08-22)

Fixed

  • Assigning a customer to a quote when editing the Account Information section

1.1.7 (2022-08-08)

Fixed

  • Filter by name

1.1.6 (2022-08-05)

Fixed

  • When editing the Shipping Address, the list of countries depends on the settings

1.1.5 (2022-07-27)

Improvements

  • Added a Product Name column to the Order Grid

1.1.4 (2022-07-26)

Fixed

  • Call to a member function getField() on bool error on Login as Customer Log page

1.1.3 (2022-07-01)

Fixed

  • ACL for Order Tag

1.1.2 (2022-06-20)

Improvements

  • remove db_schema_whitelist.json

1.1.1 (2022-06-03)

Fixed

  • Update dependencies

1.1.0 (2022-05-31)

Improvements

  • Migrate to declarative schema

1.0.43 (2022-05-25)

Fixed

  • Compatibility with Magento 2.4.4

1.0.42 (2022-05-23)

Fixed

  • Error "undefined index: base_discount_amount in..." if Wyomind_MsiOrderManagement is enabled

1.0.41 (2022-05-12)

Fixed

  • Issue with Salable Quantity in Magento 2.3

1.0.40 (2022-04-26)

Fixed

  • Issue with display columns selection
  • Issue with adding tag on order view page

1.0.39 (2022-03-22)

Fixed

  • Issue when adding product with Special Price

1.0.38 (2022-03-10)

Fixed

  • Issue with disabled products
  • Issue wiht Shipping Address

1.0.37 (2022-02-28)

Fixed

  • Issue with adding order item if price contains separator

1.0.36 (2022-02-21)

Fixed

  • Removed the ability to remove order item if quote item does not exist

1.0.35 (2022-02-16)

Fixed

  • Issue with display error message
  • Issue with duplicate edit area

1.0.34 (2022-02-07)

Fixed

  • Action remove order item

1.0.33 (2022-02-03)

Fixed

  • Order Editor: Tax calculation for price including tax

1.0.32 (2022-01-31)

Improvements

  • Order Editor: Added ability to change customer of the order

Fixed

  • Order Editor: Display of section errors

1.0.31 (2021-12-30)

Fixed

  • Order Editor: Compatibility with payment method "magenest_sagepay_form"
  • Order Editor: Infinite loader after a new product was added
  • Order Number: Error "Undefined entity type".

1.0.30 (2021-12-22)

Fixed

  • Order Editor: Base tax calculation
  • Order Editor: Reset tax for shipping update

1.0.29 (2021-12-17)

Fixed

  • Order Editor: Update of disabled products

1.0.27 (2021-12-13)

Improvements

  • Order Tag: Decrease reindex time

1.0.26 (2021-12-03)

Fixed

  • Order Editor: Edit price field shows only for the last item
  • Order Number: Order preview
  • Order Number: Usage of the order for order

1.0.25 (2021-11-26)

Fixed

  • Order Editor: Compatibility with Stripe payment method
  • Order Grid: Error "Undefined index: base_discount_amount in ..."

Improvements

  • Order Editor: Added the ability to edit customer email

1.0.24 (2021-11-23)

Fixed

  • Order Editor: Item price update on multi currency store

1.0.23 (2021-11-10)

Improvements

  • Order Editor: Add a configurable product with different options
  • Order Editor: Add custom shipping price and ability to change order's State
  • Order Editor: Add an ability to edit shipping address

1.0.22 (2021-11-03)

Fixed

  • Order Editor: Price update

1.0.21 (2021-10-18)

Fixed

  • Order Editor: Uncaught Error: Call to a member function addItem() on array in vendor/magento/module-sales/Model/Order/Invoice.php:552

1.0.20 (2021-10-12)

Fixed

  • Order Editor: Qty for a new configurable products
  • Order Editor: Removed the ability to remove invoiced items

1.0.18 (2021-10-01)

Fixed

  • Order Editor: Configurable products with custom options

1.0.17 (2021-09-28)

Fixed

  • Order Editor: Compatibility with m2.3.1
  • Order Editor: Shipping methods list

1.0.16 (2021-09-13)

Fixed

  • Error for Braintree payment method
  • Permissions

1.0.15 (2021-09-02)

Fixed

  • Product reservation

1.0.14 (2021-08-19)

Fixed

  • Recursion error for new configurable products
  • Add configurable product with empty price
  • Price format in the order grid

1.0.13 (2021-07-13)

Fixed

  • Added columns group "Additional"
  • Added Extra Payments

1.0.12 (2021-06-15)

Fixed

  • Issue when an item does not remove after preview

1.0.11 (2021-06-11)

Fixed

  • Update items with custom price

1.0.10 (2021-06-08)

Improvements

  • Added mass action "Add Order Tag"

Fixed

  • Sticky filter bar gets messed up
  • Export of the items column

1.0.9 (2021-05-28)

Fixed

  • Colors do not apply to the grid

1.0.8 (2021-05-20)

Improvements

  • Added the ability to remove auto tags

1.0.7 (2021-05-07)

Features

  • Added new module "Order Tag"

1.0.6 (2021-04-23)

Fixed

  • Currency in the order items grid

Improvements

  • Compatibility with ParadoxLabs_Authnetcim and MageWorx_MultiFees

Features

  • Added new module "Quick View"

1.0.5 (2021-04-05)

Fixed

  • Product selection for multi websites

Improvements

  • Added product attributes to the "Add Product" dialog

1.0.5-beta (2021-03-30)

Fixed

  • Product selection for multi websites

1.0.4 (2021-03-26)

Fixed

  • Issue when item qty does not save
  • Compatibility with m2.3
  • Broken order grid when exist orders with removed products

1.0.3 (2021-03-22)

Fixed

  • Error "Call to a member function getItemId() on null in OrderEditor/Observer/FilterTaxRatesObserver.php"

1.0.2 (2021-03-10)

Features

  • Initial release