|
@@ -4,6 +4,7 @@ import (
|
|
"3dshow/db/model"
|
|
"3dshow/db/model"
|
|
"3dshow/db/repo"
|
|
"3dshow/db/repo"
|
|
"errors"
|
|
"errors"
|
|
|
|
+ "fmt"
|
|
"time"
|
|
"time"
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gin-gonic/gin"
|
|
@@ -12,7 +13,6 @@ import (
|
|
|
|
|
|
// 产品管理
|
|
// 产品管理
|
|
func Order(r *GinRouter) {
|
|
func Order(r *GinRouter) {
|
|
- r.POSTJWT("/order/create", OrderAdd)
|
|
|
|
r.POSTJWT("/order/createBatch", OrderAddBatch)
|
|
r.POSTJWT("/order/createBatch", OrderAddBatch)
|
|
r.GETJWT("/order/list", OrderList)
|
|
r.GETJWT("/order/list", OrderList)
|
|
r.POSTJWT("/order/update", OrderUpdate)
|
|
r.POSTJWT("/order/update", OrderUpdate)
|
|
@@ -26,6 +26,7 @@ func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
var orders []*model.OrderAddReq
|
|
var orders []*model.OrderAddReq
|
|
err := c.ShouldBindJSON(&orders)
|
|
err := c.ShouldBindJSON(&orders)
|
|
if err != nil {
|
|
if err != nil {
|
|
|
|
+ fmt.Println(err)
|
|
return nil, errors.New("参数错误!")
|
|
return nil, errors.New("参数错误!")
|
|
}
|
|
}
|
|
ctx := apictx.CreateRepoCtx()
|
|
ctx := apictx.CreateRepoCtx()
|
|
@@ -73,30 +74,6 @@ func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-// TODO 待移除 与前端确定
|
|
|
|
-func OrderAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
|
- var form model.Order
|
|
|
|
- err := c.ShouldBindJSON(&form)
|
|
|
|
- if err != nil {
|
|
|
|
- return nil, errors.New("参数错误!")
|
|
|
|
- }
|
|
|
|
- ctx := apictx.CreateRepoCtx()
|
|
|
|
- _userId := apictx.User.ID
|
|
|
|
- userId, err := primitive.ObjectIDFromHex(_userId)
|
|
|
|
- if err != nil {
|
|
|
|
- return nil, errors.New("非法用户")
|
|
|
|
- }
|
|
|
|
- for _, v := range form.Products {
|
|
|
|
- v.Status = -1
|
|
|
|
- }
|
|
|
|
- form.UserId = userId
|
|
|
|
- form.Status = -1
|
|
|
|
- form.CreateTime = time.Now()
|
|
|
|
- form.UpdateTime = time.Now()
|
|
|
|
- return repo.RepoAddDoc(ctx, repo.CollectionOrder, &form)
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
// 订单列表
|
|
// 订单列表
|
|
func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
// customer
|
|
// customer
|
|
@@ -108,14 +85,28 @@ func OrderList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
// if apictx.User.Role == "customer"{
|
|
// if apictx.User.Role == "customer"{
|
|
query["userId"] = userId
|
|
query["userId"] = userId
|
|
// }
|
|
// }
|
|
- return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
|
|
|
|
|
|
+ result, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
|
|
CollectName: repo.CollectionOrder,
|
|
CollectName: repo.CollectionOrder,
|
|
Page: page,
|
|
Page: page,
|
|
Size: size,
|
|
Size: size,
|
|
Query: query,
|
|
Query: query,
|
|
// Project: []string{},
|
|
// Project: []string{},
|
|
- // Sort: repo.Map{"createTime": -1},
|
|
|
|
|
|
+ Sort: repo.Map{"createTime": -1},
|
|
})
|
|
})
|
|
|
|
+
|
|
|
|
+ if len(result.List) > 0 {
|
|
|
|
+ for _, v := range result.List {
|
|
|
|
+ supplyId := v["supplyId"].(primitive.ObjectID)
|
|
|
|
+ supply := model.Supply{}
|
|
|
|
+ repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
|
+ CollectName: repo.CollectionSupply,
|
|
|
|
+ Query: repo.Map{"_id": supplyId},
|
|
|
|
+ }, &supply)
|
|
|
|
+ v["supplyName"] = supply.Name
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return result, err
|
|
}
|
|
}
|
|
|
|
|
|
// 个人页面数量展示
|
|
// 个人页面数量展示
|