fix
This commit is contained in:
parent
8950b008e6
commit
7e5c721c97
|
@ -2263,19 +2263,17 @@ func (s *Service) ApiGetZoneListByMid(ctx *gin.Context, req *zoneproto.ApiListBy
|
|||
return
|
||||
}
|
||||
zid := list[0].GetId()
|
||||
if zu, ok := zidZuMap[zid]; ok && (time.Now().Unix()-zu.GetAdmissionCt() < 3600*2) {
|
||||
zidZuMapTmp, _ := _DefaultVas.GetZoneUnlockMapByMidZids(ctx, req.BaseRequest.Mid, []int64{zid})
|
||||
logger.Info("_ZU mid: %v, zid: %v, zidZuMapTmp: %v", req.BaseRequest.Mid, zid, util.ToJson(zidZuMapTmp))
|
||||
if zu, ok := zidZuMapTmp[zid]; ok {
|
||||
logger.Info("_ZU mid: %v, zid: %v, zu: %v", req.BaseRequest.Mid, zid, util.ToJson(zu))
|
||||
if time.Now().Unix()-zu.GetAdmissionCt() < 3600*2 {
|
||||
refundEnable = 1
|
||||
}
|
||||
|
||||
// 退款状态
|
||||
if _, ok := zidZuMap[zid]; !ok {
|
||||
return
|
||||
}
|
||||
admissionOrderId := zidZuMap[zid].GetAdmissionOrderId()
|
||||
order, _ := _DefaultVas.GetOrderById(ctx, nil, admissionOrderId)
|
||||
if order.GetOrderStatus() == dbstruct.VasOrderStatusRefund {
|
||||
if zu.GetAdmissionUnlockType() == dbstruct.ZoneUnlockTypeRefund {
|
||||
refundStatus = zoneproto.AdmissionRefundStatusFinish
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
|
|
@ -271,7 +271,7 @@ func (s *Service) chListCharge(ctx *gin.Context, chList []*dbstruct.ConsumeHisto
|
|||
Ct: util.DerefInt64(chDB.Ct),
|
||||
}
|
||||
changeMark := "-"
|
||||
if chDB.GetChange() > 0 {
|
||||
if chDB.GetChange() >= 0 {
|
||||
changeMark = "+"
|
||||
}
|
||||
switch chDB.GetSType() {
|
||||
|
@ -320,7 +320,7 @@ func (s *Service) chListIncome(ctx *gin.Context, chList []*dbstruct.ConsumeHisto
|
|||
Ct: util.DerefInt64(chDB.Ct),
|
||||
}
|
||||
changeMark := "-"
|
||||
if chDB.GetChange() > 0 {
|
||||
if chDB.GetChange() >= 0 {
|
||||
changeMark = "+"
|
||||
}
|
||||
switch chDB.GetSType() {
|
||||
|
|
Loading…
Reference in New Issue