Sfoglia il codice sorgente

fix:新增外部id的校验

Roc 1 anno fa
parent
commit
71a45af2d6
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6 0
      logic/xiangyu/user.go

+ 6 - 0
logic/xiangyu/user.go

@@ -372,6 +372,12 @@ func handleUser(xyUserInfo xiangyu.UserData, xyUserId string, departmentMap map[
 			userInfo.RealName = xyUserInfo.FullName
 		}
 
+		// 外部id
+		if userInfo.OutID == `` {
+			updateColList = append(updateColList, "OutID")
+			userInfo.OutID = xyUserId
+		}
+
 		if len(updateColList) > 0 {
 			updateColList = append(updateColList, "LastUpdatedTime")
 			userInfo.LastUpdatedTime = time.Now()