|
@@ -40,6 +40,31 @@ func Address(r *GinRouter) {
|
|
|
return entity, nil
|
|
|
},
|
|
|
OnUpdate: func(c *gin.Context, apictx *ApiSession, entity interface{}) {
|
|
|
+ address := entity.(*model.Address)
|
|
|
+ _userId := apictx.User.ID
|
|
|
+ userId, err := primitive.ObjectIDFromHex(_userId)
|
|
|
+ if err != nil {
|
|
|
+ invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
|
|
|
+ userId = invalidId
|
|
|
+ }
|
|
|
+ // 更改默认地址的流程
|
|
|
+ if address.Defualt == 1 {
|
|
|
+ // 将已有的默认地址更改为非默认
|
|
|
+ opt := repo.DocSearchOptions{
|
|
|
+ CollectName: repo.CollectionAddress,
|
|
|
+ Query: repo.Map{"userId": userId, "defualt": 1},
|
|
|
+ Project: []string{"_id"},
|
|
|
+ }
|
|
|
+ defs := make([]*model.Address, 0)
|
|
|
+ repo.RepoSeachDoc(apictx.CreateRepoCtx(), &opt, &defs)
|
|
|
+ if len(defs) > 0 {
|
|
|
+ for _, v := range defs {
|
|
|
+ // 设置为非默认
|
|
|
+ repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionAddress, v.Id.Hex(), &model.Address{Defualt: -1})
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
},
|
|
|
EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
|