Frage

Does anyone know how to set purchase order invoices automatically to "Unpaid" in Magento 2? Right now they are automatically marked as paid, but they should really be marked to Unpaid, and then set to Paid by the the administrator when the money is received.

War es hilfreich?

Lösung

Okay, I found out that to change this I would need to change this to true:

vendor/magento/module-payment/Model/Method/AbstractMethod.php

protected $_canCapture = true;

Then to make it the default value:

vendor/magento/module-sales/view/adminhtml/templates/order/invoice/create/

<option selected value="not_capture"><?= $block->escapeHtml(__('Not Capture')) ?></option>

Obviously I should put these changes in a new module.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top