|
@@ -0,0 +1,72 @@
|
|
|
+package api
|
|
|
+
|
|
|
+import (
|
|
|
+ "3dshow/db/model"
|
|
|
+ "3dshow/db/repo"
|
|
|
+ "errors"
|
|
|
+ "time"
|
|
|
+
|
|
|
+ "github.com/gin-gonic/gin"
|
|
|
+ "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
+)
|
|
|
+
|
|
|
+func ShopCart(r *GinRouter) {
|
|
|
+
|
|
|
+ CreateCRUD(r, "/shopCart", &CRUDOption{
|
|
|
+ Collection: repo.CollectionShopCart,
|
|
|
+ NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ entity := &model.ShopCart{}
|
|
|
+ err := c.ShouldBindJSON(entity)
|
|
|
+ if err != nil {
|
|
|
+ return nil, errors.New("参数错误")
|
|
|
+ }
|
|
|
+ if len(entity.SupplyId) < 12 {
|
|
|
+ return nil, errors.New("供应链id错误")
|
|
|
+ }
|
|
|
+ if len(entity.ProductId) < 12 {
|
|
|
+ return nil, errors.New("商品id错误")
|
|
|
+ }
|
|
|
+ entity.CreateTime = time.Now()
|
|
|
+ _userId := apictx.User.ID
|
|
|
+ userId, _ := primitive.ObjectIDFromHex(_userId)
|
|
|
+ entity.UserId = userId
|
|
|
+
|
|
|
+ return entity, nil
|
|
|
+ },
|
|
|
+ EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
|
|
|
+ return &model.ShopCart{}
|
|
|
+ },
|
|
|
+ JWT: true,
|
|
|
+ SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
|
|
|
+ _userId := apictx.User.ID
|
|
|
+ userId, _ := primitive.ObjectIDFromHex(_userId)
|
|
|
+ query["userId"] = userId
|
|
|
+ return query
|
|
|
+ },
|
|
|
+ OnUpdate: func(_ *gin.Context, _ *ApiSession, entity interface{}) {
|
|
|
+ ety := entity.(*model.ShopCart)
|
|
|
+ ety.UpdateTime = time.Now()
|
|
|
+ },
|
|
|
+ SearchPostProcess: func(page *repo.PageResult, _ *gin.Context, apictx *ApiSession, _ map[string]interface{}) (interface{}, error) {
|
|
|
+ // 查询组装数据
|
|
|
+ if len(page.List) > 0 {
|
|
|
+ for _, v := range page.List {
|
|
|
+ // 查询产品信息
|
|
|
+ supplyId := v["supplyId"].(primitive.ObjectID)
|
|
|
+ supply := model.Supply{}
|
|
|
+ // 供应商信息
|
|
|
+ repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
+ CollectName: repo.CollectionSupply,
|
|
|
+ Query: repo.Map{"_id": supplyId},
|
|
|
+ Project: []string{"name", "avatar", "contact"},
|
|
|
+ }, &supply)
|
|
|
+ v["supplyName"] = supply.Name
|
|
|
+ v["supplyAvatar"] = supply.Avatar
|
|
|
+ v["supplyContact"] = supply.Contact
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return page, nil
|
|
|
+ },
|
|
|
+ })
|
|
|
+}
|