[fix] Server test cases (#11727)

This commit is contained in:
rohitwaghchaure
2017-11-27 11:27:28 +05:30
committed by Nabin Hait
parent 15f8fe0179
commit 373b5702a9
2 changed files with 4 additions and 3 deletions

View File

@@ -908,7 +908,7 @@ def get_payment_term_details(term, posting_date=None, grand_total=None):
term_details.payment_term = term.payment_term
term_details.description = term.description
term_details.invoice_portion = term.invoice_portion
term_details.payment_amount = flt(term.invoice_portion) * flt(grand_total) / 100
term_details.payment_amount = (term.invoice_portion * grand_total) / 100
if posting_date:
term_details.due_date = get_due_date(posting_date, term)
return term_details