首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >在opencart的支付网关成功付款后,有什么链接可以重定向?

在opencart的支付网关成功付款后,有什么链接可以重定向?
EN

Stack Overflow用户
提问于 2013-03-18 23:49:03
回答 3查看 23.3K关注 0票数 2

我在Opencart中实现了基于BankTransfer模块的支付模块。对支付网关的要求是以get请求提交一个接班人错误地址。这些URL是成功订购和取消订单的网址。

算法:

  1. 客户到达订单结帐处。
  2. 单击确认订单
  3. 获取重定向到localhost/opencart/testkzm.php,其中输出值,并且有一个链接,如果成功,我应该重定向到该链接。

问题:在支付网关成功付款后,的重定向链接是什么?

方法:我天真地认为http://example.com/opencart/index.php?route=checkout/success是成功的链接。它只显示确认消息,但订单不在系统中放置。据我所知,没有办法提供外部链接来自动知道要确认的顺序,所以我应该在后继器中传递加密的唯一值,所以在返回时我可以解密它们并确认顺序?

档案说明:

  • banktransfer.php是opencart文件,它从系统获取诸如订单id、订单数量等信息。
  • banktransfer.tpl是用于在浏览器中呈现页面的模板文件。(实际前端)
  • testkzm.php是我编写的简单文件,用于测试从系统中获得正确的值。

testkzm.php是我编写的简单文件,用于测试从系统中获得正确的值。

控制器/付款中的banktransfer.php

代码语言:javascript
运行
AI代码解释
复制
 class ControllerPaymentBankTransfer extends Controller {
  protected function index() {
   $this->language->load('payment/bank_transfer');

   $this->data['text_instruction'] = $this->language->get('text_instruction');
   $this->data['text_description'] = $this->language->get('text_description');
   $this->data['text_payment'] = $this->language->get('text_payment');

   //Modified things for KZM
   $order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
   $this->data['orderIdKZM'] = $this->session->data['order_id'];
   $this->data['amountKZM'] = $order_info['total'];

   $this->data['merchantIdKZM'] = $this->language->get('merchantIdKZM');
   $this->data['currencyKZM'] = $this->language->get('currencyKZM');
   $this->data['titleKZM'] = $this->language->get('titleKZM');
   $this->data['successuUlKZM'] = $this->language->get('successUrlKZM');
   $this->data['errorUrlKZM'] = $this->language->get('errorUrlKZM');
   $this->data['dateKZM'] = $this->language->get('dateKZM');
   $this->data['signstrKZM'] = $this->language->get('signstrKZM');
   $this->data['verKZM'] = $this->language->get('verKZM');
   //KZM

   $this->data['button_confirm'] = $this->language->get('button_confirm');

   $this->data['bank'] = nl2br($this->config->get('bank_transfer_bank_' . $this->config->get('config_language_id')));

   $this->data['continue'] = $this->url->link('checkout/success');

   if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/payment/bank_transfer.tpl')) {
    $this->template = $this->config->get('config_template') . '/template/payment/bank_transfer.tpl';
   } else {
    $this->template = 'default/template/payment/bank_transfer.tpl';
   } 

   $this->render(); 
  }

  public function confirm() {
   $this->language->load('payment/bank_transfer');

   $this->load->model('checkout/order');

   $comment  = $this->language->get('text_instruction') . "\n\n";
   $comment .= $this->config->get('bank_transfer_bank_' . $this->config->get('config_language_id')) . "\n\n";
   $comment .= $this->language->get('text_payment');

   $this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('bank_transfer_order_status_id'), $comment, true);
  }
 }

banktransfer.tpl

代码语言:javascript
运行
AI代码解释
复制
<h2><?php echo $text_instruction; ?></h2>
 <div class="content">
    <p><?php echo $text_description; ?></p>
    <p><?php echo $bank; ?></p>
    <p><?php echo $text_payment; ?></p>
    <p><?php echo $orderIdKZM; ?></p>
    <p>
    <?php 
     $titleKZM = $titleKZM.$orderIdKZM; 
       $merchantIdKZM = '23';
   $currencyKZM = 'KZT';
   $successUrlKZM = '';
   $erroUrlKZM = '';
   $dateKZM = $merchantIdKZM.$orderIdKZM.$amountKZM.$currencyKZM;

    ?></p>
 </div>
 <div class="buttons">
   <div class="right">
 <form action="http://example.com/opencart/testkzm.php" method="get">
 <input type="hidden" name="merchantIdKZM" value="<?php echo $merchantIdKZM; ?>">
 <input type="hidden" name="orderIdKZM" value="<?php echo $orderIdKZM; ?>">
 <input type="hidden" name="amountKZM" value="<?php echo $amountKZM; ?>">
 <input type="hidden" name="currencyKZM" value="<?php echo $currencyKZM; ?>">
 <input type="hidden" name="successUrlKZM" value="<?php echo $successUrlKZM; ?>">
 <input type="hidden" name="errorUrlKZM" value="<?php echo $errorUrlKZM; ?>">
 <input type="hidden" name="signstrKZM" value="<?php echo $signstrKZM; ?>">
 <input type="hidden" name="verKZM"  value="<?php echo $verKZM; ?>">

 <input type="button" value="<?php echo $button_confirm; ?>" id="button-confirm" class="button" />
 </form>
     </div>
 </div>
 <script type="text/javascript"><!--
 $('#button-confirm-s').bind('click', function() {
  $.ajax({ 
   type: 'get',
   url: 'index.php?route=payment/bank_transfer/confirm',
   success: function() {
    location = '<?php echo $continue; ?>';
   }  
  });
 });
 //--></script

testkzm.php

代码语言:javascript
运行
AI代码解释
复制
merchantID <?php echo $_GET["merchantIdKZM"]; ?><br>
  orderID <?php echo $_GET["orderIdKZM"]; ?> <br> 
  amount <?php echo $_GET["amountKZM"]; ?><br>
  currency <?php echo $_GET["currencyKZM"]; ?> <br> 
  successURL <?php echo $_GET["successUrlKZM"]; ?><br>
  errorURL <?php echo $_GET["errorUrlKZM"]; ?> <br> 
  signstr <?php echo $_GET["signstrKZM"]; ?><br>
  ver <?php echo $_GET["verKZM"]; ?> <br> 

  <div class="buttons">
            <div class="right">
          <a href="http://example.com/opencart/index.php?route=checkout/success">asdfas</a>
         </div>
      </div>
EN

回答 3

Stack Overflow用户

回答已采纳

发布于 2013-03-19 12:33:22

从支付网关返回的URL完全取决于您自己和支付网关的方法。通常,如果您可以向支付网关传递一个url以返回事务成功的true和/或false,您将得到它使用您的支付网关控制器的方法,例如http://yourstore.com/index.php?route=payment/payment_gateway/success,然后您可以在其中处理付款,并相应地更新订单状态。

如果您想转到结帐成功页面,可以使用$this->redirect($this->url->link('checkout/success', '', 'SSL'))。如果失败,您应该重定向回结帐页,在那里客户可以快速跳过应该已经填写了详细信息的各个页面,然后再试一次。

票数 1
EN

Stack Overflow用户

发布于 2013-03-19 02:56:06

成功网址是结帐/如你所想的成功。

付款模块在进入“成功”页面之前应确认付款。银行转账模块通过使用AJAX (在banktransfer.tpl中可以看到)调用banktransfer.php中的确认函数来进行确认。

最好使用另一个支付网关模块(如pp_standard、moneybookers、paymate等)作为您的起点,而不是银行转账,因为它们更类似于您的自定义支付网关模块需求。

票数 0
EN

Stack Overflow用户

发布于 2017-08-31 00:30:21

我刚刚添加了简单的重定向代码来启动

代码语言:javascript
运行
AI代码解释
复制
<?php
  header('Location:http://yoursite location');
  exit;
?>

视图/template/yourtemplate/公用/test.tpl

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/15494049

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档