This commit is contained in:
苏尹岚
2020-11-26 09:59:11 +08:00
parent 0a96b9f403
commit 743c966034

View File

@@ -695,7 +695,7 @@ func buildCreateWareParam(storeSku *dao.StoreSkuSyncInfo) (createSkuParamWare *j
Length: 100, Length: 100,
Wide: 100, Wide: 100,
Height: 100, Height: 100,
Weight: utils.Int2Str(storeSku.Weight), Weight: "0.5",
BrandID: jdshopapi.BrandIdNO, BrandID: jdshopapi.BrandIdNO,
WareStatus: 8, //上架待审核 WareStatus: 8, //上架待审核
ShopCategorys: []int{vendorCatID}, ShopCategorys: []int{vendorCatID},
@@ -994,6 +994,7 @@ func buildCreateWareParam(storeSku *dao.StoreSkuSyncInfo) (createSkuParamWare *j
} }
//市场价固定500 //市场价固定500
createSkuParamWare.MarketPrice = 500 createSkuParamWare.MarketPrice = 500
wareSaveParam.Skus = wareSaveSkus
return createSkuParamWare, createSkuParamSkus, wareSaveParam, err return createSkuParamWare, createSkuParamSkus, wareSaveParam, err
} }