// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; import { TableStyle } from '@/constants'; import { ReportDataTable, FinancialSheet } from '@/components'; import { useAPAgingSummaryContext } from './APAgingSummaryProvider'; import { useAPAgingSummaryColumns } from './components'; import { tableRowTypesToClassnames } from '@/utils'; /** * AP aging summary table sheet. */ export default function APAgingSummaryTable({ //#ownProps organizationName, }) { // AP aging summary report content. const { APAgingSummary: { table, query }, isAPAgingLoading, } = useAPAgingSummaryContext(); // AP aging summary columns. const columns = useAPAgingSummaryColumns(); return ( ); } const APAgingSummaryDataTable = styled(ReportDataTable)` .table { .tbody .tr { .td { border-bottom: 0; padding-top: 0.32rem; padding-bottom: 0.32rem; } &:not(.no-results) { .td { border-bottom: 0; padding-top: 0.4rem; padding-bottom: 0.4rem; } &:not(:first-child) .td { border-top: 1px solid transparent; } &.row_type--total { font-weight: 500; .td { border-top: 1px solid #bbb; border-bottom: 3px double #333; } } } } } `;