This commit is contained in:
jiangyong27 2025-04-08 12:21:42 +08:00
parent ab9e7da5db
commit ea5a93a94d
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ func (s *Salary) SyncStaffSalary(ctx *gin.Context) {
func (s *Salary) Bill(ctx *gin.Context) {
id := ctx.Query("id")
test := ctx.Query("test")
test := cast.ToBool(ctx.Query("test"))
realId := goutil.DecryptID(id, "@@salary@@")
service.NewStaffSalary().Bill(realId, test, ctx)
}