No more trailing spaces in the print report
This commit is contained in:
parent
a53874d56c
commit
18a1c8a3fb
3 changed files with 5 additions and 5 deletions
|
|
@ -691,12 +691,12 @@ public:
|
||||||
" \"\") %(payee)%(xact.comment)\n"
|
" \"\") %(payee)%(xact.comment)\n"
|
||||||
" %(xact.uncleared ?"
|
" %(xact.uncleared ?"
|
||||||
" (cleared ? \"* \" : (pending ? \"! \" : \"\")) : \"\")"
|
" (cleared ? \"* \" : (pending ? \"! \" : \"\")) : \"\")"
|
||||||
"%-34(account)"
|
"%(calculated ? account : justify(account, 34, -1, false))"
|
||||||
" %12(calculated ? \"\" : justify(scrub(amount), 12, -1, true))"
|
"%(calculated ? \"\" : \" \" + justify(scrub(amount), 12, -1, true))"
|
||||||
"%(has_cost & !cost_calculated ?"
|
"%(has_cost & !cost_calculated ?"
|
||||||
" \" @ \" + justify(scrub(abs(cost / amount)), 0) : \"\")"
|
" \" @ \" + justify(scrub(abs(cost / amount)), 0) : \"\")"
|
||||||
"%(comment)\n%/"
|
"%(comment)\n%/"
|
||||||
" %$7%$8 %$9%$A%$B\n%/\n");
|
" %$7%$8%$9%$A%$B\n%/\n");
|
||||||
});
|
});
|
||||||
|
|
||||||
OPTION_(report_t, quantity, DO() { // -O
|
OPTION_(report_t, quantity, DO() { // -O
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue