mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-07 20:42:50 +00:00
fix: skip empty dimension values in exchange gain loss
(cherry picked from commit 7df9d951c6)
This commit is contained in:
@@ -500,7 +500,8 @@ def _build_dimensions_dict_for_exc_gain_loss(
|
|||||||
dimensions_dict = frappe._dict()
|
dimensions_dict = frappe._dict()
|
||||||
if entry and active_dimensions:
|
if entry and active_dimensions:
|
||||||
for dim in active_dimensions:
|
for dim in active_dimensions:
|
||||||
dimensions_dict[dim.fieldname] = entry.get(dim.fieldname)
|
if entry_dimension := entry.get(dim.fieldname):
|
||||||
|
dimensions_dict[dim.fieldname] = entry_dimension
|
||||||
return dimensions_dict
|
return dimensions_dict
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user