Commit e6a62032 by 李定达

1.修改版本号;2.更丰富的冲正类型

parent 887c52d4
......@@ -228,7 +228,8 @@ bool Control::SendMessageToServer(const QJsonObject &json, QByteArray &outdata,
if(!_isinterrupt && !isOk) {
//如果没有点击取消支付按钮直接写数据库异步冲正
if(tmpjson.contains(JSON_KEY_REQTYPE) && tmpjson[JSON_KEY_REQTYPE].toInt() == 72)
if(tmpjson.contains(JSON_KEY_REQTYPE) && (tmpjson[JSON_KEY_REQTYPE].toInt() == 72 ||
(tmpjson[JSON_KEY_REQTYPE].toInt() >= 300 && tmpjson[JSON_KEY_REQTYPE].toInt() <= 400)))
{
// QVariantHash hash;
......
......@@ -5,7 +5,7 @@
#define VER_MINOR 2
#define VER_REVISION 7
#define VER_BUILD 4
#define VER_BUILD 5
//! Convert version numbers to string
#define _STR(S) #S
......@@ -20,7 +20,7 @@
#define RES_STR_FILE_VER MAK_VER(VER_MAJOR, VER_MINOR, VER_REVISION, VER_BUILD)
#define RES_STR_PRODUCT_VER MAK_VER(VER_MAJOR, VER_MINOR, VER_REVISION, VER_BUILD)
#define RES_COMPANY_NAME "上海非码网络科技有限公司\0"
#define RES_COPYRIGHT "Freemud Ltd. Copyright (C) 2014-2018\0"
#define RES_COPYRIGHT "Freemud Ltd. Copyright (C) 2014-2019\0"
#define RES_FILE_DESC "sbkpay(1438)\0"
#define RES_INTER_NAME "sbkpay\0"
#define RES_FILE_NAME "sbkpay\0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment