您现在的位置是:首页 > cms教程 > Ecshop商城教程Ecshop商城教程
ecshop农行支付接口对接开发demo示例
访琴2024-12-19Ecshop商城教程已有人查阅
导读对于ECSHOP来说,支付是以接口的形式存在的。于是:1:首先添加接口文件includes\modules\payment下,增加abcbank.php,代码如下:
对于ECSHOP来说,支付是以接口的形式存在的。于是:
1:首先添加接口文件
includes\modules\payment下,增加abcbank.php,代码如下:
二:发送和接收
MerchantPayment/MerchantPayment.php,如下:
接下来,我们就需要安装了,
1:首先将文件夹和文件进行覆盖;
2:进入系统后台,点击安装
3:修改证书地址、商户号、密码等,
首先,找到文件:\ebusclient\TrustMerchant.ini,然后把2和4两个证书的路径,改为cert文件夹对应文件的绝对路径。上图3处指需要给接口指定一个日志路径(备注:一定要创建路径)。
至此,我们的ecshop的pc端已经支持农行支付了。
四:关于手机端
echshop的支付只要按照上面进行安装,数据库中就有了记录,如下:
所以,手机端类似,接口文件不需要动了。只不过,需要在mobile目录下一样添加MerchantPayment文件夹,加入发送和接收的文件就可以了。
1:首先添加接口文件
includes\modules\payment下,增加abcbank.php,代码如下:
<?php
/**
* ECSHOP 农行在线插件
*/
if (!defined('IN_ECS'))
{
die('Hacking attempt');
}
$payment_lang = ROOT_PATH . 'languages/' .$GLOBALS['_CFG']['lang']. '/payment/abcbank.php';
if (file_exists($payment_lang))
{
global $_LANG;
include_once($payment_lang);
}
/* 模块的基本信息 */
if (isset($set_modules) && $set_modules == TRUE)
{
$i = isset($modules) ? count($modules) : 0;
/* 代码 */
$modules[$i]['code'] = basename(__FILE__, '.php');
/* 描述对应的语言项 */
$modules[$i]['desc'] = '农行接口';
/* 是否支持*/
$modules[$i]['is_cod'] = '0';
/* 是否支持在线支付 */
$modules[$i]['is_online'] = '1';
/* 支付费用 */
$modules[$i]['pay_fee'] = '0';
/* 作者 */
$modules[$i]['author'] = '嘉兴科蓝软件有限公司';
/* 网址 */
$modules[$i]['website'] = 'http:// .kelasoft.com/';
/* 版本号 */
$modules[$i]['version'] = 'kelasoft.com V1.0';
/* 配置信息 */
$modules[$i]['config'] = array(
);
return;
}
/**
* 类
*/
class abcbank
{
/**
* 构造函数
*
* @access public
* @param
*
* @return void
*/
function abcbank()
{
}
function __construct()
{
$this->abcbank();
}
/**
* 生成支付代码
* @param array $order 订单信息
* @param array $payment 支付方式信息
*/
function get_code($order, $payment)
{
if (!defined('EC_CHARSET'))
{
$charset = 'utf-8';
}
else
{
$charset = EC_CHARSET;
}
$tOrderNo = $order['order_id'];//$order['order_sn']; /*订单编号*/
$tOrderDesc = 'Game Card Order'; /*订单说明*/
$tOrderDate = date("Y/m/d", $order['add_time']); /*订单日期*/
$tOrderTime = date("h:i:s", $order['add_time']); /*订单时间*/
$tOrderAmountStr = $order['order_amount'];//sprintf("%012d",$order['order_amount']); /*订单金额*/
$tOrderURL ='http://localhost:8080/huahui/MerchantPayment/MerchantQueryOrder.php?OrderNo=ON200306300001&QueryType=1'; /*订单查询网址*/
$tProductType = '0202'; /*商品种类*/
$tPaymentType ='A'; /*支付类型*/
$tpaymentlinktype ='1'; /*接入类型*/
$tnotifytype = '0'; /*通知方式*/
$tresultnotifyurl ='http://localhost:8080/huahui/MerchantPayment/MerchantResult.php'; /*支付结果地址*/
$tMerchantRemarks = 'Hi!'; /*商家备注*/
$tTotalCount = '1'; /*订单数量*/
$tproductid = "160605"; /*商品ID*/
$tproductname= "HTC s710e"; /*商品名称*/
$tuniteprice ="0.01"; /*商品单价*/
$tqty ="1"; /*购买数量*/
$def_url = '<br /><form style="text-align:center;" method=post action="MerchantPayment/MerchantPayment.php">';
$def_url .= "<input type=HIDDEN name='OrderNo' value='". $tOrderNo."'>";
$def_url .= "<input type=HIDDEN name='OrderDesc' value='". $tOrderDesc."'>";
$def_url .= "<input type=HIDDEN name='OrderDate' value='".$tOrderDate."'>";
$def_url .= "<input type=HIDDEN name='OrderTime' value='".$tOrderTime."'>";
$def_url .= "<input type=HIDDEN name='OrderAmount' value='".$tOrderAmountStr."'>";
$def_url .= "<input type=HIDDEN name='OrderURL' value='".$tOrderURL."'>";
$def_url .= "<input type=HIDDEN name='ProductType' value='".$tProductType."'>";
$def_url .= "<input type=HIDDEN name='PaymentType' value='".$tPaymentType."'>";
$def_url .= "<input type=HIDDEN name='PaymentLinkType' value='".$tpaymentlinktype."'>";
$def_url .= "<input type=HIDDEN name='NotifyType' value='".$tnotifytype."'>";
$def_url .= "<input type=HIDDEN name='ResultNotifyURL' value='".$tresultnotifyurl."'>";
$def_url .= "<input type=HIDDEN name='MerchantRemarks' value='".$tMerchantRemarks."'>";
$def_url .= "<input type=HIDDEN name='TotalCount' value='".$tTotalCount."'>";
$def_url .= "<input type=HIDDEN name='productid[]' value='".$tproductid."'>";
$def_url .= "<input type=HIDDEN name='productname[]' value='".$tproductname."'>";
$def_url .= "<input type=HIDDEN name='uniteprice[]' value='".$tuniteprice."'>";
$def_url .= "<input type=HIDDEN name='qty[]' value='".$tqty."'>";
$def_url .= "<input type=submit value='" .$GLOBALS['_LANG']['pay_button']. "'>";
$def_url .= "</form>";
return $def_url;
}
/**
* 响应操作
*/
function respond()
{
}
}
?>
那么,注意了,respond在这里是不需要写任何代码的,农行数据会直接跳转到tresultnotifyurl 所定义的地址上。二:发送和接收
MerchantPayment/MerchantPayment.php,如下:
<?php
require_once ('../ebusclient/PaymentRequest.php');
$tRequest = new PaymentRequest();
$tRequest->order["PayTypeID"] = "ImmediatePay";//($_POST['PayTypeID']); //设定交易类型
$tRequest->order["OrderNo"] = ($_POST['OrderNo']); //设定订单编号
$tRequest->order["ExpiredDate"] = "30";//($_POST['ExpiredDate']); //设定订单保存时间
$tRequest->order["OrderAmount"] = ($_POST['OrderAmount']);//($_POST['PaymentRequestAmount']); //设定交易金额
$tRequest->order["Fee"] = "";//($_POST['Fee']); //设定手续费金额
$tRequest->order["CurrencyCode"] = "156";//($_POST['CurrencyCode']); //设定交易币种
$tRequest->order["ReceiverAddress"] = "xx";//($_POST['ReceiverAddress']); //收货地址
$tRequest->order["InstallmentMark"] = "0";//($_POST['InstallmentMark']); //分期标识
$installmentMerk = "0";//$_POST['InstallmentMark'];
$paytypeID = "ImmediatePay";//$_POST['PayTypeID'];
if (strcmp($installmentMerk, "1") == 0 && strcmp($paytypeID, "DividedPay") == 0) {
$tRequest->order["InstallmentCode"] = ($_POST['InstallmentCode']); //设定分期代码
$tRequest->order["InstallmentNum"] = ($_POST['InstallmentNum']); //设定分期期数
}
$tRequest->order["BuyIP"] = "";//($_POST['BuyIP']); //IP
$tRequest->order["OrderDesc"] = ($_POST['OrderDesc']); //设定订单说明
$tRequest->order["OrderURL"] = ($_POST['OrderURL']); //设定订单地址
$tRequest->order["OrderDate"] = ($_POST['OrderDate']); //设定订单日期 (必要信息 - YYYY/MM/DD)
date_default_timezone_set('PRC');
$hh = date("H:i:s",time());
$tRequest->order["OrderTime"] = $hh;//($_POST['OrderTime']); //设定订单时间 (必要信息 - HH:MM:SS)
$tRequest->order["orderTimeoutDate"] = "20240619104901";//($_POST['orderTimeoutDate']); //设定订单有效期
$tRequest->order["CommodityType"] = "0202";//($_POST['CommodityType']); //设置商品种类
$orderitem = array ();
$orderitem["SubMerName"] = "HongYue HuaHui"; //设定二级商户名称
$orderitem["SubMerId"] = "12345"; //设定二级商户代码
$orderitem["SubMerMCC"] = "0000"; //设定二级商户MCC码
$orderitem["SubMerchantRemarks"] = "xx"; //二级商户备注项
$orderitem["ProductID"] = "IP000001"; //商品代码,预留字段
$orderitem["ProductName"] = ($_POST['OrderDesc']); //商品名称
$orderitem["UnitPrice"] = "1.00"; //商品总价
$orderitem["Qty"] = "1"; //商品数量
$orderitem["ProductRemarks"] = ($_POST['OrderDesc']); //商品备注项
$orderitem["ProductType"] = "0202"; //商品类型
$orderitem["ProductDiscount"] = "0.9"; //商品折扣
$orderitem["ProductExpiredDate"] = "10"; //商品有效期
$tRequest->orderitems[0] = $orderitem;
//3、生成支付请求对象
$tRequest->request["PaymentType"] = ($_POST['PaymentType']); //设定支付类型
$tRequest->request["PaymentLinkType"] = ($_POST['PaymentLinkType']); //设定支付接入方式
if ($_POST['PaymentType'] === "6" && $_POST['PaymentLinkType'] === "2") {
$tRequest->request["UnionPayLinkType"] = ($_POST['UnionPayLinkType']); //当支付类型为6,支付接入方式为2的条件满足时,需要设置银联跨行移动支付接入方式
}
$tRequest->request["ReceiveAccount"] = "";//($_POST['ReceiveAccount']); //设定收款方账号
$tRequest->request["ReceiveAccName"] = "";//($_POST['ReceiveAccName']); //设定收款方户名
$tRequest->request["NotifyType"] = ($_POST['NotifyType']); //设定通知方式
$tRequest->request["ResultNotifyURL"] = ($_POST['ResultNotifyURL']); //设定通知URL地址
$tRequest->request["MerchantRemarks"] = ($_POST['MerchantRemarks']); //设定附言
$tRequest->request["IsBreakAccount"] = "0"; //($_POST['IsBreakAccount']); //设定交易是否分账
$tRequest->request["SplitAccTemplate"] = "";//($_POST['SplitAccTemplate']); //分账模版编号
$tResponse = $tRequest->postRequest();
//支持多商户配置
//$tResponse = $tRequest->extendPostRequest(2);
if ($tResponse->isSuccess()) {
// print ("<br>Success!!!" . "</br>");
// print ("ReturnCode = [" . $tResponse->getReturnCode() . "]</br>");
// print ("ReturnMsg = [" . $tResponse->getErrorMessage() . "]</br>");
$PaymentURL = $tResponse->GetValue("PaymentURL");
// print ("<br>PaymentURL=$PaymentURL" . "</br>");
echo "<script language='javascript'>";
echo "window.location.href='$PaymentURL'";
echo "</script>";
} else {
print ("<br>对不起,不能重复发起支付, 请重新下单!!!" . "</br>");
//print ("<br>Failed!!!" . "</br>");
//print ("ReturnCode = [" . $tResponse->getReturnCode() . "]</br>");
//print ("ReturnMsg = [" . $tResponse->getErrorMessage() . "]</br>");
}
?>
MerchantPayment/MerchantResult.php,如下:
<?php
define('IN_ECS', true);
require('../includes/init.php');
require_once ('../includes/lib_payment.php');
require_once ('../ebusclient/Result.php');
$tResult = new Result();
$tResponse = $tResult->init($_POST['MSG']);
if ($tResponse->isSuccess()) {
//2、、支付成功
// print ("TrxType = [" . $tResponse->getValue("TrxType") . "]<br/>");
// print ("OrderNo = [" . $tResponse->getValue("OrderNo") . "]<br/>");
// print ("Amount = [" . $tResponse->getValue("Amount") . "]<br/>");
// print ("BatchNo = [" . $tResponse->getValue("BatchNo") . "]<br/>");
// print ("VoucherNo = [" . $tResponse->getValue("VoucherNo") . "]<br/>");
// print ("HostDate = [" . $tResponse->getValue("HostDate") . "]<br/>");
// print ("HostTime = [" . $tResponse->getValue("HostTime") . "]<br/>");
// print ("MerchantRemarks = [" . $tResponse->getValue("MerchantRemarks") . "]<br/>");
// print ("PayType = [" . $tResponse->getValue("PayType") . "]<br/>");
// print ("NotifyType = [" . $tResponse->getValue("NotifyType") . "]<br/>");
new_order_paid($tResponse->getValue("OrderNo"), PS_PAYED, '', '农行支付');
// print ("xxx");
$url = "";
echo "<script language='javascript' type='text/javascript'>";
echo "window.location.href='$url'";
echo "</script>";
} else {
//3、失败
print ("<br>ReturnCode = [" . $tResponse->getReturnCode() . "]<br>");
print ("ErrorMessage = [" . $tResponse->getErrorMessage() . "]<br>");
set_pay_error($tResponse->getValue("OrderNo"), "", $tResponse->getValue("Amount"), '农行支付', $tResponse->getReturnCode());
}
?>
三:安装接下来,我们就需要安装了,
1:首先将文件夹和文件进行覆盖;
2:进入系统后台,点击安装
3:修改证书地址、商户号、密码等,
首先,找到文件:\ebusclient\TrustMerchant.ini,然后把2和4两个证书的路径,改为cert文件夹对应文件的绝对路径。上图3处指需要给接口指定一个日志路径(备注:一定要创建路径)。
至此,我们的ecshop的pc端已经支持农行支付了。
四:关于手机端
echshop的支付只要按照上面进行安装,数据库中就有了记录,如下:
所以,手机端类似,接口文件不需要动了。只不过,需要在mobile目录下一样添加MerchantPayment文件夹,加入发送和接收的文件就可以了。
本文标签:
很赞哦! ()
上一篇:ecshop广告怎么调用
相关教程
- discuz的ecshop的伪静态规则apache+nginx
- ecshop整合discuz的方法
- discuz和ecshop截取字符串函数介绍
- ECShop2.7.2整合Discuz 6.0论坛的步骤方法
- Ecshop和Discuz开源产品有哪些局限性
- ecshop怎么和discuz整合
- phpcmsv9和ecshop2.3.7以及discuzx3.0整合方法
- Nginx常用Rewrite(伪静态规则)WordPress/PHPCMS/ECSHOP/ShopEX/S
- ecshop收货地址199/198号段提示手机号格式不正确!
- ecshop调用商品属性的方法实例
- ecshop支付插件开发教程
- ecshop商品怎么增加新字段
图文教程
ecshop数据库订单状态判断
order_info 表 刚下完订单 order_status 0 shipping_status 0 pay_status 0 取消 order_status 2
ecshop商城会员注册怎么实现注册自动发送邮件
从数据库入手 用mysql管理工具找到 ecs_mail_templates 表插入一条 注册发送邮件的数据template_content 是邮件发邮件内容字段 根据自己的需要编辑不同的内容 当然等你添加成功后
ecshop银联电子支付插件ChinaPay代码示例
本插件不支持境外支付,如需使用境外支付、无卡支付的的朋友请联系我。主程序:/includes/modules/payment/chinapay.php如下:
ecshop订单快递单批量打印二次开发教程
ECSHOP本身是有打印快递单功能的,但是需要一个一个订单的打印,如果订单多了就烦了通过本教程可以实现批量打印快递单
相关源码
-
(自适应响应式)家电维修清晰服务网站pbootcms模板免费下载本模板基于PbootCMS内核开发,为维修服务类企业打造,特别适合家电维修、设备维护等行业使用。通过简洁直观的界面设计,帮助企业快速搭建专业级服务平台,实现线上业务高效管理。查看源码 -
帝国cms大气淘宝客网站源码带手机版带火车头采集本款创意礼物导购网站模板为礼物类电商平台设计,采用清爽简约的界面风格,具备完善的商品导购功能。系统支持在文章攻略中灵活插入商品购买链接,实现内容与电商的结合。查看源码 -
html5响应式pbootcms模板新闻资讯博客网站源码该模板采用PbootCMS内核开发,专为新闻资讯类网站打造,同时具备高度行业适配性--只需替换图文内容即可快速转型为企业官网、行业门户等各类站点。查看源码 -
蓝色工业机械五金设备pbootcms模板源码下载(PC+WAP)为机械制造与五金设备企业设计的响应式网站模板,基于PbootCMS内核开发。采用蓝色工业风格强化行业属性,宽屏布局突出设备细节展示,支持PC与WAP端自适应查看源码 -
帝国CMS7.5漫画网站模板带手机端源码免费下载本模板为漫画内容平台设计开发,采用帝国CMS7.5内核构建,深度优化漫画作品展示结构与章节管理模式。前端采用响应式布局设计,适配各类漫画阅读场景,提供作品分类、连载追踪、热度排行等垂直领域功能模块。查看源码 -
自适应极简风个人博客文章自媒体网站模板基于PbootCMS开源内核开发的极简个人博客模板,采用移动优先设计原则,通过Media Query技术实现320px至1920px六级分辨率适配,确保在手机、平板及PC设备上均呈现良好的视觉体验。查看源码
| 分享笔记 (共有 篇笔记) |
