Topic: Left to allocate is showing wrong.
Here is the screenshot proof. When we paid partially and and make second payment, the left to allocate didnt consider the previous payment.
HRM CRM POS batch Themes
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → Accounts Receivable → Left to allocate is showing wrong.
Here is the screenshot proof. When we paid partially and and make second payment, the left to allocate didnt consider the previous payment.
Lines 563 and 564 of ui_view.inc need to be reversed.
Good news is that this is just a display issue, not a matter of data.
amount_cell($alloc_row['Total'] - $alloc_row['amt']);
amount_cell($alloc_row['amt']);
must be
amount_cell($alloc_row['amt']);
amount_cell($alloc_row['Total'] - $alloc_row['amt']);
Thanks @kvvaradha and @notrinos. Will fix this later.
Joe
This has been fixed and committed to core.
Joe
@notrinos - glad to hear that you found patch for it. I was bit stuck so couldnt spend time while getting this issue.
@joe -
Sorry, this fix did not solve the problem, It produces the correct result for the last payment but falsifies the result of the previous payment.
The correct fix must be:
563 amount_cell($alloc_row['Total'] - $alloc_row['alloc']);
564 amount_cell($alloc_row['amt']);
No problem. Made a rerun. Thanks.
Joe
FrontAccounting forum → Accounts Receivable → Left to allocate is showing wrong.
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.