Compare commits
2 Commits
44514fbf39
...
285bb98158
Author | SHA1 | Date | |
---|---|---|---|
285bb98158 | |||
3910076c03 |
@ -22,9 +22,9 @@ func TestCAClient(t *testing.T) {
|
|||||||
//}
|
//}
|
||||||
//t.Log(resp)
|
//t.Log(resp)
|
||||||
|
|
||||||
resp, err := client.RequestProductDetailList(ctx, "CK535-WEC", "CP081-SVVSW", "C9949-SVVDT", "CM235-SVELC", "CP081-JIBLK", "CAA92-IMCHR", "C9949-SVQVE", "CW637-B4CED")
|
inv, err := client.RequestProductDetail(ctx, "CP150-LHBLK")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
t.Log(resp)
|
t.Log(inv)
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ func (a *articleApi) Upsert(article v2.Article) error {
|
|||||||
return a.db.Transaction(func(tx *gorm.DB) error {
|
return a.db.Transaction(func(tx *gorm.DB) error {
|
||||||
if err := tx.Clauses(clause.OnConflict{
|
if err := tx.Clauses(clause.OnConflict{
|
||||||
Columns: []clause.Column{{Name: "pid"}, {Name: "brand"}},
|
Columns: []clause.Column{{Name: "pid"}, {Name: "brand"}},
|
||||||
DoUpdates: clause.AssignmentColumns([]string{"available", "updated_at", "cost_price", "sell_price", "rate", "remark", "exclude"}),
|
DoUpdates: clause.AssignmentColumns([]string{"available", "updated_at", "cost_price", "sell_price", "rate", "GrossProfit", "remark", "exclude"}),
|
||||||
}).Create(&article).Error; err != nil {
|
}).Create(&article).Error; err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -43,6 +43,7 @@ type Article struct {
|
|||||||
Sellers []SellerArticle `json:"sellers" gorm:"foreignKey:ArticleID"`
|
Sellers []SellerArticle `json:"sellers" gorm:"foreignKey:ArticleID"`
|
||||||
// 利润率
|
// 利润率
|
||||||
Rate float64 `json:"rate" gorm:"index"` //利润率
|
Rate float64 `json:"rate" gorm:"index"` //利润率
|
||||||
|
GrossProfit float64 `json:"grossProfit"` //毛利润
|
||||||
//备注
|
//备注
|
||||||
Remark string `json:"remark"`
|
Remark string `json:"remark"`
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user