- 银行列表更新

This commit is contained in:
gazebo
2019-07-17 23:08:15 +08:00
parent 24c9ee0636
commit 62fb04ecb4
2 changed files with 164 additions and 64 deletions

View File

@@ -17,7 +17,7 @@ type DefSingleStorePlatform struct {
func (p *DefSingleStorePlatform) DeleteStoreAllSkus(ctx *jxcontext.Context, parentTask tasksch.ITask, storeID int, vendorStoreID string, isContinueWhenError bool) (err error) {
skuNameList, err := p.GetStoreSkusFullInfo(ctx, parentTask, storeID, vendorStoreID, nil)
if err != nil {
if err != nil || len(skuNameList) == 0 {
return err
}
storeStoreList := make([]*partner.StoreSkuInfo, len(skuNameList))