Currently Pinnacle Cart will only import orders into StoneEdge Order Manager with a payment status of received. This is to make sure you are not processing orders that have not received payment. If you want to get all orders to come into order manager make the following change to the plugin.stone_edge_order_manager.php file, or replace this file with the attached file below.
This change will cause ALL orders to come into StoneEdge.
--------------------------------------------------------------
OLD - Line 82:
$sql = "SELECT COUNT(*) AS ordercount FROM ".DB_PREFIX."orders WHERE status NOT IN ('Abandon', 'New', 'Canceled', 'Failed') AND payment_status IN ('Received', 'Partial')";
NEW - Line 82:
$sql = "SELECT COUNT(*) AS ordercount FROM ".DB_PREFIX."orders WHERE status NOT IN ('Abandon', 'New', 'Canceled', 'Failed') ";
OLD - Line 139:
"WHERE status NOT IN ('Abandon', 'New', 'Canceled', 'Failed') AND payment_status IN ('Received', 'Partial') ";
NEW - Line 139:
"WHERE status NOT IN ('Abandon', 'New', 'Canceled', 'Failed') ";
---------------------------------------------------------------------------
This is an UNSUPPORTED fix and will NOT be included in any new packages. You will be responsible for adding this file back into your cart on an update.
