Online Shopping Cart Software
Talk to a sales representative 1-800-506-0398
 

Stoneedge Order Manager - How do I have all orders come into order manager instead of just orders with a payment status of "Received".

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.


User Opinions (0 votes)

No users have voted.

How would you rate this answer?



Thank you for rating this answer.

Related Articles

No related articles were found.

Attachments