changeset fb0163fff38e in modules/purchase_secondary_unit:default
details:
https://hg.tryton.org/modules/purchase_secondary_unit?cmd=changeset;node=fb0163fff38e
description:
Add round_price
We add a common method to round prices that are stored using the price
digits.
It is useless to use the digits from the field because it can not be
changed in
any other way than by configuration.
issue9146
review299521002
diffstat:
purchase.py | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)
diffs (42 lines):
diff -r 23c02fab377a -r fb0163fff38e purchase.py
--- a/purchase.py Thu Mar 19 19:08:59 2020 +0100
+++ b/purchase.py Thu Apr 23 21:44:00 2020 +0200
@@ -1,12 +1,10 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
-from decimal import Decimal
-
from trytond.model import fields
from trytond.pool import PoolMeta, Pool
from trytond.pyson import Eval, If
-from trytond.modules.product import price_digits
+from trytond.modules.product import price_digits, round_price
class Line(metaclass=PoolMeta):
@@ -105,10 +103,10 @@
Uom = pool.get('product.uom')
if (self.unit_price is not None and self.unit and self.secondary_unit
and (self.secondary_uom_factor or self.secondary_uom_rate)):
- return Uom.compute_price(
+ unit_price = Uom.compute_price(
self.unit, self.unit_price, self.secondary_unit,
- factor=self.secondary_uom_factor, rate=self.secondary_uom_rate
- ).quantize(Decimal(1) / 10 ** price_digits[1])
+ factor=self.secondary_uom_factor, rate=self.secondary_uom_rate)
+ return round_price(unit_price)
else:
return None
@@ -123,8 +121,8 @@
and (self.secondary_uom_factor or self.secondary_uom_rate)):
self.unit_price = Uom.compute_price(
self.secondary_unit, self.secondary_unit_price, self.unit,
- factor=self.secondary_uom_rate, rate=self.secondary_uom_factor
- ).quantize(Decimal(1) / 10 ** price_digits[1])
+ factor=self.secondary_uom_rate, rate=self.secondary_uom_factor)
+ self.unit_price = round_price(self.unit_price)
self.amount = self.on_change_with_amount()
@fields.depends(methods=[