Files
bigcapital/packages/server/src/services/FinancialStatements/SalesByItems/constants.ts
2024-02-20 21:36:16 +02:00

24 lines
454 B
TypeScript

export enum ROW_TYPE {
ITEM = 'ITEM',
TOTAL = 'TOTAL',
}
export const HtmlTableCustomCss = `
table tr.row-type--total td {
border-top: 1px solid #bbb;
border-bottom: 3px double #000;
font-weight: 600;
}
table .column--item_name{
width: 300px;
}
table .column--average_price,
table .column--sold_quantity,
table .column--sold_amount,
table .cell--average_price,
table .cell--sold_quantity,
table .cell--sold_amount{
text-align: right;
}
`;