反算京西价终极
This commit is contained in:
@@ -3649,13 +3649,10 @@ func RefreshJxPriceByVendor(ctx *jxcontext.Context, jdStoreSkus []*JdStoreSkus,
|
|||||||
} else {
|
} else {
|
||||||
vendorPrice = v.Price
|
vendorPrice = v.Price
|
||||||
}
|
}
|
||||||
fmt.Println("RefreshJxPriceByVendor1", vendorPrice)
|
|
||||||
jxPrice := jxutils.CaculateJxPriceByPricePack(pricePercentagePack, 0, vendorPrice)
|
jxPrice := jxutils.CaculateJxPriceByPricePack(pricePercentagePack, 0, vendorPrice)
|
||||||
fmt.Println("RefreshJxPriceByVendor2", jxPrice)
|
|
||||||
if skus[0].Unit == model.SpecialUnit {
|
if skus[0].Unit == model.SpecialUnit {
|
||||||
jxPrice = jxPrice * int(utils.Float64TwoInt64(utils.Int2Float64(model.SpecialSpecQuality)/specQuality))
|
jxPrice = int(utils.Float64TwoInt64(utils.Int2Float64(jxPrice) * utils.Int2Float64(model.SpecialSpecQuality) / specQuality))
|
||||||
}
|
}
|
||||||
fmt.Println("RefreshJxPriceByVendor3", jxPrice)
|
|
||||||
jdMap[store.ID] = append(jdMap[store.ID], &JdStoreSkus{
|
jdMap[store.ID] = append(jdMap[store.ID], &JdStoreSkus{
|
||||||
JdSkuID: skus[0].NameID,
|
JdSkuID: skus[0].NameID,
|
||||||
Price: jxPrice,
|
Price: jxPrice,
|
||||||
|
|||||||
@@ -342,7 +342,6 @@ func CaculatePriceByPricePack(l model.PricePercentagePack, defPricePercentage, p
|
|||||||
|
|
||||||
func CaculateJxPriceByPricePack(l model.PricePercentagePack, defPricePercentage, vendorPrice int) (jxPrice int) {
|
func CaculateJxPriceByPricePack(l model.PricePercentagePack, defPricePercentage, vendorPrice int) (jxPrice int) {
|
||||||
pricePercentage, priceAdd := GetPricePercentageByVendorPrice(l, vendorPrice, defPricePercentage)
|
pricePercentage, priceAdd := GetPricePercentageByVendorPrice(l, vendorPrice, defPricePercentage)
|
||||||
fmt.Println("RefreshJxPriceByVendor4", pricePercentage, priceAdd)
|
|
||||||
jxPrice = CaculateSkuPriceFromVendor(vendorPrice, pricePercentage, priceAdd)
|
jxPrice = CaculateSkuPriceFromVendor(vendorPrice, pricePercentage, priceAdd)
|
||||||
return jxPrice
|
return jxPrice
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user