order.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package api
  2. import (
  3. "3dshow/db/model"
  4. "3dshow/db/repo"
  5. "errors"
  6. "time"
  7. "github.com/gin-gonic/gin"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. )
  10. // 产品管理
  11. func Order(r *GinRouter) {
  12. r.POSTJWT("/order/create", OrderAdd)
  13. r.GETJWT("/order/list", OrderList)
  14. r.POSTJWT("/order/update", OrderUpdate)
  15. r.GETJWT("/order/detail/:id", OrderDetail)
  16. r.POSTJWT("/order/delete/:id", OrderDelete)
  17. r.GETJWT("/order/count", OrderCount)
  18. }
  19. // 新增订单
  20. func OrderAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  21. var form model.Order
  22. err := c.ShouldBindJSON(&form)
  23. if err != nil {
  24. return nil, errors.New("参数错误!")
  25. }
  26. ctx := apictx.CreateRepoCtx()
  27. _userId := apictx.User.ID
  28. userId, err := primitive.ObjectIDFromHex(_userId)
  29. if err != nil {
  30. return nil, errors.New("非法用户")
  31. }
  32. for _, v := range form.Products {
  33. v.Status = -1
  34. }
  35. form.UserId = userId
  36. form.Status = -1
  37. form.CreateTime = time.Now()
  38. form.UpdateTime = time.Now()
  39. return repo.RepoAddDoc(ctx, repo.CollectionOrder, &form)
  40. }
  41. // 订单列表
  42. func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  43. // customer
  44. // supplier
  45. page, size, query := UtilQueryPageSize(c)
  46. _userId := apictx.User.ID
  47. userId, err := primitive.ObjectIDFromHex(_userId)
  48. if err != nil {
  49. return nil, errors.New("非法用户")
  50. }
  51. // if apictx.User.Role == "customer"{
  52. query["userId"] = userId
  53. // }
  54. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  55. CollectName: repo.CollectionOrder,
  56. Page: page,
  57. Size: size,
  58. Query: query,
  59. // Project: []string{},
  60. // Sort: repo.Map{"createTime": -1},
  61. })
  62. }
  63. // 个人页面数量展示
  64. func OrderCount(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
  65. _userId := apictx.User.ID
  66. userId, err := primitive.ObjectIDFromHex(_userId)
  67. if err != nil {
  68. return nil, errors.New("非法用户")
  69. }
  70. statusArray := []int{-1, 1, 2, 3}
  71. resMap := make(map[int]int64)
  72. // var ret []int64
  73. ctx := apictx.CreateRepoCtx()
  74. for _, v := range statusArray {
  75. query := repo.Map{"userId": userId, "status": v}
  76. res, _ := repo.RepoCountDoc(ctx, repo.CollectionOrder, query)
  77. // ret = append(ret, res)
  78. resMap[v] = res
  79. }
  80. return resMap, nil
  81. }
  82. // 更新订单 发货
  83. func OrderUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  84. var form model.Order
  85. err := c.ShouldBindJSON(&form)
  86. if err != nil {
  87. return nil, errors.New("参数错误")
  88. }
  89. if form.Id.Hex() == "" {
  90. return nil, errors.New("更新的产品id不能为空")
  91. }
  92. form.UpdateTime = time.Now()
  93. result, err := repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, form.Id.Hex(), &form)
  94. if err != nil {
  95. return nil, err
  96. }
  97. // 更新订单状态
  98. if result.ModifiedCount > 0 {
  99. // 查询订单
  100. curOder := model.Order{}
  101. found, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  102. CollectName: repo.CollectionOrder,
  103. Query: repo.Map{"_id": form.Id},
  104. Project: []string{"products"},
  105. }, &curOder)
  106. if found {
  107. if len(curOder.Products) > 0 {
  108. statusMap := make(map[int]struct{})
  109. for _, v := range curOder.Products {
  110. statusMap[v.Status] = struct{}{}
  111. }
  112. // {"-1",1,2}
  113. // {-1,1}
  114. // {-1,2}
  115. // {1,2}
  116. // {-1}
  117. // {1}
  118. // {3}
  119. status := curOder.Status
  120. if len(statusMap) == 1 {
  121. if _, ok := statusMap[-1]; ok {
  122. status = -1
  123. }
  124. if _, ok := statusMap[1]; ok {
  125. status = 1
  126. }
  127. if _, ok := statusMap[2]; ok {
  128. status = 2
  129. }
  130. }
  131. if len(statusMap) == 2 {
  132. if _, ok := statusMap[-1]; ok {
  133. status = -1
  134. } else if _, ok := statusMap[1]; ok {
  135. status = 1
  136. }
  137. }
  138. if len(statusMap) == 3 {
  139. status = -1
  140. }
  141. var statusOrder model.Order
  142. statusOrder.Status = status
  143. repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, form.Id.Hex(), &statusOrder)
  144. }
  145. }
  146. }
  147. return result, err
  148. }
  149. // 订单信息
  150. func OrderDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  151. orderId := c.Param("id")
  152. id, err := primitive.ObjectIDFromHex(orderId)
  153. if err != nil {
  154. return nil, errors.New("非法id")
  155. }
  156. var order model.Order
  157. option := &repo.DocSearchOptions{
  158. CollectName: repo.CollectionOrder,
  159. Query: repo.Map{"_id": id},
  160. }
  161. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), option, &order)
  162. if !found || err != nil {
  163. return nil, errors.New("数据未找到")
  164. }
  165. return order, nil
  166. }
  167. // 删除订单
  168. func OrderDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  169. orderId := c.Param("id")
  170. _, err := primitive.ObjectIDFromHex(orderId)
  171. if err != nil {
  172. return nil, errors.New("非法id")
  173. }
  174. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, orderId)
  175. }