2016-07-01 5 views
0

Ich habe standardmäßig INR als Währung für Zahlungen festgelegt. Ich möchte die Zahlungen in Dollar erhalten. Wie kann ich Dollar als meine Standardwährung festlegen?USD als Standardwährung festlegen In CCAVENUE

Ich benutze die PHP API zur Implementierung des CCAVENUE PAYMENT GATEWAY. Es ist alles erledigt . Ich muss nur den Dollar als meine Standardwährung festlegen.

<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> 

änderte ich die Währung von INR in USD, während die nicht funktioniert und gibt mir einen Fehler

Antwort

1

ich mir die Antwort herausgefunden. Sie waren ein Fehler von der Ccvenue-Seite. Sie haben es behoben und jetzt funktionieren INR und USD

Verwandte Themen