huangjiajun 7 mesi fa
parent
commit
89672a8796
1 ha cambiato i file con 6 aggiunte e 2 eliminazioni
  1. +6
    -2
      rule/consume_integral_settlement.go

+ 6
- 2
rule/consume_integral_settlement.go Vedi File

@@ -364,8 +364,10 @@ func DealUserConsumeIntegral(session *xorm.Session, subsidyWithUser *model.Subsi
balanceAmount := subsidyWithUser.LeaveDay
afterAmount := balanceAmount - 1
isEnd := 0
if afterAmount <= 0 {
if afterAmount < 0 {
isEnd = 1
}
if afterAmount <= 0 {
afterAmount = 0
subsidyWithUser.State = 3 //补贴完
}
@@ -441,8 +443,10 @@ func DealUserExperienceIntegral(session *xorm.Session, subsidyWithUser *model.Su
balanceAmount := subsidyWithUser.LeaveDay
afterAmount := balanceAmount - 1
isEnd := 0
if afterAmount <= 0 {
if afterAmount < 0 {
isEnd = 1
}
if afterAmount <= 0 {
afterAmount = 0
subsidyWithUser.State = 3 //补贴完
}


Caricamento…
Annulla
Salva