付款方式在cs购物车中不能正常工作


Payment method not working properly in cs cart

我在cscart中创建一个新的支付网关。从支付网关cs购物车获得成功结果后,将其重定向到结帐页面并显示未完成结帐。请帮我解决这个问题

因为您没有提供任何代码,所以我编写了处理响应的示例代码:

if ($mode == 'return') {
    // this means, that the payment processor returned from 3rd party checkout page
    $order_info = fn_get_order_info($_REQUEST['order_id'], true);
    // you should have a response code (this section depends on your payment gateway)
    if ($_REQUEST['response_code'] == "S") {
        // the transaction was successful!
        $pp_response['order_status'] = 'P';
        $pp_response['transaction_id'] = $_REQUEST['transaction_id'];
        $pp_response["reason_text"] = $_REQUEST['response_code'] . ": " . $_REQUEST['transaction_id']);

        fn_finish_payment($_REQUEST['order_id'], $pp_response, false);
        fn_order_placement_routines('route', $_REQUEST['order_id']);
    } else {
        // the transaction was NOT successful!
        $pp_response['order_status'] = 'N';
        $pp_response['transaction_id'] = $_REQUEST['transaction_id'];
        $pp_response["reason_text"] = $_REQUEST['response_code'] . ": " . $_REQUEST['transaction_id']);
        fn_order_placement_routines('route', $_REQUEST['order_id'], false);
    }
}

关键的"功能"是:fn_finish_payment()fn_order_placement_routines()。如果您没有完成付款,您将被重定向到结帐页面,因为这意味着出错了。