Commit ca82dde7 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix incomplete variable renaming.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39401 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3607c52f
...@@ -65,7 +65,7 @@ for check_operation_line in transaction.objectValues(portal_type=\'Check Operati ...@@ -65,7 +65,7 @@ for check_operation_line in transaction.objectValues(portal_type=\'Check Operati
account_value = check_operation_line.getSourcePaymentValue()\n account_value = check_operation_line.getSourcePaymentValue()\n
account_path = account_value.getRelativeUrl()\n account_path = account_value.getRelativeUrl()\n
bank_account_dict[account_path] = account_value\n bank_account_dict[account_path] = account_value\n
amount_dict[account_path] = bank_account_dict.get(account_path, 0) + check_operation_line.getPrice()\n amount_dict[account_path] = amount_dict.get(account_path, 0) + check_operation_line.getPrice()\n
for account_path, amount in amount_dict.items():\n for account_path, amount in amount_dict.items():\n
error = context.BankAccount_checkBalance(account_path, amount)[\'error_code\']\n error = context.BankAccount_checkBalance(account_path, amount)[\'error_code\']\n
source_bank_account = bank_account_dict[account_path]\n source_bank_account = bank_account_dict[account_path]\n
......
467 469
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment