Skip to content

Commit

Permalink
fix: incorrect cost center error in bank reconciliation
Browse files Browse the repository at this point in the history
(cherry picked from commit 41b9e92)
  • Loading branch information
ruthra-kumar authored and mergify[bot] committed Jun 22, 2023
1 parent 200ddbf commit cacb0f6
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from frappe.query_builder.custom import ConstantColumn
from frappe.utils import cint, flt

from erpnext import get_default_cost_center
from erpnext.accounts.doctype.bank_transaction.bank_transaction import get_total_allocated_amount
from erpnext.accounts.report.bank_reconciliation_statement.bank_reconciliation_statement import (
get_amounts_not_reflected_in_system,
Expand Down Expand Up @@ -140,6 +141,9 @@ def create_journal_entry_bts(
second_account
)
)

company = frappe.get_value("Account", company_account, "company")

accounts = []
# Multi Currency?
accounts.append(
Expand All @@ -149,6 +153,7 @@ def create_journal_entry_bts(
"debit_in_account_currency": bank_transaction.withdrawal,
"party_type": party_type,
"party": party,
"cost_center": get_default_cost_center(company),
}
)

Expand All @@ -158,11 +163,10 @@ def create_journal_entry_bts(
"bank_account": bank_transaction.bank_account,
"credit_in_account_currency": bank_transaction.withdrawal,
"debit_in_account_currency": bank_transaction.deposit,
"cost_center": get_default_cost_center(company),
}
)

company = frappe.get_value("Account", company_account, "company")

journal_entry_dict = {
"voucher_type": entry_type,
"company": company,
Expand Down

0 comments on commit cacb0f6

Please sign in to comment.