fix(order) discount set default 1
This commit is contained in:
parent
1b78e04113
commit
a155a4f8cd
@ -89,6 +89,9 @@ func (l *PurchaseLogic) Purchase(req *types.PurchaseOrderRequest) (resp *types.P
|
|||||||
_ = json.Unmarshal([]byte(sub.Discount), &dis)
|
_ = json.Unmarshal([]byte(sub.Discount), &dis)
|
||||||
discount = getDiscount(dis, req.Quantity)
|
discount = getDiscount(dis, req.Quantity)
|
||||||
}
|
}
|
||||||
|
if discount == 0 {
|
||||||
|
discount = 1
|
||||||
|
}
|
||||||
price := sub.UnitPrice * req.Quantity
|
price := sub.UnitPrice * req.Quantity
|
||||||
// discount amount
|
// discount amount
|
||||||
amount := int64(float64(price) * discount)
|
amount := int64(float64(price) * discount)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user