fix: do not set cost_center update_voucher_balance as it is set in init_voucher_balance

(cherry picked from commit 3b36ce560c)
This commit is contained in:
vishakhdesai
2024-12-20 18:41:51 +05:30
committed by Mergify
parent 197b13eb87
commit 97d5d18041

View File

@@ -129,7 +129,6 @@ class ReceivablePayableReport:
paid_in_account_currency=0.0,
credit_note_in_account_currency=0.0,
outstanding_in_account_currency=0.0,
cost_center=ple.cost_center,
)
def init_voucher_balance(self):
@@ -273,9 +272,6 @@ class ReceivablePayableReport:
row.paid -= amount
row.paid_in_account_currency -= amount_in_account_currency
if not row.cost_center and ple.cost_center:
row.cost_center = str(ple.cost_center)
def update_sub_total_row(self, row, party):
total_row = self.total_row_map.get(party)