di.xml 1.1 KB

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
  9. <type name="Magento\Sales\Model\RefundOrder">
  10. <plugin name="refundOrderAfter" type="Magento\SalesInventory\Model\Plugin\Order\ReturnToStockOrder"/>
  11. </type>
  12. <type name="Magento\Sales\Model\RefundInvoice">
  13. <plugin name="refundInvoiceAfter" type="Magento\SalesInventory\Model\Plugin\Order\ReturnToStockInvoice"/>
  14. </type>
  15. <type name="Magento\Sales\Model\Order\Validation\RefundOrderInterface">
  16. <plugin name="refundOrderValidationAfter" type="Magento\SalesInventory\Model\Plugin\Order\Validation\OrderRefundCreationArguments"/>
  17. </type>
  18. <type name="Magento\Sales\Model\Order\Validation\RefundInvoiceInterface">
  19. <plugin name="refundInvoiceValidationAfter" type="Magento\SalesInventory\Model\Plugin\Order\Validation\InvoiceRefundCreationArguments"/>
  20. </type>
  21. </config>