openstream / SaferpayBusiness

Former Official Magento Saferpay Business Payment Extension
8 stars 4 forks source link

status "canceled_saferpay" not recognized in magento 1.6.2 #7

Closed heldchen closed 12 years ago

heldchen commented 12 years ago

after installation, the tables sales_order_status_state and sales_order_status are missing entries for "canceled_saferpay". having the status in the config.xml alone does not seem to work in magento 1.6.2 - in the magento admin, canceled orders are appearing with order status "".

fix/workaround:

INSERT INTO `sales_order_status` (`status`, `label`) VALUES ('canceled_saferpay', 'Canceled by Saferpay');
INSERT INTO `sales_order_status_state` (`status`, `label`, `is_default`) VALUES ('canceled_saferpay', 'canceled', 1);

after inserting the two records, orders in the backend now show "Canceled by Saferpay".