This commit is contained in:
richboo111
2023-10-23 11:32:20 +08:00
parent 16c56a1b6e
commit af5ca9f371
2 changed files with 4 additions and 4 deletions

View File

@@ -6417,6 +6417,7 @@ func BatchUpdateMTStoreLogos(vendorOrgCode string, relInfo []MtRelInfo) (hint st
}
type TaoBindInfo struct {
storeID int `json:"storeID"`
VendorStoreID string `json:"vendorStoreID"`
VendorStoreName string `json:"vendorStoreName"`
Status string `json:"status"` //渠道营业状态
@@ -6428,7 +6429,7 @@ var TaoStoreStatus = map[string]int{
}
// SingleBindTaoVegetable 单独绑定淘鲜达平台三方映射
func SingleBindTaoVegetable(ctx *jxcontext.Context, bind []TaoBindInfo, vendorOrgCode string, storeID int) (error, string) {
func SingleBindTaoVegetable(ctx *jxcontext.Context, bind []TaoBindInfo, vendorOrgCode string) (error, string) {
var (
db *dao.DaoDB
errList errlist.ErrList
@@ -6451,7 +6452,7 @@ func SingleBindTaoVegetable(ctx *jxcontext.Context, bind []TaoBindInfo, vendorOr
// }
//}
storeMap := &model.StoreMap{
StoreID: storeID,
StoreID: v.storeID,
VendorID: model.VendorIDTaoVegetable,
VendorOrgCode: vendorOrgCode,
Status: TaoStoreStatus[v.Status],