在 CCAVENUE 中将美元设置为默认货币

Set USD as default Currency In CCAVENUE

默认情况下,我将 INR 作为我设置的付款货币。我想收到美元付款。如何将美元设置为我的默认货币。

我正在使用 PHP api 来实施 CCAVENUE 支付网关。一切都完成了。我只需要将美元设置为默认货币即可。

<form method="POST" name="customerData" action="ccavRequestHandler.php">
        <table width="40%" height="100" border='1' align="center"><caption><font size="4" color="blue"><b>Integration Kit</b></font></caption></table>
            <table width="50%" height="100" border='1' align="center">
                <tr>
                    <td>Parameter Name:</td><td>Parameter Value:</td>
                </tr>
                <tr>
                    <td colspan="2"> Compulsory information</td>
                </tr>
                <tr>
                    <td>TID :</td><td><input type="text" name="tid" id="tid" readonly /></td>
                </tr>
                <tr>
                    <td>Merchant Id :</td><td><input type="text" name="merchant_id" value=""/></td>
                </tr>
                <tr>
                    <td>Order Id    :</td><td><input type="text" name="order_id" value="123654789"/></td>
                </tr>
                <tr>
                    <td>Amount  :</td><td><input type="text" name="amount" value="10.00"/></td>
                </tr>
                <tr>
                    <td>Currency    :</td><td><input type="text" name="currency" value="USD"/></td>
                </tr>
                <tr>
                    <td>Redirect URL    :</td><td><input type="text" name="redirect_url" value="http://localhost/ccavResponseHandler.php"/></td>
                </tr>
                <tr>
                    <td>Cancel URL  :</td><td><input type="text" name="cancel_url" value="http://localhost/ccavResponseHandler.php"/></td>
                </tr>
                <tr>
                    <td>Language    :</td><td><input type="text" name="language" value="EN"/></td>
                </tr>

我将货币从 INR 更改为 USD,但它不起作用并给我一个错误

我自己找到了答案。他们是来自 ccavenue 方面的错误。他们修复了它,现在 INR 和 USD 可以正常工作了