1 Star 0 Fork 8

黑皮/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SpecTradeCodeConv.c 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-03-17 14:03 . ʼ1.2汾
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: 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;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LaoGun/Xipkpublib_Update.git
git@gitee.com:LaoGun/Xipkpublib_Update.git
LaoGun
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助