fix: date range in contact transactions.

This commit is contained in:
elforjani3
2021-05-09 00:16:38 +02:00
parent 32ad5aa25d
commit 649acc7058
2 changed files with 4 additions and 4 deletions

View File

@@ -40,8 +40,8 @@ export default function CustomersTransactionsTable({
companyName={companyName}
sheetType={formatMessage({ id: 'customers_transactions' })}
loading={isCustomersTransactionsLoading}
fromDate={query.fromDate}
toDate={query.toDate}
fromDate={query.from_date}
toDate={query.to_date}
>
<DataTable
className="bigcapital-datatable--financial-report"

View File

@@ -41,8 +41,8 @@ export default function VendorsTransactionsTable({
companyName={companyName}
sheetType={formatMessage({ id: 'vendors_transactions' })}
loading={isVendorsTransactionsLoading}
fromDate={query.fromDate}
toDate={query.toDate}
fromDate={query.from_date}
toDate={query.to_date}
>
<DataTable
className="bigcapital-datatable--financial-report"