代码拉取完成,页面将自动刷新
同步操作将从 icesky1stm/Xipkpublib_Update 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: SpecTradeCodeConv.c
* 程序功能: 特殊交易代码转换
* 输入参数:
* xipId 渠道标识
* frmTrCode 转换前交易代码
* 输出参数:
* frmMsgId 来源MSGID
* locTrCode 本地交易代码
* retTrCode 返回交易代码
* retMsgId 返回MSGID
* errTrCode 异常错误返回交易代码
* otherCode 其他代码
* 返 回 值:
* =0 成功
* !0 失败
* 作 者: yangwc
* 开发日期: 2007/1
* 修 改 人:
* 修改日期:
*******************************************************/
#include "kernel/syspub.h"
#include "kernel/tabincl/xip_trdcodeconv_c.h"
int SpecTradeCodeConv(char *xipId, char *frmTrCode, char *frmMsgId, char *locTrCode, char *retTrCode, char *retMsgId, char *errTrCode, char *otherCode)
{
struct xip_trdcodeconv_c conv;
char reply[7];
int ret = 0;
memset(&conv, 0x00, sizeof(struct xip_trdcodeconv_c));
memset(reply, 0x00, sizeof(reply));
ret = Xip_trdcodeconv_Sel(reply, &conv, "xip_id='%s' and xip_frmtrcode='%s'", xipId, frmTrCode);
if ( ret )
{
XIPLOG("E", "取交易码转换错误[%d][%s][%s]", ret, xipId, frmTrCode);
return -5;
}
strtrim(conv.xip_frmmsgid);
strtrim(conv.xip_loctrcode);
strtrim(conv.xip_rettrcode);
strtrim(conv.xip_retmsgid);
strtrim(conv.xip_errtrcode);
strtrim(conv.xip_othercode);
if (frmMsgId != NULL)
strcpy(frmMsgId, conv.xip_frmmsgid);
if (locTrCode != NULL)
strcpy(locTrCode, conv.xip_loctrcode);
if (retTrCode != NULL)
strcpy(retTrCode, conv.xip_rettrcode);
if (retMsgId != NULL)
strcpy(retMsgId, conv.xip_retmsgid);
if (errTrCode != NULL)
strcpy(errTrCode, conv.xip_errtrcode);
if (otherCode != NULL)
strcpy(otherCode, conv.xip_othercode);
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。