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

@@ -1687,7 +1687,6 @@ func (c *StoreController) BatchUpdateMTStoreLogos() {
// @Description 批量绑定淘鲜达门店
// @Param token header string true "认证token"
// @Param vendorOrgCode formData string true "账号id"
// @Param storeID formData int true "本地门店id"
// @Param bindInfos formData string true "TaoBindInfo"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
@@ -1698,7 +1697,7 @@ func (c *StoreController) SingleBindTaoVegetable() {
b := bytes.NewBufferString(params.BindInfos)
decoder := json.NewDecoder(b)
if err = decoder.Decode(&taoBindInfo); err == nil {
err, hint = cms.SingleBindTaoVegetable(params.Ctx, taoBindInfo, params.VendorOrgCode, params.StoreID)
err, hint = cms.SingleBindTaoVegetable(params.Ctx, taoBindInfo, params.VendorOrgCode)
}
return nil, hint, err
})