This commit is contained in:
jiangyong27 2025-03-27 19:29:57 +08:00
parent 901f1dc4da
commit d7c3256850
3 changed files with 3 additions and 7 deletions

View File

@ -56,7 +56,7 @@ type StaffPayReq struct {
StaffId string `json:"staff_id"`
PayType string `json:"pay_type"`
Title string `json:"title"`
Amount string `json:"amount"`
Amount int64 `json:"amount"`
}
type StaffUpdateReq struct {

View File

@ -35,6 +35,7 @@ func initRoutge(engine *gin.Engine) {
apiGroup.GET("/staff/salary", controller.NewSalary().List)
apiGroup.POST("/staff/salary", controller.NewSalary().Create)
apiGroup.POST("/staff/salary/pay", controller.NewSalary().Pay)
apiGroup.POST("/salary/pay", controller.NewSalary().Pay)
apiGroup.PUT("/staff/salary", controller.NewSalary().Update)
apiGroup.DELETE("/staff/salary", controller.NewSalary().Delete)

View File

@ -194,15 +194,10 @@ func (s *StaffUser) Pay(sess *session.AdminSession, req *api.StaffPayReq) {
session.CheckDBError(err)
session.CheckNilError(corp, "企业不存在")
var payReq api.PayReq
payReq.Title = req.Title
payReq.Amount = cast.ToInt64(req.Amount)
user, err := dao.NewStaffUserDao().Get(cast.ToInt64(req.StaffId))
session.CheckDBError(err)
session.CheckNilError(user, "用户不存在")
log.Errorf("pay user[%s] amount[%s]", user.Username, goutil.FormatMoney(cast.ToInt64(req.Amount)))
return
NewPay().Pay(corp, user, req.Title, req.PayType, cast.ToInt64(req.Amount))
}