editar vendor/magento/module-sales/etc/webapi.xml
linha 112:
- <route url="/V1/invoices/:id/void" method="POST">
+ <route url="/V1/invoices/:id/voidInvoice" method="POST">
editar vendor/magento/module-sales/Block/Adminhtml/Order/Invoice/View.php
linha 242:
- return $this->getUrl('sales/*/void', ['invoice_id' => $this->getInvoice()->getId()]);
+ return $this->getUrl('sales/*/voidInvoice', ['invoice_id' => $this->getInvoice()->getId()]);
edite a vendor/magento/module-sales/Block/Adminhtml/Order/Creditmemo/View.php
linha 183:
- return $this->getUrl('sales/*/void', ['creditmemo_id' => $this->getCreditmemo()->getId()]);
+ return $this->getUrl('sales/*/voidCreditmemo', ['creditmemo_id' => $this->getCreditmemo()->getId()]);
editar vendor/magento/module-sales/Controller/Adminhtml/Order/Invoice/Void.php
linha 9:
- class Void extends \Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\View
+ class VoidInvoice extends \Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\View
edite a vendor/magento/module-sales/Controller/Adminhtml/Order/Creditmemo/Void.php
linha 10:
- class Void extends \Magento\Backend\App\Action
+ class VoidCreditmemo extends \Magento\Backend\App\Action
renomear
vendor/magento/module-sales/Controller/Adminhtml/Order/Creditmemo/Void.php
para
vendor/magento/module-sales/Controller/Adminhtml/Order/Creditmemo/VoidCreditmemo.php
renomear
vendor/magento/module-sales/Controller/Adminhtml/Order/Invoice/Void.php
para
vendor/magento/module-sales/Controller/Adminhtml/Order/Invoice/VoidInvoice.php