refactor(InventoryValuation).

refactor(InventoryItemDetails).
This commit is contained in:
a.bouhuolia
2022-02-12 17:03:15 +02:00
parent 72a7c4890e
commit 46570c5218
7 changed files with 155 additions and 56 deletions

View File

@@ -1,12 +1,10 @@
import React, { useEffect, useState, useCallback } from 'react';
import moment from 'moment';
import 'style/pages/FinancialStatements/SalesAndPurchasesSheet.scss';
import { InventoryValuationProvider } from './InventoryValuationProvider';
import InventoryValuationActionsBar from './InventoryValuationActionsBar';
import InventoryValuationHeader from './InventoryValuationHeader';
import InventoryValuationTable from './InventoryValuationTable';
import { InventoryValuationBody } from './InventoryValuationBody';
import DashboardPageContent from 'components/Dashboard/DashboardPageContent';
import { InventoryValuationLoadingBar } from './components';
@@ -64,15 +62,11 @@ function InventoryValuation({
<InventoryValuationLoadingBar />
<DashboardPageContent>
<div class="financial-statement financial-statement--inventory-valuation">
<InventoryValuationHeader
pageFilter={filter}
onSubmitFilter={handleFilterSubmit}
/>
<div class="financial-statement__body">
<InventoryValuationTable companyName={organizationName} />
</div>
</div>
<InventoryValuationHeader
pageFilter={filter}
onSubmitFilter={handleFilterSubmit}
/>
<InventoryValuationBody />
</DashboardPageContent>
</InventoryValuationProvider>
);