feat(server): styling financial reports

This commit is contained in:
Ahmed Bouhuolia
2024-02-20 21:36:16 +02:00
parent c06a8d9ca3
commit f6f6bc31b6
12 changed files with 147 additions and 13 deletions

View File

@@ -1,7 +1,6 @@
export enum ROW_TYPE {
TOTAL = 'TOTAL',
ITEM = 'ITEM'
ITEM = 'ITEM',
}
export const HtmlTableCustomCss = `
@@ -10,4 +9,15 @@ table tr.row-type--total td {
border-bottom: 3px double #000;
font-weight: 600;
}
`;
table .column--item_name{
width: 300px;
}
table .column--quantity_purchases,
table .column--purchase_amount,
table .column--average_cost,
table .cell--quantity_purchases,
table .cell--purchase_amount,
table .cell--average_cost{
text-align: right;
}
`;