ソースを参照

Merge branch 'master' of http://8.136.199.33:3000/hongze/hongze_cygx into debug

xingzai 7 ヶ月 前
コミット
fff1ca1f1d
2 ファイル変更4 行追加1 行削除
  1. 3 0
      models/wx_user.go
  2. 1 1
      services/rai_serve_count.go

+ 3 - 0
models/wx_user.go

@@ -578,6 +578,9 @@ func GetWxUserListByUserIds(userIds string) (list []*WxUserItem, err error) {
 // GetWxUserListByUserIdsArr 根据用户ID集合获取用户
 func GetWxUserListByUserIdsArr(userIds []int) (list []*WxUserItem, err error) {
 	lenArr := len(userIds)
+	if lenArr == 0 {
+		return
+	}
 	o := orm.NewOrmUsingDB("weekly_report")
 	sql := ` SELECT u.*, c.company_name FROM wx_user AS u
 			INNER JOIN company AS c ON c.company_id = u.company_id 

+ 1 - 1
services/rai_serve_count.go

@@ -566,7 +566,7 @@ func UpdateCygxRaiServeBillByCompanyIds() (err error) {
 		}
 		ListUser, e := models.GetWxUserListByUserIdsArr(userIds)
 		if e != nil {
-			err = errors.New("GetCygxRaiServeBillListAll, Err: " + e.Error())
+			err = errors.New("GetWxUserListByUserIdsArr, Err: " + e.Error())
 			return
 		}
 		mapUserName := make(map[int]string)