|
@@ -15,9 +15,11 @@ import (
|
|
|
func Order(r *GinRouter) {
|
|
|
r.POSTJWT("/order/createBatch", OrderAddBatch)
|
|
|
r.GETJWT("/order/list", OrderList)
|
|
|
+ // ??? 更新订单的操作 订单
|
|
|
+ r.POSTJWT("/order/complete", OrderComplete)
|
|
|
+ r.POSTJWT("/order/cancel", OrderCancel)
|
|
|
r.POSTJWT("/order/update", OrderUpdate)
|
|
|
r.GETJWT("/order/detail/:id", OrderDetail)
|
|
|
- r.POSTJWT("/order/delete/:id", OrderDelete)
|
|
|
r.GETJWT("/order/count", OrderCount)
|
|
|
}
|
|
|
|
|
@@ -65,6 +67,7 @@ func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
order.DeliveryMethod = v.DeliveryMethod
|
|
|
order.Remark = v.Remark
|
|
|
order.Status = -1
|
|
|
+ order.IsCancel = 1
|
|
|
order.CreateTime = time.Now()
|
|
|
repo.RepoAddDoc(ctx, repo.CollectionOrder, order)
|
|
|
|
|
@@ -76,30 +79,27 @@ func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
|
|
|
// 订单列表
|
|
|
func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
- // customer
|
|
|
- // supplier
|
|
|
page, size, query := UtilQueryPageSize(c)
|
|
|
_userId := apictx.User.ID
|
|
|
userId, _ := primitive.ObjectIDFromHex(_userId)
|
|
|
-
|
|
|
- // if apictx.User.Role == "customer"{
|
|
|
query["userId"] = userId
|
|
|
- // }
|
|
|
+
|
|
|
result, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
|
|
|
CollectName: repo.CollectionOrder,
|
|
|
Page: page,
|
|
|
Size: size,
|
|
|
Query: query,
|
|
|
- // Project: []string{},
|
|
|
- Sort: repo.Map{"createTime": -1},
|
|
|
+ Project: []string{"createTime", "userId", "supplyId", "products"},
|
|
|
+ Sort: repo.Map{"createTime": -1},
|
|
|
})
|
|
|
|
|
|
if len(result.List) > 0 {
|
|
|
for _, v := range result.List {
|
|
|
supplyId := v["supplyId"].(primitive.ObjectID)
|
|
|
- supply := model.Supply{}
|
|
|
+ supply := model.UserSmaple{}
|
|
|
repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
- CollectName: repo.CollectionSupply,
|
|
|
+ Db: "supply-user",
|
|
|
+ CollectName: "users",
|
|
|
Query: repo.Map{"_id": supplyId},
|
|
|
}, &supply)
|
|
|
v["supplyName"] = supply.Name
|
|
@@ -112,10 +112,8 @@ func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
// 个人页面数量展示
|
|
|
func OrderCount(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
_userId := apictx.User.ID
|
|
|
- userId, err := primitive.ObjectIDFromHex(_userId)
|
|
|
- if err != nil {
|
|
|
- return nil, errors.New("非法用户")
|
|
|
- }
|
|
|
+ userId, _ := primitive.ObjectIDFromHex(_userId)
|
|
|
+
|
|
|
statusArray := []int{-1, 1, 2, 3}
|
|
|
resMap := make(map[int]int64)
|
|
|
// var ret []int64
|
|
@@ -129,6 +127,49 @@ func OrderCount(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
return resMap, nil
|
|
|
}
|
|
|
|
|
|
+// 订单完成
|
|
|
+func OrderComplete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ // 订单状态为已发货
|
|
|
+ _id := c.Param("id")
|
|
|
+ if len(_id) < 1 {
|
|
|
+ return nil, errors.New("id不能为空")
|
|
|
+ }
|
|
|
+ orderId, err := primitive.ObjectIDFromHex(_id)
|
|
|
+ if err != nil {
|
|
|
+ return nil, errors.New("id非法")
|
|
|
+ }
|
|
|
+ order := model.Order{}
|
|
|
+ found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
+ CollectName: repo.CollectionOrder,
|
|
|
+ Query: repo.Map{"_id": orderId},
|
|
|
+ }, &order)
|
|
|
+ if !found || err != nil {
|
|
|
+ return nil, errors.New("未找到该订单数据")
|
|
|
+ }
|
|
|
+ if len(order.Products) < 1 {
|
|
|
+ return nil, errors.New("该订单为空")
|
|
|
+ }
|
|
|
+ statusMap := map[int]struct{}{}
|
|
|
+ for _, v := range order.Products {
|
|
|
+ statusMap[v.Status] = struct{}{}
|
|
|
+ }
|
|
|
+ // 状态为一种,且都为已发货时 可以完成订单
|
|
|
+ if len(statusMap) == 1 {
|
|
|
+ if _, ok := statusMap[1]; ok {
|
|
|
+ return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, _id, &model.Order{Status: 2, IsCancel: -1})
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return nil, errors.New("该订单商品未全部发货")
|
|
|
+}
|
|
|
+
|
|
|
+// 订单取消
|
|
|
+func OrderCancel(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ // 订单状态为未发货
|
|
|
+
|
|
|
+ return nil, nil
|
|
|
+}
|
|
|
+
|
|
|
// 更新订单 发货
|
|
|
func OrderUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
var form model.Order
|
|
@@ -205,32 +246,29 @@ func OrderUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
|
|
|
// 订单信息
|
|
|
func OrderDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
- orderId := c.Param("id")
|
|
|
- id, err := primitive.ObjectIDFromHex(orderId)
|
|
|
+ _id := c.Param("id")
|
|
|
+ if len(_id) < 1 {
|
|
|
+ return nil, errors.New("id不能为空")
|
|
|
+ }
|
|
|
+ orderId, err := primitive.ObjectIDFromHex(_id)
|
|
|
if err != nil {
|
|
|
return nil, errors.New("非法id")
|
|
|
}
|
|
|
- var order model.Order
|
|
|
- option := &repo.DocSearchOptions{
|
|
|
+ ok, result := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
CollectName: repo.CollectionOrder,
|
|
|
- Query: repo.Map{"_id": id},
|
|
|
- }
|
|
|
-
|
|
|
- found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), option, &order)
|
|
|
- if !found || err != nil {
|
|
|
+ Query: repo.Map{"_id": orderId},
|
|
|
+ })
|
|
|
+ if !ok {
|
|
|
return nil, errors.New("数据未找到")
|
|
|
}
|
|
|
+ // 供应链信息
|
|
|
+ supply := model.UserSmaple{}
|
|
|
+ repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
+ Db: "supply-user",
|
|
|
+ CollectName: "users",
|
|
|
+ Query: repo.Map{"_id": result["supplyId"].(primitive.ObjectID)},
|
|
|
+ }, &supply)
|
|
|
+ result["supply"] = supply
|
|
|
|
|
|
- return order, nil
|
|
|
-}
|
|
|
-
|
|
|
-// 删除订单
|
|
|
-func OrderDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
- orderId := c.Param("id")
|
|
|
- _, err := primitive.ObjectIDFromHex(orderId)
|
|
|
- if err != nil {
|
|
|
- return nil, errors.New("非法id")
|
|
|
- }
|
|
|
-
|
|
|
- return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, orderId)
|
|
|
+ return result, nil
|
|
|
}
|