plog
This commit is contained in:
parent
096b29f2a3
commit
dba365ff16
|
@ -85,6 +85,13 @@ func (p *Pay) Pay(corp *model.Corp, user *model.StaffUser, title, payType string
|
|||
panic(config.ErrInternal.New().Append(err))
|
||||
}
|
||||
|
||||
plog := new(model.StaffPayLog)
|
||||
plog.Title = title
|
||||
plog.PayType = realPayType
|
||||
plog.StaffId = user.Id
|
||||
plog.Amount = amount
|
||||
dao.NewStaffPayLogDao().Create(plog)
|
||||
|
||||
global.SendMessage([]string{"jiangyong"}, strings.Join(message, "\n"))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue