feat: add cusomters & vendors balance summary.

This commit is contained in:
elforjani3
2021-05-06 18:04:17 +02:00
parent e104937258
commit b3dab3c9a1
7 changed files with 316 additions and 9 deletions

View File

@@ -0,0 +1,31 @@
.financial-sheet {
&--customers-balance-summary,
&--vendors-balance-summary {
.financial-sheet__table {
.thead,
.tbody {
.tr .td.customer_name ~ .td,
.tr .th.customer_name ~ .th {
text-align: right;
}
}
.tbody {
.tr:not(.no-results) {
.td {
border-bottom: 0;
padding-top: 0.4rem;
padding-bottom: 0.4rem;
}
&.row-type--TOTAL {
font-weight: 500;
.td {
border-top: 1px solid #bbb;
border-bottom: 3px double #333;
}
}
}
}
}
}
}