order.go 6.0 KB

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