- 新增,修改门店时,自动创建门店用户

This commit is contained in:
gazebo
2019-07-23 17:13:30 +08:00
parent e13a2d2427
commit 8ab0443293
3 changed files with 24 additions and 1 deletions

View File

@@ -83,10 +83,21 @@ func BindMobile2Store(ctx *jxcontext.Context, mobile string, storeID int) (num i
if err = err2; err == nil || err == orm.ErrNoRows {
user.JxStoreID = storeID
if err == nil {
// todo transaction
dao.Begin(db)
defer func() {
if r := recover(); r != nil {
dao.Rollback(db)
panic(r)
}
}()
if num, err = dao.UpdateEntity(db, user, "JxStoreID"); err == nil {
err = dao.SetWeiXinsEmpty2Null(db, user)
}
if err != nil {
dao.Rollback(db)
} else {
dao.Commit(db)
}
} else {
dao.WrapAddIDCULEntity(user, ctx.GetUserName())
user.ParentID = -1
@@ -140,6 +151,9 @@ func ChangeMobile(ctx *jxcontext.Context, curMobile, expectedMobile string) (num
}
func verifyMobileIsBlank(db *dao.DaoDB, mobile string) (user *legacymodel.WeiXins, err error) {
if !jxutils.IsStringLikeMobile(mobile) {
return nil, fmt.Errorf("%s看起来不像是一个手机号", mobile)
}
user = &legacymodel.WeiXins{
Tel: mobile,
}