@adyen/adyen-platform-experience-web 1.0.3 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/da-DK-a148e492.cjs +2 -0
- package/dist/da-DK-a148e492.cjs.map +1 -0
- package/dist/de-DE-a39a50e8.cjs +2 -0
- package/dist/de-DE-a39a50e8.cjs.map +1 -0
- package/dist/es/components/external/PayoutDetails/components/PayoutData.js +41 -41
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +93 -94
- package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +76 -69
- package/dist/es/components/external/ReportsOverview/ReportsOverviewElement.js +25 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.js +112 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.scss.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/constants.js +5 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.js +30 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.js +149 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.scss.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/constants.js +7 -0
- package/dist/es/components/external/TransactionDetails/components/TransactionData.js +67 -46
- package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +28 -17
- package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +13 -13
- package/dist/es/components/external/TransactionsOverview/components/Category/Category.js +19 -14
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +1 -1
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +10 -10
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +11 -11
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +1 -1
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +183 -164
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +31 -24
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +95 -89
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/constants.js +6 -5
- package/dist/es/components/hooks/useCustomColumnsData.js +29 -0
- package/dist/es/components/hooks/useFreezePeriod.js +18 -0
- package/dist/es/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.js +2 -2
- package/dist/es/components/hooks/useTableColumns.js +46 -0
- package/dist/es/components/internal/Accordion/Accordion.js +15 -15
- package/dist/es/components/internal/Alert/Alert.js +62 -0
- package/dist/es/components/internal/Alert/Alert.scss.js +4 -0
- package/dist/es/components/internal/Alert/types.js +4 -0
- package/dist/es/components/internal/Button/DownloadButton/DownloadButton.js +81 -0
- package/dist/es/components/internal/Button/DownloadButton/DownloadButton.scss.js +4 -0
- package/dist/es/components/internal/Button/DownloadButton/useDownload.js +18 -0
- package/dist/es/components/internal/Card/Card.js +15 -15
- package/dist/es/components/internal/DataGrid/DataGrid.js +4 -4
- package/dist/es/components/internal/DataGrid/DataGridCell.js +12 -12
- package/dist/es/components/internal/DataGrid/components/Icon.js +17 -0
- package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
- package/dist/es/components/internal/DataGrid/components/TableCells.js +54 -37
- package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +11 -11
- package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +54 -54
- package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.js +45 -0
- package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.scss.js +4 -0
- package/dist/es/components/internal/DataOverviewDisplay/constants.js +30 -24
- package/dist/es/components/internal/DatePicker/DatePicker.js +10 -10
- package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +13 -13
- package/dist/es/components/internal/FilterBar/FilterBar.js +50 -42
- package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +7 -7
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +54 -50
- package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +1 -1
- package/dist/es/components/internal/FormFields/InputBase.js +25 -25
- package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +1 -1
- package/dist/es/components/internal/FormFields/Select/Select.js +5 -5
- package/dist/es/components/internal/FormFields/Select/components/SelectList.js +5 -5
- package/dist/es/components/internal/Image/Image.js +6 -6
- package/dist/es/components/internal/Img/Img.js +4 -4
- package/dist/es/components/internal/Modal/Modal.js +6 -6
- package/dist/es/components/internal/Pagination/Pagination.js +17 -17
- package/dist/es/components/internal/Popover/Popover.js +11 -11
- package/dist/es/components/internal/SVGIcons/Download.js +21 -0
- package/dist/es/components/internal/SVGIcons/Warning.js +23 -0
- package/dist/es/components/internal/SVGIcons/WarningFilled.js +18 -0
- package/dist/es/components/internal/StructuredList/StructuredList.js +8 -8
- package/dist/es/components/internal/Tag/Tag.js +8 -8
- package/dist/es/components/internal/Tooltip/Tooltip.js +20 -20
- package/dist/es/components/internal/Typography/Typography.js +12 -12
- package/dist/es/components/utils/getLabel.js +6 -3
- package/dist/es/core/Http/http.js +34 -31
- package/dist/es/core/Http/utils.js +39 -30
- package/dist/es/core/Localization/Localization.js +74 -76
- package/dist/es/core/Localization/constants/localization.js +9 -6
- package/dist/es/core/Localization/localization-utils.js +11 -12
- package/dist/es/core/Localization/utils.js +45 -47
- package/dist/es/core/core.js +1 -1
- package/dist/es/index.js +14 -12
- package/dist/es/translations/da-DK.json.js +2 -218
- package/dist/es/translations/de-DE.json.js +2 -218
- package/dist/es/translations/en-US.json.js +2 -218
- package/dist/es/translations/es-ES.json.js +2 -218
- package/dist/es/translations/fr-FR.json.js +2 -218
- package/dist/es/translations/index.js +39 -45
- package/dist/es/translations/it-IT.json.js +2 -218
- package/dist/es/translations/nl-NL.json.js +2 -218
- package/dist/es/translations/no-NO.json.js +2 -218
- package/dist/es/translations/pt-BR.json.js +2 -218
- package/dist/es/translations/sv-SE.json.js +2 -218
- package/dist/es/utils/preact/className.js +3 -3
- package/dist/es-ES-153e5f15.cjs +2 -0
- package/dist/es-ES-153e5f15.cjs.map +1 -0
- package/dist/fr-FR-69b3df0d.cjs +2 -0
- package/dist/fr-FR-69b3df0d.cjs.map +1 -0
- package/dist/it-IT-efca230f.cjs +2 -0
- package/dist/it-IT-efca230f.cjs.map +1 -0
- package/dist/nl-NL-ffbb8184.cjs +2 -0
- package/dist/nl-NL-ffbb8184.cjs.map +1 -0
- package/dist/no-NO-eaf65f6f.cjs +2 -0
- package/dist/no-NO-eaf65f6f.cjs.map +1 -0
- package/dist/pt-BR-590ccc53.cjs +2 -0
- package/dist/pt-BR-590ccc53.cjs.map +1 -0
- package/dist/style.css +1 -1
- package/dist/sv-SE-18f4e86e.cjs +2 -0
- package/dist/sv-SE-18f4e86e.cjs.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -1
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +2 -2
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -1
- package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts +9 -0
- package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts +8 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts +3 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts +4 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts +2 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts +15 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts +5 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/index.d.ts +2 -0
- package/dist/types/components/external/ReportsOverview/index.d.ts.map +1 -0
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +20 -2
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts +5 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/Category/Category.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts +3 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts +1 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +5 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
- package/dist/types/components/external/index.d.ts +1 -0
- package/dist/types/components/external/index.d.ts.map +1 -1
- package/dist/types/components/hooks/useCustomColumnsData.d.ts +13 -0
- package/dist/types/components/hooks/useCustomColumnsData.d.ts.map +1 -0
- package/dist/types/components/hooks/useFreezePeriod.d.ts +6 -0
- package/dist/types/components/hooks/useFreezePeriod.d.ts.map +1 -0
- package/dist/types/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.d.ts +1 -1
- package/dist/types/components/hooks/useResponsiveViewport.d.ts.map +1 -0
- package/dist/types/components/hooks/useTableColumns.d.ts +20 -0
- package/dist/types/components/hooks/useTableColumns.d.ts.map +1 -0
- package/dist/types/components/internal/Alert/Alert.d.ts +5 -0
- package/dist/types/components/internal/Alert/Alert.d.ts.map +1 -0
- package/dist/types/components/internal/Alert/types.d.ts +17 -0
- package/dist/types/components/internal/Alert/types.d.ts.map +1 -0
- package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts +16 -0
- package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts.map +1 -0
- package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts +143 -0
- package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts +2 -5
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/Icon.d.ts +7 -0
- package/dist/types/components/internal/DataGrid/components/Icon.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/types.d.ts +4 -3
- package/dist/types/components/internal/DataGrid/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts +3 -2
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts +13 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts +3 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +5 -2
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/FilterBar.d.ts +9 -2
- package/dist/types/components/internal/FilterBar/FilterBar.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/AmountFilter/RangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/index.d.ts +1 -0
- package/dist/types/components/internal/FilterBar/index.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/types.d.ts +11 -1
- package/dist/types/components/internal/FilterBar/types.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts +1 -1
- package/dist/types/components/internal/Pagination/Pagination.d.ts.map +1 -1
- package/dist/types/components/internal/SVGIcons/Download.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/Download.d.ts.map +1 -0
- package/dist/types/components/internal/SVGIcons/Warning.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/Warning.d.ts.map +1 -0
- package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/types.d.ts +1 -1
- package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -1
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +2 -2
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +33 -1
- package/dist/types/components/types.d.ts.map +1 -1
- package/dist/types/components/utils/getCommonErrorCode.d.ts +1 -1
- package/dist/types/components/utils/getCommonErrorCode.d.ts.map +1 -1
- package/dist/types/components/utils/getErrorMessage.d.ts +1 -1
- package/dist/types/components/utils/getErrorMessage.d.ts.map +1 -1
- package/dist/types/components/utils/getLabel.d.ts +4 -1
- package/dist/types/components/utils/getLabel.d.ts.map +1 -1
- package/dist/types/core/Auth/context.d.ts +8 -6
- package/dist/types/core/Auth/context.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSession.d.ts +8 -6
- package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts +8 -6
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -1
- package/dist/types/core/Http/http.d.ts.map +1 -1
- package/dist/types/core/Http/utils.d.ts +2 -0
- package/dist/types/core/Http/utils.d.ts.map +1 -1
- package/dist/types/core/Localization/Localization.d.ts +8 -10
- package/dist/types/core/Localization/Localization.d.ts.map +1 -1
- package/dist/types/core/Localization/constants/localization.d.ts +5 -2
- package/dist/types/core/Localization/constants/localization.d.ts.map +1 -1
- package/dist/types/core/Localization/localization-utils.d.ts +4 -4
- package/dist/types/core/Localization/localization-utils.d.ts.map +1 -1
- package/dist/types/core/Localization/types.d.ts +0 -19
- package/dist/types/core/Localization/types.d.ts.map +1 -1
- package/dist/types/core/Localization/utils.d.ts +7 -271
- package/dist/types/core/Localization/utils.d.ts.map +1 -1
- package/dist/types/core/core.d.ts +2 -3
- package/dist/types/core/core.d.ts.map +1 -1
- package/dist/types/core/types.d.ts +5 -4
- package/dist/types/core/types.d.ts.map +1 -1
- package/dist/types/hooks/useFetch/useFetch.d.ts +1 -1
- package/dist/types/hooks/useFetch/useFetch.d.ts.map +1 -1
- package/dist/types/hooks/useModalDetails/types.d.ts +1 -1
- package/dist/types/hooks/useModalDetails/types.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/translations/index.d.ts +44 -2529
- package/dist/types/translations/index.d.ts.map +1 -1
- package/dist/types/types/api/models/reports.d.ts +1 -1
- package/dist/types/types/api/models/reports.d.ts.map +1 -1
- package/dist/types/types/api/resources/ReportsResource.d.ts +18 -19
- package/dist/types/types/api/resources/ReportsResource.d.ts.map +1 -1
- package/dist/types/utils/types.d.ts +3 -0
- package/dist/types/utils/types.d.ts.map +1 -1
- package/package.json +7 -5
- package/dist/es/core/Localization/constants/locale.js +0 -7
- package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map +0 -1
- package/dist/types/core/Localization/constants/locale.d.ts +0 -139
- package/dist/types/core/Localization/constants/locale.d.ts.map +0 -1
|
@@ -1,116 +1,123 @@
|
|
|
1
|
-
import
|
|
2
|
-
import L from "
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import {
|
|
8
|
-
import
|
|
9
|
-
import {
|
|
10
|
-
import
|
|
11
|
-
import j from "
|
|
1
|
+
import Y from "classnames";
|
|
2
|
+
import L from "../../../../../core/Context/useCoreContext.js";
|
|
3
|
+
import { getCurrencyCode as M } from "../../../../../core/Localization/amount/amount-util.js";
|
|
4
|
+
import { useMemo as c, useCallback as P } from "../../../../../external/preact/hooks/dist/hooks.module.js";
|
|
5
|
+
import w from "../../../../hooks/useTimezoneAwareDateFormatting.js";
|
|
6
|
+
import { CellTextPosition as x } from "../../../../internal/DataGrid/types.js";
|
|
7
|
+
import { DATE_FORMAT_PAYOUTS_MOBILE as B, DATE_FORMAT_PAYOUTS as R } from "../../../../internal/DataOverviewDisplay/constants.js";
|
|
8
|
+
import U from "../../../../internal/DataOverviewError/DataOverviewError.js";
|
|
9
|
+
import { TypographyVariant as s } from "../../../../internal/Typography/types.js";
|
|
10
|
+
import u from "../../../../internal/Typography/Typography.js";
|
|
11
|
+
import { getLabel as j } from "../../../../utils/getLabel.js";
|
|
12
|
+
import { useResponsiveViewport as N, mediaQueries as v } from "../../../../hooks/useResponsiveViewport.js";
|
|
13
|
+
import { BASE_CLASS as I, NET_PAYOUT_CLASS as G } from "./constants.js";
|
|
12
14
|
import "./PayoutsTable.scss.js";
|
|
13
|
-
import {
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
|
|
15
|
+
import { useTableColumns as V } from "../../../../hooks/useTableColumns.js";
|
|
16
|
+
import { jsx as o } from "../../../../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
17
|
+
import g from "../../../../internal/DataGrid/DataGrid.js";
|
|
18
|
+
import $ from "../../../../internal/Pagination/Pagination.js";
|
|
19
|
+
import { useAuthContext as W } from "../../../../../core/Auth/context.js";
|
|
20
|
+
const h = ["fundsCapturedAmount", "adjustmentAmount", "payoutAmount"], q = ["createdAt", ...h], z = (n) => h.includes(n), Ar = ({
|
|
18
21
|
error: n,
|
|
19
|
-
loading:
|
|
22
|
+
loading: a,
|
|
20
23
|
onContactSupport: l,
|
|
21
|
-
onRowClick:
|
|
22
|
-
showDetails:
|
|
23
|
-
showPagination:
|
|
24
|
-
data:
|
|
25
|
-
...
|
|
24
|
+
onRowClick: D,
|
|
25
|
+
showDetails: H,
|
|
26
|
+
showPagination: O,
|
|
27
|
+
data: t,
|
|
28
|
+
...E
|
|
26
29
|
}) => {
|
|
27
30
|
const {
|
|
28
31
|
i18n: i
|
|
29
|
-
} =
|
|
32
|
+
} = L(), {
|
|
30
33
|
dateFormat: p
|
|
31
|
-
} =
|
|
32
|
-
refreshing:
|
|
33
|
-
} =
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
34
|
+
} = w("UTC"), {
|
|
35
|
+
refreshing: A
|
|
36
|
+
} = W(), S = c(() => a || A, [a, A]), e = N(v.up.sm), m = P((r) => {
|
|
37
|
+
var d, y, C, T;
|
|
38
|
+
const f = i.get(j(r));
|
|
39
|
+
if (z(r))
|
|
40
|
+
return {
|
|
41
|
+
label: (y = (d = t == null ? void 0 : t[0]) == null ? void 0 : d[r]) != null && y.currency ? `${f} (${M((T = (C = t == null ? void 0 : t[0]) == null ? void 0 : C[r]) == null ? void 0 : T.currency)})` : f,
|
|
42
|
+
position: x.RIGHT
|
|
43
|
+
};
|
|
44
|
+
}, [t, i]), _ = V({
|
|
45
|
+
fields: q,
|
|
46
|
+
columnConfig: c(() => ({
|
|
47
|
+
fundsCapturedAmount: {
|
|
48
|
+
...m("fundsCapturedAmount"),
|
|
49
|
+
visible: e
|
|
50
|
+
},
|
|
51
|
+
adjustmentAmount: {
|
|
52
|
+
...m("adjustmentAmount"),
|
|
53
|
+
visible: e
|
|
54
|
+
},
|
|
55
|
+
payoutAmount: m("payoutAmount")
|
|
56
|
+
}), [m, e])
|
|
57
|
+
}), F = {
|
|
50
58
|
title: "noPayoutsFound",
|
|
51
59
|
message: ["tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain"]
|
|
52
|
-
},
|
|
60
|
+
}, b = c(() => () => o(U, {
|
|
53
61
|
error: n,
|
|
54
62
|
errorMessage: "weCouldNotLoadYourPayouts",
|
|
55
63
|
onContactSupport: l
|
|
56
64
|
}), [n, l]);
|
|
57
|
-
return
|
|
58
|
-
className:
|
|
59
|
-
children:
|
|
60
|
-
errorDisplay:
|
|
65
|
+
return o("div", {
|
|
66
|
+
className: I,
|
|
67
|
+
children: o(g, {
|
|
68
|
+
errorDisplay: b,
|
|
61
69
|
error: n,
|
|
62
|
-
columns:
|
|
63
|
-
data:
|
|
64
|
-
loading:
|
|
70
|
+
columns: _,
|
|
71
|
+
data: t,
|
|
72
|
+
loading: S,
|
|
65
73
|
outline: !1,
|
|
66
74
|
onRowClick: {
|
|
67
|
-
callback:
|
|
75
|
+
callback: D
|
|
68
76
|
},
|
|
69
|
-
emptyTableMessage:
|
|
77
|
+
emptyTableMessage: F,
|
|
70
78
|
customCells: {
|
|
71
79
|
createdAt: ({
|
|
72
80
|
value: r
|
|
73
|
-
}) => r ? e ? r &&
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
hour: "2-digit",
|
|
78
|
-
minute: "2-digit",
|
|
79
|
-
hour12: !1
|
|
80
|
-
}) : null,
|
|
81
|
+
}) => r ? e ? r && o(u, {
|
|
82
|
+
variant: s.BODY,
|
|
83
|
+
children: p(r, R)
|
|
84
|
+
}) : p(r, B) : null,
|
|
81
85
|
fundsCapturedAmount: ({
|
|
82
86
|
value: r
|
|
83
|
-
}) => r &&
|
|
87
|
+
}) => r && o(u, {
|
|
88
|
+
variant: s.BODY,
|
|
84
89
|
children: i.amount(r.value, r.currency, {
|
|
85
90
|
hideCurrency: !0
|
|
86
91
|
})
|
|
87
92
|
}),
|
|
88
93
|
adjustmentAmount: ({
|
|
89
94
|
value: r
|
|
90
|
-
}) => r &&
|
|
95
|
+
}) => r && o(u, {
|
|
96
|
+
variant: s.BODY,
|
|
91
97
|
children: i.amount(r.value, r.currency, {
|
|
92
98
|
hideCurrency: !0
|
|
93
99
|
})
|
|
94
100
|
}),
|
|
95
101
|
payoutAmount: ({
|
|
96
102
|
value: r
|
|
97
|
-
}) => r &&
|
|
98
|
-
|
|
99
|
-
|
|
103
|
+
}) => r && o(u, {
|
|
104
|
+
variant: s.BODY,
|
|
105
|
+
className: Y({
|
|
106
|
+
[`${G}--strong`]: !e
|
|
100
107
|
}),
|
|
101
108
|
children: i.amount(r.value, r.currency, {
|
|
102
109
|
hideCurrency: e
|
|
103
110
|
})
|
|
104
111
|
})
|
|
105
112
|
},
|
|
106
|
-
children:
|
|
107
|
-
children:
|
|
108
|
-
...
|
|
113
|
+
children: O && o(g.Footer, {
|
|
114
|
+
children: o($, {
|
|
115
|
+
...E
|
|
109
116
|
})
|
|
110
117
|
})
|
|
111
118
|
})
|
|
112
119
|
});
|
|
113
120
|
};
|
|
114
121
|
export {
|
|
115
|
-
|
|
122
|
+
Ar as PayoutsTable
|
|
116
123
|
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var s = Object.defineProperty;
|
|
2
|
+
var p = (o, t, e) => t in o ? s(o, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[t] = e;
|
|
3
|
+
var n = (o, t, e) => (p(o, typeof t != "symbol" ? t + "" : t, e), e);
|
|
4
|
+
import c from "./components/ReportsOverviewContainer/ReportsOverviewContainer.js";
|
|
5
|
+
import i from "../UIElement/UIElement.js";
|
|
6
|
+
import { jsx as m } from "../../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
7
|
+
class r extends i {
|
|
8
|
+
constructor(e) {
|
|
9
|
+
super(e);
|
|
10
|
+
n(this, "componentToRender", () => m(c, {
|
|
11
|
+
...this.props,
|
|
12
|
+
balanceAccountId: this.props.balanceAccountId,
|
|
13
|
+
ref: (e) => {
|
|
14
|
+
this.componentRef = e;
|
|
15
|
+
}
|
|
16
|
+
}));
|
|
17
|
+
this.componentToRender = this.componentToRender.bind(this);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
n(r, "type", "reports");
|
|
21
|
+
const h = r;
|
|
22
|
+
export {
|
|
23
|
+
r as ReportsElement,
|
|
24
|
+
h as default
|
|
25
|
+
};
|
package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.js
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { useCallback as U, useMemo as f, useEffect as g } from "../../../../../external/preact/hooks/dist/hooks.module.js";
|
|
2
|
+
import x from "../../../../hooks/useBalanceAccountSelection.js";
|
|
3
|
+
import M from "../../../../hooks/useDefaultOverviewFilterParams.js";
|
|
4
|
+
import v from "../../../../internal/FilterBar/filters/DateFilter/DateFilter.js";
|
|
5
|
+
import { LIMIT_OPTIONS as q, DEFAULT_PAGE_LIMIT as K } from "../../../../internal/Pagination/constants.js";
|
|
6
|
+
import { FilterParam as o } from "../../../../types.js";
|
|
7
|
+
import { ReportsTable as j } from "../ReportsTable/ReportsTable.js";
|
|
8
|
+
import { BASE_CLASS as k, EARLIEST_PAYOUT_SINCE_DATE as z } from "./constants.js";
|
|
9
|
+
import "./ReportsOverview.scss.js";
|
|
10
|
+
import { jsx as e } from "../../../../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
11
|
+
import B from "../../../../internal/Pagination/hooks/useCursorPaginatedRecords.js";
|
|
12
|
+
import G, { useFilterBarState as H, FilterBarMobileSwitch as Y } from "../../../../internal/FilterBar/FilterBar.js";
|
|
13
|
+
import J from "../../../../internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js";
|
|
14
|
+
import { useAuthContext as Q } from "../../../../../core/Auth/context.js";
|
|
15
|
+
import { isFunction as V } from "../../../../../utils/value/is.js";
|
|
16
|
+
import { DataOverviewHeader as W } from "../../../../internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.js";
|
|
17
|
+
const Er = ({
|
|
18
|
+
onFiltersChanged: i,
|
|
19
|
+
balanceAccounts: n,
|
|
20
|
+
allowLimitSelection: l,
|
|
21
|
+
preferredLimit: u = K,
|
|
22
|
+
isLoadingBalanceAccount: c,
|
|
23
|
+
onContactSupport: E,
|
|
24
|
+
hideTitle: T
|
|
25
|
+
}) => {
|
|
26
|
+
const {
|
|
27
|
+
getReports: s
|
|
28
|
+
} = Q().endpoints, {
|
|
29
|
+
activeBalanceAccount: r,
|
|
30
|
+
balanceAccountSelectionOptions: S,
|
|
31
|
+
onBalanceAccountSelection: F
|
|
32
|
+
} = x(n), {
|
|
33
|
+
defaultParams: t,
|
|
34
|
+
nowTimestamp: C,
|
|
35
|
+
refreshNowTimestamp: a
|
|
36
|
+
} = M("reports", r), I = U(async (m, y) => s({
|
|
37
|
+
signal: y,
|
|
38
|
+
errorLevel: "error"
|
|
39
|
+
}, {
|
|
40
|
+
query: {
|
|
41
|
+
...m,
|
|
42
|
+
type: "payout",
|
|
43
|
+
createdSince: m[o.CREATED_SINCE] ?? t.current.defaultFilterParams[o.CREATED_SINCE],
|
|
44
|
+
createdUntil: m[o.CREATED_UNTIL] ?? t.current.defaultFilterParams[o.CREATED_UNTIL],
|
|
45
|
+
balanceAccountId: (r == null ? void 0 : r.id) ?? ""
|
|
46
|
+
}
|
|
47
|
+
}), [r == null ? void 0 : r.id, t, s]), p = H(), _ = f(() => V(i) ? i : void 0, [i]), A = f(() => l ? q : void 0, [l]), {
|
|
48
|
+
canResetFilters: D,
|
|
49
|
+
error: O,
|
|
50
|
+
fetching: P,
|
|
51
|
+
filters: d,
|
|
52
|
+
limit: L,
|
|
53
|
+
limitOptions: R,
|
|
54
|
+
records: h,
|
|
55
|
+
resetFilters: X,
|
|
56
|
+
updateFilters: N,
|
|
57
|
+
updateLimit: b,
|
|
58
|
+
...w
|
|
59
|
+
} = B({
|
|
60
|
+
fetchRecords: I,
|
|
61
|
+
dataField: "data",
|
|
62
|
+
filterParams: t.current.defaultFilterParams,
|
|
63
|
+
initialFiltersSameAsDefault: !0,
|
|
64
|
+
onFiltersChanged: _,
|
|
65
|
+
preferredLimit: u,
|
|
66
|
+
preferredLimitOptions: A,
|
|
67
|
+
enabled: !!(r != null && r.id) && !!s
|
|
68
|
+
});
|
|
69
|
+
return g(() => {
|
|
70
|
+
a();
|
|
71
|
+
}, [d, a]), e("div", {
|
|
72
|
+
className: k,
|
|
73
|
+
children: [e(W, {
|
|
74
|
+
hideTitle: T,
|
|
75
|
+
titleKey: "reportsTitle",
|
|
76
|
+
descriptionKey: "reportsNotice",
|
|
77
|
+
children: e(Y, {
|
|
78
|
+
...p
|
|
79
|
+
})
|
|
80
|
+
}), e(G, {
|
|
81
|
+
...p,
|
|
82
|
+
children: [e(J, {
|
|
83
|
+
activeBalanceAccount: r,
|
|
84
|
+
balanceAccountSelectionOptions: S,
|
|
85
|
+
onBalanceAccountSelection: F
|
|
86
|
+
}), e(v, {
|
|
87
|
+
canResetFilters: D,
|
|
88
|
+
defaultParams: t,
|
|
89
|
+
filters: d,
|
|
90
|
+
nowTimestamp: C,
|
|
91
|
+
refreshNowTimestamp: a,
|
|
92
|
+
sinceDate: z,
|
|
93
|
+
timezone: "UTC",
|
|
94
|
+
updateFilters: N
|
|
95
|
+
})]
|
|
96
|
+
}), e(j, {
|
|
97
|
+
balanceAccountId: r == null ? void 0 : r.id,
|
|
98
|
+
loading: P || c || !n || !r,
|
|
99
|
+
data: h,
|
|
100
|
+
showPagination: !0,
|
|
101
|
+
limit: L,
|
|
102
|
+
limitOptions: R,
|
|
103
|
+
onContactSupport: E,
|
|
104
|
+
onLimitSelection: b,
|
|
105
|
+
error: O,
|
|
106
|
+
...w
|
|
107
|
+
})]
|
|
108
|
+
});
|
|
109
|
+
};
|
|
110
|
+
export {
|
|
111
|
+
Er as ReportsOverview
|
|
112
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import c from "../../../../hooks/useBalanceAccounts.js";
|
|
2
|
+
import i from "../../../../internal/DataOverviewContainer/DataOverviewContainer.js";
|
|
3
|
+
import { ReportsOverview as s } from "../ReportsOverview/ReportsOverview.js";
|
|
4
|
+
import { BASE_CLASS as u } from "./constants.js";
|
|
5
|
+
import { jsx as r } from "../../../../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
6
|
+
function d({
|
|
7
|
+
...o
|
|
8
|
+
}) {
|
|
9
|
+
const {
|
|
10
|
+
balanceAccounts: e,
|
|
11
|
+
isBalanceAccountIdWrong: t,
|
|
12
|
+
isFetching: n,
|
|
13
|
+
error: a
|
|
14
|
+
} = c(o.balanceAccountId);
|
|
15
|
+
return r(i, {
|
|
16
|
+
balanceAccountsError: a,
|
|
17
|
+
className: u,
|
|
18
|
+
errorMessage: "weCouldNotLoadTheReportsOverview",
|
|
19
|
+
isBalanceAccountIdWrong: t,
|
|
20
|
+
onContactSupport: o.onContactSupport,
|
|
21
|
+
children: r(s, {
|
|
22
|
+
...o,
|
|
23
|
+
balanceAccounts: e,
|
|
24
|
+
isLoadingBalanceAccount: n
|
|
25
|
+
})
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
export {
|
|
29
|
+
d as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { useState as B, useMemo as n, useCallback as Y } from "../../../../../external/preact/hooks/dist/hooks.module.js";
|
|
2
|
+
import M from "../../../../../core/Context/useCoreContext.js";
|
|
3
|
+
import P from "../../../../hooks/useFreezePeriod.js";
|
|
4
|
+
import x from "../../../../hooks/useTimezoneAwareDateFormatting.js";
|
|
5
|
+
import I from "../../../../internal/Alert/Alert.js";
|
|
6
|
+
import { AlertTypeOption as V } from "../../../../internal/Alert/types.js";
|
|
7
|
+
import q from "../../../../internal/Button/DownloadButton/DownloadButton.js";
|
|
8
|
+
import { CellTextPosition as z } from "../../../../internal/DataGrid/types.js";
|
|
9
|
+
import { DATE_FORMAT_REPORTS as D } from "../../../../internal/DataOverviewDisplay/constants.js";
|
|
10
|
+
import G from "../../../../internal/DataOverviewError/DataOverviewError.js";
|
|
11
|
+
import U from "../../../../internal/SVGIcons/Warning.js";
|
|
12
|
+
import { TypographyVariant as a } from "../../../../internal/Typography/types.js";
|
|
13
|
+
import i from "../../../../internal/Typography/Typography.js";
|
|
14
|
+
import { getLabel as $ } from "../../../../utils/getLabel.js";
|
|
15
|
+
import { useResponsiveViewport as g, mediaQueries as E } from "../../../../hooks/useResponsiveViewport.js";
|
|
16
|
+
import { BASE_CLASS as j, DATE_TYPE_CLASS as H, DATE_TYPE_DATE_SECTION_CLASS as Q, DISABLED_BUTTONS_TIMEOUT as X } from "./constants.js";
|
|
17
|
+
import "./ReportsTable.scss.js";
|
|
18
|
+
import { jsx as r } from "../../../../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
19
|
+
import h from "../../../../internal/DataGrid/DataGrid.js";
|
|
20
|
+
import k from "../../../../internal/Pagination/Pagination.js";
|
|
21
|
+
import { useAuthContext as J } from "../../../../../core/Auth/context.js";
|
|
22
|
+
const K = ["createdAt", "dateAndReportType", "reportType", "reportFile"], Ee = ({
|
|
23
|
+
error: s,
|
|
24
|
+
loading: p,
|
|
25
|
+
balanceAccountId: w,
|
|
26
|
+
onContactSupport: l,
|
|
27
|
+
showPagination: _,
|
|
28
|
+
data: T,
|
|
29
|
+
...R
|
|
30
|
+
}) => {
|
|
31
|
+
const {
|
|
32
|
+
i18n: t
|
|
33
|
+
} = M(), {
|
|
34
|
+
dateFormat: u
|
|
35
|
+
} = x("UTC"), {
|
|
36
|
+
freeze: S,
|
|
37
|
+
frozen: O
|
|
38
|
+
} = P(X), [d, m] = B(null), {
|
|
39
|
+
refreshing: f
|
|
40
|
+
} = J(), b = n(() => p || f, [p, f]), c = g(E.up.sm), A = g(E.down.xs), y = n(() => ({
|
|
41
|
+
dateAndReportType: A,
|
|
42
|
+
createdAt: c,
|
|
43
|
+
reportType: c,
|
|
44
|
+
reportFile: !0
|
|
45
|
+
}), [A, c]), C = n(() => K.map((e) => {
|
|
46
|
+
const o = t.get($(e));
|
|
47
|
+
return {
|
|
48
|
+
key: e,
|
|
49
|
+
label: o,
|
|
50
|
+
position: A && e === "reportFile" ? z.RIGHT : void 0,
|
|
51
|
+
visible: y[e]
|
|
52
|
+
};
|
|
53
|
+
}), [t, T, y]), F = Y(() => {
|
|
54
|
+
m(null);
|
|
55
|
+
}, []), N = {
|
|
56
|
+
title: "noReportsFound",
|
|
57
|
+
message: ["tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain"]
|
|
58
|
+
}, v = n(() => () => r(G, {
|
|
59
|
+
error: s,
|
|
60
|
+
errorMessage: "weCouldNotLoadYourReports",
|
|
61
|
+
onContactSupport: l
|
|
62
|
+
}), [s, l]), L = n(() => r(U, {}), []), W = n(() => (e) => {
|
|
63
|
+
const o = {};
|
|
64
|
+
switch (e == null ? void 0 : e.errorCode) {
|
|
65
|
+
case "999_429_001":
|
|
66
|
+
o.title = t.get("error.somethingWentWrongWithDownload"), o.description = t.get("reportsError.tooManyDownloads");
|
|
67
|
+
break;
|
|
68
|
+
case "00_500":
|
|
69
|
+
default:
|
|
70
|
+
o.title = t.get("error.somethingWentWrongWithDownload"), o.description = t.get("error.pleaseTryAgainLater");
|
|
71
|
+
break;
|
|
72
|
+
}
|
|
73
|
+
m(o);
|
|
74
|
+
}, [s, l]);
|
|
75
|
+
return p && m(null), r("div", {
|
|
76
|
+
className: j,
|
|
77
|
+
children: [d && r(I, {
|
|
78
|
+
isOpen: !!d,
|
|
79
|
+
onClose: F,
|
|
80
|
+
type: V.WARNING,
|
|
81
|
+
className: "adyen-pe-reports-table-alert",
|
|
82
|
+
...d
|
|
83
|
+
}), r(h, {
|
|
84
|
+
errorDisplay: v,
|
|
85
|
+
error: s,
|
|
86
|
+
columns: C,
|
|
87
|
+
data: T,
|
|
88
|
+
loading: b,
|
|
89
|
+
outline: !1,
|
|
90
|
+
emptyTableMessage: N,
|
|
91
|
+
customCells: {
|
|
92
|
+
createdAt: ({
|
|
93
|
+
value: e
|
|
94
|
+
}) => e ? e && r(i, {
|
|
95
|
+
variant: a.BODY,
|
|
96
|
+
children: u(e, D)
|
|
97
|
+
}) : null,
|
|
98
|
+
dateAndReportType: ({
|
|
99
|
+
item: e
|
|
100
|
+
}) => r("div", {
|
|
101
|
+
className: H,
|
|
102
|
+
children: [r(i, {
|
|
103
|
+
variant: a.BODY,
|
|
104
|
+
stronger: !0,
|
|
105
|
+
children: t.get(`reportType.${e == null ? void 0 : e.type}`)
|
|
106
|
+
}), r(i, {
|
|
107
|
+
className: Q,
|
|
108
|
+
variant: a.BODY,
|
|
109
|
+
children: u(e.createdAt, D)
|
|
110
|
+
})]
|
|
111
|
+
}),
|
|
112
|
+
reportType: ({
|
|
113
|
+
item: e
|
|
114
|
+
}) => (e == null ? void 0 : e.type) && r(i, {
|
|
115
|
+
variant: a.BODY,
|
|
116
|
+
children: t.get(`reportType.${e == null ? void 0 : e.type}`)
|
|
117
|
+
}),
|
|
118
|
+
reportFile: ({
|
|
119
|
+
item: e
|
|
120
|
+
}) => {
|
|
121
|
+
const o = {
|
|
122
|
+
query: {
|
|
123
|
+
balanceAccountId: w,
|
|
124
|
+
createdAt: e.createdAt,
|
|
125
|
+
type: e.type
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
return r(q, {
|
|
129
|
+
className: "adyen-pe-reports-table--download",
|
|
130
|
+
endpointName: "downloadReport",
|
|
131
|
+
disabled: O,
|
|
132
|
+
params: o,
|
|
133
|
+
onDownloadRequested: S,
|
|
134
|
+
setError: W,
|
|
135
|
+
errorDisplay: L
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
children: _ && r(h.Footer, {
|
|
140
|
+
children: r(k, {
|
|
141
|
+
...R
|
|
142
|
+
})
|
|
143
|
+
})
|
|
144
|
+
})]
|
|
145
|
+
});
|
|
146
|
+
};
|
|
147
|
+
export {
|
|
148
|
+
Ee as ReportsTable
|
|
149
|
+
};
|