简体   繁体   中英

How to send credit card form data to payment gateway without saving in database in magento?

无需在magento报价表中保存信用卡cvv编号并将此cvv编号发送到付款网关。(ICICI Moto付款网关)

Got it. In payment model, add two line and get it any where

 assignData($data){
    $info = $this->getInfoInstance();
    $session = Mage::getSingleton('core/session');
    $session->setData('cc_cid',$info->getCcCid());
 }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM