@@ -, +, @@ -Enable POS -Create a register and make some transactions. -Have both debits and credits -Have some older tranactions so you can look at the past_sales table. -Apply patch and regenerate the staff CSS: (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface) -Look at the sales and past_sales table. -Make sure each row header is the darker shade of gray (#e0e0e0) --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1349,6 +1349,19 @@ div { display: none; } +#sales, #past_sales { + .credit { + > td { + background-color: #e0e0e0; + } + } + .debit { + > td { + background-color: #e0e0e0; + } + } +} + .tip { color: #808080; } --