order.go 5.7 KB

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