order.go 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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.POSTJWT("/order/createBatch", OrderAddBatch)
  14. r.GETJWT("/order/list", OrderList)
  15. r.POSTJWT("/order/update", OrderUpdate)
  16. r.GETJWT("/order/detail/:id", OrderDetail)
  17. r.POSTJWT("/order/delete/:id", OrderDelete)
  18. r.GETJWT("/order/count", OrderCount)
  19. }
  20. // 批量新增订单
  21. func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  22. var orders []*model.OrderAddReq
  23. err := c.ShouldBindJSON(&orders)
  24. if err != nil {
  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: p.ProductId,
  44. SupplyId: p.SupplyId,
  45. Name: p.Name,
  46. Size: p.Size,
  47. Color: p.Color,
  48. Unit: p.Unit,
  49. Cover: p.Cover,
  50. ExpressNo: "",
  51. Status: -1,
  52. })
  53. // 加入购物车后 删除购物车对应商品
  54. repo.RepoDeleteDoc(ctx, repo.CollectionShopCart, p.Id.Hex())
  55. }
  56. }
  57. order.DeliveryMethod = v.DeliveryMethod
  58. order.Remark = v.Remark
  59. order.Status = -1
  60. order.CreateTime = time.Now()
  61. repo.RepoAddDoc(ctx, repo.CollectionOrder, order)
  62. }
  63. return true, nil
  64. }
  65. // TODO 待移除 与前端确定
  66. func OrderAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  67. var form model.Order
  68. err := c.ShouldBindJSON(&form)
  69. if err != nil {
  70. return nil, errors.New("参数错误!")
  71. }
  72. ctx := apictx.CreateRepoCtx()
  73. _userId := apictx.User.ID
  74. userId, err := primitive.ObjectIDFromHex(_userId)
  75. if err != nil {
  76. return nil, errors.New("非法用户")
  77. }
  78. for _, v := range form.Products {
  79. v.Status = -1
  80. }
  81. form.UserId = userId
  82. form.Status = -1
  83. form.CreateTime = time.Now()
  84. form.UpdateTime = time.Now()
  85. return repo.RepoAddDoc(ctx, repo.CollectionOrder, &form)
  86. }
  87. // 订单列表
  88. func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  89. // customer
  90. // supplier
  91. page, size, query := UtilQueryPageSize(c)
  92. _userId := apictx.User.ID
  93. userId, _ := primitive.ObjectIDFromHex(_userId)
  94. // if apictx.User.Role == "customer"{
  95. query["userId"] = userId
  96. // }
  97. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  98. CollectName: repo.CollectionOrder,
  99. Page: page,
  100. Size: size,
  101. Query: query,
  102. // Project: []string{},
  103. // Sort: repo.Map{"createTime": -1},
  104. })
  105. }
  106. // 个人页面数量展示
  107. func OrderCount(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
  108. _userId := apictx.User.ID
  109. userId, err := primitive.ObjectIDFromHex(_userId)
  110. if err != nil {
  111. return nil, errors.New("非法用户")
  112. }
  113. statusArray := []int{-1, 1, 2, 3}
  114. resMap := make(map[int]int64)
  115. // var ret []int64
  116. ctx := apictx.CreateRepoCtx()
  117. for _, v := range statusArray {
  118. query := repo.Map{"userId": userId, "status": v}
  119. res, _ := repo.RepoCountDoc(ctx, repo.CollectionOrder, query)
  120. // ret = append(ret, res)
  121. resMap[v] = res
  122. }
  123. return resMap, nil
  124. }
  125. // 更新订单 发货
  126. func OrderUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  127. var form model.Order
  128. err := c.ShouldBindJSON(&form)
  129. if err != nil {
  130. return nil, errors.New("参数错误")
  131. }
  132. if form.Id.Hex() == "" {
  133. return nil, errors.New("更新的产品id不能为空")
  134. }
  135. form.UpdateTime = time.Now()
  136. result, err := repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, form.Id.Hex(), &form)
  137. if err != nil {
  138. return nil, err
  139. }
  140. // 更新订单状态
  141. if result.ModifiedCount > 0 {
  142. // 查询订单
  143. curOder := model.Order{}
  144. found, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  145. CollectName: repo.CollectionOrder,
  146. Query: repo.Map{"_id": form.Id},
  147. Project: []string{"products"},
  148. }, &curOder)
  149. if found {
  150. if len(curOder.Products) > 0 {
  151. statusMap := make(map[int]struct{})
  152. for _, v := range curOder.Products {
  153. statusMap[v.Status] = struct{}{}
  154. }
  155. // {"-1",1,2}
  156. // {-1,1}
  157. // {-1,2}
  158. // {1,2}
  159. // {-1}
  160. // {1}
  161. // {3}
  162. status := curOder.Status
  163. if len(statusMap) == 1 {
  164. if _, ok := statusMap[-1]; ok {
  165. status = -1
  166. }
  167. if _, ok := statusMap[1]; ok {
  168. status = 1
  169. }
  170. if _, ok := statusMap[2]; ok {
  171. status = 2
  172. }
  173. }
  174. if len(statusMap) == 2 {
  175. if _, ok := statusMap[-1]; ok {
  176. status = -1
  177. } else if _, ok := statusMap[1]; ok {
  178. status = 1
  179. }
  180. }
  181. if len(statusMap) == 3 {
  182. status = -1
  183. }
  184. var statusOrder model.Order
  185. statusOrder.Status = status
  186. repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, form.Id.Hex(), &statusOrder)
  187. }
  188. }
  189. }
  190. return result, err
  191. }
  192. // 订单信息
  193. func OrderDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  194. orderId := c.Param("id")
  195. id, err := primitive.ObjectIDFromHex(orderId)
  196. if err != nil {
  197. return nil, errors.New("非法id")
  198. }
  199. var order model.Order
  200. option := &repo.DocSearchOptions{
  201. CollectName: repo.CollectionOrder,
  202. Query: repo.Map{"_id": id},
  203. }
  204. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), option, &order)
  205. if !found || err != nil {
  206. return nil, errors.New("数据未找到")
  207. }
  208. return order, nil
  209. }
  210. // 删除订单
  211. func OrderDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  212. orderId := c.Param("id")
  213. _, err := primitive.ObjectIDFromHex(orderId)
  214. if err != nil {
  215. return nil, errors.New("非法id")
  216. }
  217. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, orderId)
  218. }