Compare commits
2 Commits
35ca258311
...
eb8632ab44
Author | SHA1 | Date | |
---|---|---|---|
eb8632ab44 | |||
33e0cdb047 |
@ -10,7 +10,9 @@ import (
|
|||||||
type ProviderArticleApi interface {
|
type ProviderArticleApi interface {
|
||||||
Get(query *GetProviderArticleQuery) (article v2.ProviderArticle, err error)
|
Get(query *GetProviderArticleQuery) (article v2.ProviderArticle, err error)
|
||||||
Upsert(article v2.ProviderArticle) error
|
Upsert(article v2.ProviderArticle) error
|
||||||
|
BatchUpdate(articles []v2.ProviderArticle) error
|
||||||
AutoMigrate() error
|
AutoMigrate() error
|
||||||
|
FindInBatches(query *GetProviderArticleQuery, results *[]v2.ProviderArticle, f func(tx *gorm.DB, batch int) error) error
|
||||||
}
|
}
|
||||||
|
|
||||||
type providerArticleApi struct {
|
type providerArticleApi struct {
|
||||||
@ -89,6 +91,16 @@ func (p *providerArticleApi) Upsert(article v2.ProviderArticle) error {
|
|||||||
}).Create(&article).Error
|
}).Create(&article).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *providerArticleApi) FindInBatches(query *GetProviderArticleQuery, results *[]v2.ProviderArticle, f func(tx *gorm.DB, batch int) error) error {
|
||||||
|
err := p.db.Scopes(query.Scope).Preload("CalculateProcess").FindInBatches(results, 20, f).Error
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// 批量更新,更新价格时用到
|
||||||
|
func (p *providerArticleApi) BatchUpdate(articles []v2.ProviderArticle) error {
|
||||||
|
return p.db.Select("id", "cost").Save(&articles).Error
|
||||||
|
}
|
||||||
|
|
||||||
func (p *providerArticleApi) AutoMigrate() error {
|
func (p *providerArticleApi) AutoMigrate() error {
|
||||||
return p.db.AutoMigrate(&v2.ProviderArticle{})
|
return p.db.AutoMigrate(&v2.ProviderArticle{})
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
package storage
|
package storage
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
v2 "gitea.timerzz.com/kedaya_haitao/common/structs/v2"
|
v2 "gitea.timerzz.com/kedaya_haitao/common/structs/v2"
|
||||||
|
"gorm.io/gorm"
|
||||||
)
|
)
|
||||||
|
|
||||||
var providerArticle = v2.ProviderArticle{
|
var providerArticle = v2.ProviderArticle{
|
||||||
@ -30,3 +32,23 @@ func TestProviderArticleApi_Upsert(t *testing.T) {
|
|||||||
storage := NewStorage(db)
|
storage := NewStorage(db)
|
||||||
storage.ProviderArticle().Upsert(providerArticle)
|
storage.ProviderArticle().Upsert(providerArticle)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestProviderArticleApi_FindInBatches(t *testing.T) {
|
||||||
|
db, err := GetDevDB()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
storage := NewStorage(db)
|
||||||
|
var results = make([]v2.ProviderArticle, 0)
|
||||||
|
err = storage.ProviderArticle().FindInBatches(&GetProviderArticleQuery{ProviderId: "1"}, &results, func(tx *gorm.DB, batch int) error {
|
||||||
|
for idx := range results {
|
||||||
|
results[idx].Link = fmt.Sprintf("test_%d", idx)
|
||||||
|
results[idx].SkuID = fmt.Sprintf("sku_%d", idx)
|
||||||
|
}
|
||||||
|
|
||||||
|
return db.Select("id", "link").Save(&results).Error
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -8,8 +8,9 @@ import (
|
|||||||
|
|
||||||
// SellerArticleApi 管理供应商商品的接口
|
// SellerArticleApi 管理供应商商品的接口
|
||||||
type SellerArticleApi interface {
|
type SellerArticleApi interface {
|
||||||
Get(query *GetProviderArticleQuery) (article v2.ProviderArticle, err error)
|
Get(query *GetSellerArticleQuery) (article v2.SellerArticle, err error)
|
||||||
Upsert(article v2.SellerArticle) error
|
Upsert(article v2.SellerArticle) error
|
||||||
|
FindInBatches(query *GetSellerArticleQuery, results *[]v2.SellerArticle, f func(tx *gorm.DB, batch int) error) error
|
||||||
AutoMigrate() error
|
AutoMigrate() error
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -17,6 +18,10 @@ type sellerArticleApi struct {
|
|||||||
db *gorm.DB
|
db *gorm.DB
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewSellerArticleApi(db *gorm.DB) SellerArticleApi {
|
||||||
|
return &sellerArticleApi{db: db}
|
||||||
|
}
|
||||||
|
|
||||||
type GetSellerArticleQuery struct {
|
type GetSellerArticleQuery struct {
|
||||||
ID uint `query:"id"`
|
ID uint `query:"id"`
|
||||||
Brand v2.Brand `query:"brand"`
|
Brand v2.Brand `query:"brand"`
|
||||||
@ -82,6 +87,16 @@ func (p *sellerArticleApi) Upsert(article v2.SellerArticle) error {
|
|||||||
}).Create(&article).Error
|
}).Create(&article).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *sellerArticleApi) FindInBatches(query *GetSellerArticleQuery, results *[]v2.SellerArticle, f func(tx *gorm.DB, batch int) error) error {
|
||||||
|
err := p.db.Scopes(query.Scope).Preload("CalculateProcess").FindInBatches(results, 20, f).Error
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// 批量更新,更新价格时用到
|
||||||
|
func (p *sellerArticleApi) BatchUpdate(articles []v2.SellerArticle) error {
|
||||||
|
return p.db.Select("id", "sell").Save(&articles).Error
|
||||||
|
}
|
||||||
|
|
||||||
func (p *sellerArticleApi) AutoMigrate() error {
|
func (p *sellerArticleApi) AutoMigrate() error {
|
||||||
return p.db.AutoMigrate(&v2.SellerArticle{})
|
return p.db.AutoMigrate(&v2.SellerArticle{})
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,7 @@ func NewStorage(db *gorm.DB) *Storage {
|
|||||||
providerApi: NewProviderApi(db),
|
providerApi: NewProviderApi(db),
|
||||||
providerArticleApi: NewProviderArticleApi(db),
|
providerArticleApi: NewProviderArticleApi(db),
|
||||||
sellerApi: NewSellerApi(db),
|
sellerApi: NewSellerApi(db),
|
||||||
|
sellerArticleApi: NewSellerArticleApi(db),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -33,3 +34,7 @@ func (s *Storage) ProviderArticle() ProviderArticleApi {
|
|||||||
func (s *Storage) Seller() SellerApi {
|
func (s *Storage) Seller() SellerApi {
|
||||||
return s.sellerApi
|
return s.sellerApi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Storage) SellerArticle() SellerArticleApi {
|
||||||
|
return s.sellerArticleApi
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user