fix: set correct account currency for deferred expence account in PI

(cherry picked from commit 398083853c)
This commit is contained in:
vishakhdesai
2025-02-10 16:09:54 +05:30
committed by Mergify
parent 02ff406b7c
commit f96848a3b9

View File

@@ -969,7 +969,6 @@ class PurchaseInvoice(BuyingController):
for item in self.get("items"):
if flt(item.base_net_amount):
account_currency = get_account_currency(item.expense_account)
if item.item_code:
frappe.get_cached_value("Item", item.item_code, "asset_category")
@@ -978,6 +977,7 @@ class PurchaseInvoice(BuyingController):
and self.auto_accounting_for_stock
and (item.item_code in stock_items or item.is_fixed_asset)
):
account_currency = get_account_currency(item.expense_account)
# warehouse account
warehouse_debit_amount = self.make_stock_adjustment_entry(
gl_entries, item, voucher_wise_stock_value, account_currency
@@ -1112,6 +1112,7 @@ class PurchaseInvoice(BuyingController):
else item.deferred_expense_account
)
account_currency = get_account_currency(expense_account)
amount, base_amount = self.get_amount_and_base_amount(item, None)
if provisional_accounting_for_non_stock_items: