40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
|
|
QuotaLogData = class("QuotaLogData");
|
|
|
|
local quotaType
|
|
function QuotaLogData:SetLogData(data)
|
|
self.value = data.value
|
|
self.time = data.time
|
|
quotaType=data.type
|
|
|
|
local _QuotaType = QuotaCardProxy.Type
|
|
if(_QuotaType.Charge == quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_LogDesc_Charge
|
|
elseif(_QuotaType.Give == quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_LogDesc_Give
|
|
elseif(_QuotaType.Auction == quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_LogDesc_Auction
|
|
elseif(_QuotaType.AuctionBack == quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_LogDesc_AuctionBack
|
|
elseif(_QuotaType.Lottery ==quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_Lottery
|
|
elseif (_QuotaType.GuildBox == quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_GuildBox
|
|
elseif (_QuotaType.WeddingDress == quotaType)then
|
|
self.logTitle = ZhString.QuotaCard_WeddingDress
|
|
elseif _QuotaType.BoothLock == quotaType then
|
|
self.logTitle = ZhString.QuotaCard_BoothLock
|
|
elseif _QuotaType.BoothUnLock == quotaType then
|
|
self.logTitle = ZhString.QuotaCard_BoothUnLock
|
|
elseif _QuotaType.BoothCost == quotaType then
|
|
self.logTitle = ZhString.QuotaCard_BoothCost
|
|
elseif _QuotaType.ExchangeGiveLock == quotaType then
|
|
self.logTitle = ZhString.QuotaCard_ExchangeGiveLock
|
|
elseif _QuotaType.ExchangeGiveUnLock == quotaType then
|
|
self.logTitle = ZhString.QuotaCard_ExchangeGiveUnLock
|
|
elseif _QuotaType.ExchangeGiveCost == quotaType then
|
|
self.logTitle = ZhString.QuotaCard_ExchangeGiveCost
|
|
end
|
|
end
|
|
|