15.02.26
This commit is contained in:
@@ -13,8 +13,10 @@ from trytond.pool import Pool
|
|||||||
from trytond.pyson import Eval
|
from trytond.pyson import Eval
|
||||||
from trytond.transaction import Transaction
|
from trytond.transaction import Transaction
|
||||||
from trytond.wizard import Button, StateView, Wizard
|
from trytond.wizard import Button, StateView, Wizard
|
||||||
|
|
||||||
from .exceptions import PaymentTermComputeError, PaymentTermValidationError
|
from .exceptions import PaymentTermComputeError, PaymentTermValidationError
|
||||||
|
import logging
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class PaymentTerm(DeactivableMixin, ModelSQL, ModelView):
|
class PaymentTerm(DeactivableMixin, ModelSQL, ModelView):
|
||||||
|
|||||||
@@ -324,7 +324,7 @@ class Fee(ModelSQL,ModelView):
|
|||||||
factor = InterestCalculator.calculate(
|
factor = InterestCalculator.calculate(
|
||||||
start_date=beg_date,
|
start_date=beg_date,
|
||||||
end_date=est_date,
|
end_date=est_date,
|
||||||
rate=self.price,
|
rate=self.price/100,
|
||||||
rate_type='annual',
|
rate_type='annual',
|
||||||
convention='ACT/360',
|
convention='ACT/360',
|
||||||
compounding='simple'
|
compounding='simple'
|
||||||
@@ -340,7 +340,7 @@ class Fee(ModelSQL,ModelView):
|
|||||||
factor = InterestCalculator.calculate(
|
factor = InterestCalculator.calculate(
|
||||||
start_date=beg_date,
|
start_date=beg_date,
|
||||||
end_date=est_date,
|
end_date=est_date,
|
||||||
rate=self.price,
|
rate=self.price/100,
|
||||||
rate_type='annual',
|
rate_type='annual',
|
||||||
convention='ACT/360',
|
convention='ACT/360',
|
||||||
compounding='simple'
|
compounding='simple'
|
||||||
|
|||||||
Reference in New Issue
Block a user