ソースを参照

更新

master
huangjiajun 7ヶ月前
コミット
89672a8796
1個のファイルの変更6行の追加2行の削除
  1. +6
    -2
      rule/consume_integral_settlement.go

+ 6
- 2
rule/consume_integral_settlement.go ファイルの表示

@@ -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 //补贴完
}


読み込み中…
キャンセル
保存