浏览代码

add uniquid

animeic 2 年之前
父节点
当前提交
ee21a9fd99

+ 2 - 1
3dshow-customer/api/order.go

@@ -46,7 +46,8 @@ func OrderAddBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
 		if len(v.Products) > 0 {
 			for _, p := range v.Products {
 				order.Products = append(order.Products, &model.OrderProduct{
-					Id:        p.ProductId,
+					Id:        primitive.NewObjectID(),
+					ProductId: p.ProductId,
 					SupplyId:  p.SupplyId,
 					Name:      p.Name,
 					Size:      p.Size,

+ 16 - 1
3dshow-customer/api/test_print.go

@@ -1,7 +1,10 @@
 package api
 
 import (
+	"fmt"
+
 	"github.com/gin-gonic/gin"
+	"go.mongodb.org/mongo-driver/bson/primitive"
 )
 
 func Printr(c *gin.Context, apictx *ApiSession) (interface{}, error) {
@@ -39,5 +42,17 @@ func Printr(c *gin.Context, apictx *ApiSession) (interface{}, error) {
 	// // return repo.RepoUpdateSetDocProps(apictx.CreateRepoCtx(), repo.CollectionOrder, "636b5b4a0bab456f8a558962", repo.Map{"status": status})
 	// // sort, _ := strconv.Atoi("-1")
 	// // return status, nil
-	return len("61c3d4a0d6649a1d7353e2d9"), nil
+	n := []int{1, 2, 3, 4, 5}
+	// for _, v := range n {
+	// 	fmt.Println(primitive.NewObjectID().Hex())
+	// }
+	for i := 0; i < len(n); i++ {
+		fmt.Println(primitive.NewObjectID().Hex())
+	}
+	fmt.Println("------------------------------------------")
+	for i := 0; i < len(n); i++ {
+		fmt.Println(primitive.NewObjectID().Hex())
+	}
+
+	return "", nil
 }

+ 3 - 2
3dshow-customer/db/model/order.go

@@ -22,8 +22,9 @@ type Order struct {
 }
 
 type OrderProduct struct {
-	Id        primitive.ObjectID `bson:"id,omitempty" json:"id"`             // 对应产品id
-	SupplyId  primitive.ObjectID `bson:"supplyId,omitempty" json:"supplyId"` // 供应链id
+	Id        primitive.ObjectID `bson:"id,omitempty" json:"id"`               // id
+	ProductId primitive.ObjectID `bson:"productId,omitempty" json:"productId"` // 对应产品id
+	SupplyId  primitive.ObjectID `bson:"supplyId,omitempty" json:"supplyId"`   // 供应链id
 	Name      string             `bson:"name,omitempty" json:"name"`
 	Size      int                `bson:"size,omitempty" json:"size"`           // 下单选定的尺寸
 	Color     string             `bson:"color,omitempty" json:"color"`         // 下单选定的颜色

+ 1 - 0
3dshow-customer/db/model/product.go

@@ -12,6 +12,7 @@ type Product struct {
 	SupplyId   primitive.ObjectID `bson:"supplyId,omitempty" json:"supplyId"`
 	SenceId    primitive.ObjectID `bson:"senceId,omitempty" json:"senceId"` // 场景id,3d展示
 	Name       string             `bson:"name,omitempty" json:"name"`
+	Link       string             `bson:"link,omitempty" json:"link"`
 	Type       string             `bson:"type,omitempty" json:"type"` // 类型 单鞋:shoes 凉鞋:sandals 靴子:boots
 	Unit       string             `bson:"unit,omitempty" json:"unit"` // 型号
 	Price      float64            `bson:"price,omitempty" json:"price"`