Commit 0c03419e authored by chenweijian's avatar chenweijian

err

parent b6b9a778
......@@ -2,6 +2,7 @@ package myerr
import (
"fmt"
"git.hilo.cn/hilo-common/myerr"
"git.hilo.cn/hilo-common/mylogrus"
"github.com/pkg/errors"
"strconv"
......@@ -225,3 +226,7 @@ func WrapErr(err error) error {
return errors.Wrap(err, "")
}
}
func ToLocal(err *myerr.BusinessError) error {
return NewBusinessCode(err.GetCode(), err.GetMsg(), BusinessData{})
}
......@@ -156,7 +156,7 @@ func ReplyCpInvite(c *gin.Context) (*mycontext.MyContext, error) {
return myCtx, err
}
if cpRecord == nil || cpRecord.Id == 0 {
return myCtx, msg.GetErrByLanguage(model, common.MSG_ID_ALREADY_EXPIRED, lang, comerr.AlreadyExpired)
return myCtx, myerr.ToLocal(msg.GetErrByLanguage(model, common.MSG_ID_ALREADY_EXPIRED, lang, comerr.AlreadyExpired))
}
if optType == 1 { // 接受的时候
......@@ -316,7 +316,7 @@ func ReplyCpCancel(c *gin.Context) (*mycontext.MyContext, error) {
return myCtx, err
}
if cpCancel == nil || cpCancel.Id == 0 {
return myCtx, msg.GetErrByLanguage(model, common.MSG_ID_ALREADY_EXPIRED, lang, comerr.AlreadyExpired)
return myCtx, myerr.ToLocal(msg.GetErrByLanguage(model, common.MSG_ID_ALREADY_EXPIRED, lang, comerr.AlreadyExpired))
}
if optType == 1 { // 撤销,只有自己能撤销自己的申请
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment