feat(financial statement): sales by items.

This commit is contained in:
elforjani3
2021-03-29 19:30:02 +02:00
parent 0567b42e34
commit 0479614b82
11 changed files with 579 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
.financial-sheet {
&--purchases-by-items {
min-width: 800px;
.financial-sheet__table {
.thead,
.tbody {
.tr .td:not(:first-child),
.tr .th:not(:first-child) {
text-align: right;
}
}
.tbody {
.tr .td {
border-bottom: 0;
padding-top: 0.4rem;
padding-bottom: 0.4rem;
}
.tr.row_type--total .td {
border-top: 1px solid #000;
font-weight: 500;
border-bottom: 3px double #000;
}
}
}
}
}

View File

@@ -0,0 +1,27 @@
.financial-sheet {
&--sales-by-items {
min-width: 800px;
.financial-sheet__table {
.thead,
.tbody {
.tr .td:not(:first-child),
.tr .th:not(:first-child) {
text-align: right;
}
}
.tbody {
.tr .td {
border-bottom: 0;
padding-top: 0.4rem;
padding-bottom: 0.4rem;
}
.tr.row_type--total .td {
border-top: 1px solid #000;
font-weight: 500;
border-bottom: 3px double #000;
}
}
}
}
}