|
@@ -162,13 +162,33 @@ func OrderCancelOrComplete(c *gin.Context, apictx *ApiSession) (interface{}, err
|
|
|
// 且都为未发货状态时 可以取消订单
|
|
|
// 取消流程
|
|
|
if _, ok := statusMap[-1]; ok && order.Status == -1 {
|
|
|
+ // 更新产品状态
|
|
|
+ for _, p := range order.Products {
|
|
|
+ repo.RepoDocArrayOneUpdate(apictx.CreateRepoCtx(), &repo.ArrayOneUpdateOption{
|
|
|
+ CollectName: repo.CollectionOrder,
|
|
|
+ Id: order.Id.Hex(),
|
|
|
+ Query: repo.Map{"products.id": p.Id},
|
|
|
+ Set: repo.Map{"products.$.status": 3},
|
|
|
+ })
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, _id, &model.Order{Status: 3, IsCancel: -1})
|
|
|
}
|
|
|
|
|
|
// 且都为已发货状态时 可以取消订单
|
|
|
// 完成流程
|
|
|
if _, ok := statusMap[1]; ok && order.Status == 1 {
|
|
|
+ // 更新产品状态
|
|
|
+ for _, p := range order.Products {
|
|
|
+ repo.RepoDocArrayOneUpdate(apictx.CreateRepoCtx(), &repo.ArrayOneUpdateOption{
|
|
|
+ CollectName: repo.CollectionOrder,
|
|
|
+ Id: order.Id.Hex(),
|
|
|
+ Query: repo.Map{"products.id": p.Id},
|
|
|
+ Set: repo.Map{"products.$.status": 2},
|
|
|
+ })
|
|
|
|
|
|
+ }
|
|
|
return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, _id, &model.Order{Status: 2, IsCancel: -1})
|
|
|
}
|
|
|
}
|