This commit is contained in:
邹宗楠
2022-10-09 16:23:36 +08:00
parent 8492cf6d64
commit 960314c758
2 changed files with 3 additions and 1 deletions

View File

@@ -246,6 +246,8 @@ func (p *PurchaseHandler) CreateStoreSkus(ctx *jxcontext.Context, storeID int, v
// p.createOrUpdateStoreSkus(ctx, storeID, vendorStoreID, duplicateStoreSkuList(storeSkuList, i+1), true) // p.createOrUpdateStoreSkus(ctx, storeID, vendorStoreID, duplicateStoreSkuList(storeSkuList, i+1), true)
// } // }
//} //}
globals.SugarLogger.Debugf("============CreateStoreSkus===============%s", utils.Format4Output(failedList, false))
globals.SugarLogger.Debugf("============CreateStoreSkus===============%s", err)
return failedList, err return failedList, err
} }

View File

@@ -33,7 +33,7 @@ func GetProductFormatNew(categoryLeftId int64, vendorOrgCode string) (string, er
if err != nil { if err != nil {
return "", err return "", err
} }
globals.SugarLogger.Debug("========productFormatNew==============", productFormatNew) globals.SugarLogger.Debug("========productFormatNew==============", string(productFormatNew))
return string(productFormatNew), nil return string(productFormatNew), nil
} }