|
@@ -6,9 +6,11 @@ import (
|
|
|
"3dshow-customer/log"
|
|
|
"errors"
|
|
|
"fmt"
|
|
|
+ "strings"
|
|
|
"time"
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
+ "go.mongodb.org/mongo-driver/bson"
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
)
|
|
|
|
|
@@ -59,6 +61,17 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
delete(query, "sort")
|
|
|
}
|
|
|
|
|
|
+ // selectTime
|
|
|
+ selectTime := time.Now().Format("2006-01")
|
|
|
+ if _, ok := query["selectTime"]; ok {
|
|
|
+ timeSlice := strings.Split(query["selectTime"].(string), ".")
|
|
|
+ selectTime = strings.Join(timeSlice, "-")
|
|
|
+ delete(query, "selectTime")
|
|
|
+ }
|
|
|
+ timeStr := fmt.Sprintf("%s%s", selectTime, "-01 00:00:00")
|
|
|
+ formatTime, _ := time.ParseInLocation("2006-01-02 15:04:05", timeStr, time.Local)
|
|
|
+ query["onsaleTime"] = bson.M{"$lte": formatTime}
|
|
|
+
|
|
|
// 查询数据
|
|
|
if _, ok := query["supplyId"]; !ok {
|
|
|
return nil, errors.New("供应链id不能为空")
|
|
@@ -118,8 +131,9 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
// 产品信息
|
|
|
type ProudctDetailRes struct {
|
|
|
model.Product
|
|
|
- IsCollect bool `json:"isCollect"`
|
|
|
- CollectId string `json:"collectId"`
|
|
|
+ IsCollect bool `json:"isCollect"`
|
|
|
+ CollectId string `json:"collectId"`
|
|
|
+ Asset model.Asset360Fake3d `json:"asset"`
|
|
|
}
|
|
|
|
|
|
func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
@@ -141,6 +155,14 @@ func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
log.Info(err)
|
|
|
return nil, errors.New("数据未找到")
|
|
|
}
|
|
|
+
|
|
|
+ // 素材
|
|
|
+ asset := model.Asset360Fake3d{}
|
|
|
+ repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
+ CollectName: repo.CollectionAssets,
|
|
|
+ Query: repo.Map{"assetId": product.AssetId},
|
|
|
+ }, &asset)
|
|
|
+
|
|
|
// 用户登录状态 是否收藏
|
|
|
if apictx.User != nil {
|
|
|
_userId := apictx.User.ID
|
|
@@ -151,8 +173,8 @@ func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
CollectName: repo.CollectionCollect,
|
|
|
Query: repo.Map{"userId": userId, "productId": productId},
|
|
|
}, &collect)
|
|
|
- return ProudctDetailRes{Product: product, IsCollect: found, CollectId: collect.Id.Hex()}, nil
|
|
|
+ return ProudctDetailRes{Product: product, IsCollect: found, CollectId: collect.Id.Hex(), Asset: asset}, nil
|
|
|
}
|
|
|
|
|
|
- return product, nil
|
|
|
+ return ProudctDetailRes{Product: product, Asset: asset}, nil
|
|
|
}
|