- 限制商品价格最低为1分
- 门店商品复制后添加SyncFlagSaleMask
This commit is contained in:
@@ -167,6 +167,9 @@ func CaculateSkuPrice(unitPrice int, specQuality float32, specUnit string, skuNa
|
||||
} else if specQuality < 500 {
|
||||
price = price * 110 / 100
|
||||
}
|
||||
if price <= 0 {
|
||||
price = 1
|
||||
}
|
||||
return price
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user