reforting(style): sales & purchases by item & inventory valuation.

This commit is contained in:
elforjani3
2021-03-29 19:44:58 +02:00
parent 8336dcf2eb
commit 78d4b56e92
6 changed files with 6 additions and 57 deletions

View File

@@ -1,7 +1,7 @@
import React, { useEffect, useState, useCallback } from 'react';
import moment from 'moment';
import 'style/pages/FinancialStatements/InventoryValuation.scss';
import 'style/pages/FinancialStatements/SalesAndPurchasesSheet.scss';
import { InventoryValuationProvider } from './InventoryValuationProvider';
import InventoryValuationActionsBar from './InventoryValuationActionsBar';

View File

@@ -1,7 +1,7 @@
import React, { useEffect, useState, useCallback } from 'react';
import moment from 'moment';
import 'style/pages/FinancialStatements/PurchasesByItems.scss';
import 'style/pages/FinancialStatements/SalesAndPurchasesSheet.scss';
import { PurchasesByItemsProvider } from './PurchasesByItemsProvider';
import PurchasesByItemsActionsBar from './PurchasesByItemsActionsBar';

View File

@@ -1,7 +1,8 @@
import React, { useEffect, useState, useCallback } from 'react';
import moment from 'moment';
import 'style/pages/FinancialStatements/SalesByItems.scss';
import 'style/pages/FinancialStatements/SalesAndPurchasesSheet.scss';
import { SalesByItemProvider } from './SalesByItemProvider';
import SalesByItemsActionsBar from './SalesByItemsActionsBar';

View File

@@ -1,27 +0,0 @@
.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

@@ -1,4 +1,6 @@
.financial-sheet {
&--sales-by-items,
&--purchases-by-items,
&--inventory-valuation {
min-width: 800px;

View File

@@ -1,27 +0,0 @@
.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;
}
}
}
}
}