Merge pull request #26195 from deepeshgarg007/deferred_revenue_error

fix: Error while booking deferred revenue
This commit is contained in:
Nabin Hait 2021-06-24 15:35:02 +05:30 committed by GitHub
commit c1954ec72a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,6 +263,9 @@ def book_deferred_income_or_expense(doc, deferred_process, posting_date=None):
amount, base_amount = calculate_amount(doc, item, last_gl_entry,
total_days, total_booking_days, account_currency)
if not amount:
return
if via_journal_entry:
book_revenue_via_journal_entry(doc, credit_account, debit_account, against, amount,
base_amount, end_date, project, account_currency, item.cost_center, item, deferred_process, submit_journal_entry)