![]() |
fhumanes 9/20/2020 |
Have you tried the dashboard option? |
![]() |
mbintex 9/20/2020 |
Put a snippet on your list page and in this snippet query for the total with DB::Query and echo the result. |
![]() |
HJB 9/20/2020 |
https://asprunner.com/forums/topic/21091-implementing-running-total-in-phprunner/ |
D
|
david22585 9/20/2020 |
What I've done for accounting/money tracking was to create a separate column for the balance. Whenever a new deposit/withdraw is done, I read the last balance, add/subtract from that, and set that as the new balance on that row for that transaction. I've prevented editing the deposit/withdraw amounts, as to not taint the log with the ability to change data. If a correction is needed, a new entry must be made. |
![]() |
Sergey Kornilov admin 9/21/2020 |
I would also suggest using a code snippet for this purpose and calculating grand totals manually. |
J
|
Jan author 9/21/2020 |
Thanks ! |