hxp
2019-08-09 b8db02d69c95fa1f94e304ab6a7714c54517a9e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/python
# -*- coding: GBK -*-
#-------------------------------------------------------------------------------
#
##@package GM.Commands.GMT_CompensationMgr
#
# @todo:²¹³¥¹ÜÀí
# @author hxp
# @date 2018-08-10
# @version 1.0
#
# ÏêϸÃèÊö: ²¹³¥¹ÜÀí
#
#-------------------------------------------------------------------------------
#"""Version = 2018-08-10 12:00"""
#-------------------------------------------------------------------------------
 
 
#µ¼Èë
import DataRecordPack
import PlayerCompensation
import GMCommon
import GameWorld
 
#---------------------------------------------------------------------
 
## Ö´ÐÐÂß¼­
#  @param curPlayer µ±Ç°Íæ¼Ò
#  @param gmCmdDict: ÃüÁî×Öµä
#  @return None
#  @remarks º¯ÊýÏêϸ˵Ã÷.
def OnExec(orderId, gmCmdDict):
    
    GUIDInfo = gmCmdDict.get('GUIDInfo', '')
    operation = GameWorld.ToIntDef(gmCmdDict.get('operation', 0)) # 1-ͨ¹ý£»2-ɾ³ý
    if not GUIDInfo:
        GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_ParamErr)
        return
    operGUIDList = GUIDInfo.split(",")
    if not operGUIDList:
        GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_ParamErr)
        return
        
    if operation not in [1, 2]:
        GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_ParamErr)
        return
    
    successGUIDList = PlayerCompensation.EntireCompensationOper(operGUIDList, operation)
    
    #Ö´Ðгɹ¦
    GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success, {"successGUIDList":successGUIDList})
    #Á÷Ïò
    DataRecordPack.DR_ToolGMOperate(0, '', '', 'GMT_CompensationMgr', str(gmCmdDict))
    return