fix: GL Entries should not be splitted based on cost center allocation in PCV
diff --git a/erpnext/accounts/general_ledger.py b/erpnext/accounts/general_ledger.py
index e9dc5fc..b942a0c 100644
--- a/erpnext/accounts/general_ledger.py
+++ b/erpnext/accounts/general_ledger.py
@@ -105,7 +105,8 @@
if not gl_map:
return []
- gl_map = distribute_gl_based_on_cost_center_allocation(gl_map, precision)
+ if gl_map[0].voucher_type != "Period Closing Voucher":
+ gl_map = distribute_gl_based_on_cost_center_allocation(gl_map, precision)
if merge_entries:
gl_map = merge_similar_entries(gl_map, precision)