commit 744907c0ac4e3333c209a4c552cf87a396db83e2
parent 7224fa517cbf2fe766840819d70bef234805e1d8
Author: Claudio Alessi <smoppy@gmail.com>
Date: Sat, 29 Jun 2024 13:08:13 +0200
Add income and expenses in listing resume.
Diffstat:
M | sw.c | | | 23 | +++++++++++++++++------ |
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/sw.c b/sw.c
@@ -184,26 +184,37 @@ void
showmovs(int limit) {
Movement *m;
time_t ts;
- float tot = 0, partial = 0;
+ float tot = 0, partial = 0, in = 0, ex = 0, pin = 0, pex = 0;
int nmovs = 0, pmovs = 0;
char time[32];
if(limit)
printf("%5s | %16s | %8s | %s\n", "id", "date time", "amount", "note");
for(m = movs; m; m = m->next) {
- tot += m->amount;
++nmovs;
+ tot += m->amount;
+ if(m->amount >= 0)
+ in += m->amount;
+ else
+ ex += m->amount;
if(pmovs >= limit || m->filtered)
continue;
ts = m->ts;
- partial += m->amount;
++pmovs;
+ partial += m->amount;
+ if(m->amount >= 0)
+ pin += m->amount;
+ else
+ pex += m->amount;
strftime(time, sizeof time, "%d/%m/%Y %H:%M", localtime(&ts));
printf("%5d | %16s | %8.2f | %s\n", m->id, time, m->amount, m->note);
}
- if(limit > 1)
- printf("%5s | %17s: %8.2f | %d movements\n", "", "Partial", partial, pmovs);
- printf("%5s | %17s: %8.2f | %d movements\n", "", "Total", tot, nmovs);
+ if(limit > 1) {
+ printf("%5s | %17s: %8.2f | income=%.2f expenses=%.2f movements=%d\n", "",
+ "Partial", partial, pin, pex, pmovs);
+ }
+ printf("%5s | %17s: %8.2f | income=%.2f expenses=%.2f movements=%d\n",
+ "", "Total", tot, in, ex, nmovs);
}
void