usrrole2
This commit is contained in:
parent
b575e5e760
commit
3664ae4c3e
|
@ -19,7 +19,7 @@ func NewSalary() *Salary {
|
|||
|
||||
func (s *Salary) List(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsFinance() {
|
||||
if !sess.GetAdmin().GetConfig().IsFinance() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
var req api.ListSalaryReq
|
||||
|
@ -30,7 +30,7 @@ func (s *Salary) List(ctx *gin.Context) {
|
|||
|
||||
func (s *Salary) Create(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsFinance() {
|
||||
if !sess.GetAdmin().GetConfig().IsFinance() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
var req api.CreateSalaryReq
|
||||
|
@ -42,7 +42,7 @@ func (s *Salary) Create(ctx *gin.Context) {
|
|||
|
||||
func (s *Salary) Update(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsFinance() {
|
||||
if !sess.GetAdmin().GetConfig().IsFinance() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
var req api.UpdateSalaryReq
|
||||
|
@ -54,7 +54,7 @@ func (s *Salary) Update(ctx *gin.Context) {
|
|||
|
||||
func (s *Salary) Pay(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsFinance() {
|
||||
if !sess.GetAdmin().GetConfig().IsFinance() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
var req api.PaySalaryReq
|
||||
|
@ -66,7 +66,7 @@ func (s *Salary) Pay(ctx *gin.Context) {
|
|||
|
||||
func (s *Salary) Delete(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsFinance() {
|
||||
if !sess.GetAdmin().GetConfig().IsFinance() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
id := cast.ToInt64(ctx.Query("id"))
|
||||
|
|
|
@ -54,7 +54,7 @@ func (s *Staff) List(ctx *gin.Context) {
|
|||
|
||||
func (s *Staff) Create(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsHr() {
|
||||
if !sess.GetAdmin().GetConfig().IsHr() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
|
||||
|
@ -67,7 +67,7 @@ func (s *Staff) Create(ctx *gin.Context) {
|
|||
|
||||
func (s *Staff) Update(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsHr() {
|
||||
if !sess.GetAdmin().GetConfig().IsHr() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
var req api.StaffUpdateReq
|
||||
|
@ -80,7 +80,7 @@ func (s *Staff) Update(ctx *gin.Context) {
|
|||
|
||||
func (s *Staff) Delete(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsHr() {
|
||||
if !sess.GetAdmin().GetConfig().IsHr() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
|
||||
|
@ -91,7 +91,7 @@ func (s *Staff) Delete(ctx *gin.Context) {
|
|||
|
||||
func (s *Staff) Pay(ctx *gin.Context) {
|
||||
sess := ctx.Keys[session.ContextSession].(*session.AdminSession)
|
||||
if sess.GetAdmin().GetConfig().IsFinance() {
|
||||
if !sess.GetAdmin().GetConfig().IsFinance() {
|
||||
panic(config.ErrPriv.New())
|
||||
}
|
||||
var req api.StaffPayReq
|
||||
|
|
Loading…
Reference in New Issue