|
here you go. patch is in attachment.
additionally there’s instructions about how to fix it manually:
in app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php find the following code (line 293):
$invoice->register();
if (!empty($data['send_email'])) { $invoice->setEmailSent(true); }
then add
$invoice->getOrder()->setIsInProcess(true);
so you will get something like
$invoice->register();
if (!empty($data['send_email'])) { $invoice->setEmailSent(true); }
$invoice->getOrder()->setIsInProcess(true);
$transactionSave = Mage::getModel('core/resource_transaction') ->addObject($invoice) ->addObject($invoice->getOrder()); $shipment = false;
File Attachments
|