From 01e033a79a5ce63e298015d0783560a77ccffea9 Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期五, 14 九月 2018 11:46:46 +0800 Subject: [PATCH] fix:3543 【后端】【主干】【1.0.15】开服红包优化 每天赠送次数 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py index d1be380..6474a7f 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py @@ -25,6 +25,7 @@ import GMCommon import ShareDefine import PlayerControl +import IpyGameDataPY #--------------------------------------------------------------------- #全局变量 #--------------------------------------------------------------------- @@ -50,7 +51,21 @@ changeCoinPointBefore = curPlayer.GetChangeCoinPointTotal() bourseMoneyBefore = PlayerControl.GetMoney(curPlayer, ShareDefine.TYPE_Price_BourseMoney) - if value.isdigit(): + errorMsg = "" + orderInfoIpyData = None + if appID: + orderInfoIpyData = IpyGameDataPY.GetIpyGameDataNotLog("OrderInfo", value, appID) + if not orderInfoIpyData: + Result = GMCommon.Def_ParamErr + errorMsg = "Can not found the orderInfo(%s) and appID(%s)!" % (value, appID) + + if errorMsg: + GameWorld.Log("GMT_CTG, errorMsg=%s" % errorMsg) + resultMsg = str([orderId, errorMsg, 'GMT_CTG', Result]) + GameWorld.GetPlayerManager().GameServer_QueryPlayerResult(0, 0, 0, 'GMToolResult', resultMsg, len(resultMsg)) + return + + if not orderInfoIpyData and value.isdigit(): orderRMB = int(value) PlayerCoin.PlayerCoinToGoldEx(curPlayer, orderRMB, ChConfig.Def_GiveMoney_GMTCTG, isAddBourseMoney) else: -- Gitblit v1.8.0