[fix] Server test cases (#11727)
This commit is contained in:
committed by
Nabin Hait
parent
15f8fe0179
commit
373b5702a9
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user