order.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package api
  2. import (
  3. "3dshow-customer/db/model"
  4. "3dshow-customer/db/repo"
  5. "errors"
  6. "fmt"
  7. "time"
  8. "github.com/gin-gonic/gin"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. )
  11. // 产品管理
  12. func Order(r *GinRouter) {
  13. r.POSTJWT("/order/createBatch", OrderAddBatch)
  14. r.GETJWT("/order/list", OrderList)
  15. r.POSTJWT("/order/cancelOrComplete/:id", OrderCancelOrComplete)
  16. r.GETJWT("/order/detail/:id", OrderDetail)
  17. r.GETJWT("/order/count", OrderCount)
  18. }
  19. // 批量新增订单
  20. func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  21. var orders []*model.OrderAddReq
  22. err := c.ShouldBindJSON(&orders)
  23. if err != nil {
  24. fmt.Println(err)
  25. return nil, errors.New("参数错误!")
  26. }
  27. ctx := apictx.CreateRepoCtx()
  28. _userId := apictx.User.ID
  29. userId, _ := primitive.ObjectIDFromHex(_userId)
  30. if len(orders) < 1 {
  31. return nil, errors.New("购物车为空")
  32. }
  33. for _, v := range orders {
  34. order := &model.Order{}
  35. order.UserId = userId
  36. order.SupplyId = v.Supply.Id
  37. order.Address = v.Address
  38. // order.Products
  39. // 组装商品和设置默认状态
  40. if len(v.Products) > 0 {
  41. for _, p := range v.Products {
  42. order.Products = append(order.Products, &model.OrderProduct{
  43. Id: primitive.NewObjectID(),
  44. ProductId: p.ProductId,
  45. SupplyId: p.SupplyId,
  46. Name: p.Name,
  47. Size: p.Size,
  48. Color: p.Color,
  49. Unit: p.Unit,
  50. Cover: p.Cover,
  51. ExpressNo: "",
  52. Status: -1,
  53. })
  54. // 加入购物车后 删除购物车对应商品
  55. repo.RepoDeleteDoc(ctx, repo.CollectionShopCart, p.Id.Hex())
  56. }
  57. }
  58. order.DeliveryMethod = v.DeliveryMethod
  59. order.Remark = v.Remark
  60. order.Status = -1
  61. order.IsCancel = 1
  62. order.CreateTime = time.Now()
  63. repo.RepoAddDoc(ctx, repo.CollectionOrder, order)
  64. }
  65. return true, nil
  66. }
  67. // 订单列表
  68. func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  69. page, size, query := UtilQueryPageSize(c)
  70. _userId := apictx.User.ID
  71. userId, _ := primitive.ObjectIDFromHex(_userId)
  72. query["userId"] = userId
  73. result, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  74. CollectName: repo.CollectionOrder,
  75. Page: page,
  76. Size: size,
  77. Query: query,
  78. Project: []string{"createTime", "userId", "supplyId", "products"},
  79. Sort: repo.Map{"createTime": -1},
  80. })
  81. if len(result.List) > 0 {
  82. for _, v := range result.List {
  83. supplyId := v["supplyId"].(primitive.ObjectID)
  84. supply := model.UserSmaple{}
  85. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  86. Db: "supply-user",
  87. CollectName: "users",
  88. Query: repo.Map{"_id": supplyId},
  89. }, &supply)
  90. v["supplyName"] = supply.Name
  91. }
  92. }
  93. return result, err
  94. }
  95. // 个人页面数量展示
  96. func OrderCount(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
  97. _userId := apictx.User.ID
  98. userId, _ := primitive.ObjectIDFromHex(_userId)
  99. statusArray := []int{-1, 1, 2, 3}
  100. resMap := make(map[int]int64)
  101. // var ret []int64
  102. ctx := apictx.CreateRepoCtx()
  103. for _, v := range statusArray {
  104. query := repo.Map{"userId": userId, "status": v}
  105. res, _ := repo.RepoCountDoc(ctx, repo.CollectionOrder, query)
  106. // ret = append(ret, res)
  107. resMap[v] = res
  108. }
  109. return resMap, nil
  110. }
  111. // 订单取消和完成操作
  112. func OrderCancelOrComplete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  113. // 订单中每个商品都处于未发货状态
  114. _id := c.Param("id")
  115. if len(_id) < 1 {
  116. return nil, errors.New("id不能为空")
  117. }
  118. orderId, err := primitive.ObjectIDFromHex(_id)
  119. if err != nil {
  120. return nil, errors.New("id非法")
  121. }
  122. order := model.Order{}
  123. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  124. CollectName: repo.CollectionOrder,
  125. Query: repo.Map{"_id": orderId},
  126. }, &order)
  127. if !found || err != nil {
  128. return nil, errors.New("未找到该订单数据")
  129. }
  130. if len(order.Products) < 1 {
  131. return nil, errors.New("该订单为空")
  132. }
  133. // 操作人非订单所属人
  134. if order.UserId.Hex() != apictx.User.ID {
  135. return nil, errors.New("非法操作")
  136. }
  137. statusMap := map[int]struct{}{}
  138. for _, v := range order.Products {
  139. statusMap[v.Status] = struct{}{}
  140. }
  141. // 状态为一种
  142. if len(statusMap) == 1 {
  143. // 且都为未发货状态时 可以取消订单
  144. // 取消流程
  145. if _, ok := statusMap[-1]; ok && order.Status == -1 {
  146. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, _id, &model.Order{Status: 3, IsCancel: -1})
  147. }
  148. // 且都为已发货状态时 可以取消订单
  149. // 完成流程
  150. if _, ok := statusMap[1]; ok && order.Status == 1 {
  151. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, _id, &model.Order{Status: 2, IsCancel: -1})
  152. }
  153. }
  154. return nil, errors.New("该订单不满足取消或完成操作")
  155. }
  156. // 订单信息
  157. func OrderDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  158. _id := c.Param("id")
  159. if len(_id) < 1 {
  160. return nil, errors.New("id不能为空")
  161. }
  162. orderId, err := primitive.ObjectIDFromHex(_id)
  163. if err != nil {
  164. return nil, errors.New("非法id")
  165. }
  166. ok, result := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  167. CollectName: repo.CollectionOrder,
  168. Query: repo.Map{"_id": orderId},
  169. })
  170. if !ok {
  171. return nil, errors.New("数据未找到")
  172. }
  173. // 供应链信息
  174. supply := model.UserSmaple{}
  175. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  176. Db: "supply-user",
  177. CollectName: "users",
  178. Query: repo.Map{"_id": result["supplyId"].(primitive.ObjectID)},
  179. }, &supply)
  180. result["supply"] = supply
  181. return result, nil
  182. }