Changeset 87c9f1e for src/sections/invoice/view/invoice-list-view.tsx
- Timestamp:
- 02/27/25 00:42:38 (5 weeks ago)
- Branches:
- main
- Children:
- 32e9876
- Parents:
- 3c5302a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sections/invoice/view/invoice-list-view.tsx
r3c5302a r87c9f1e 59 59 { id: 'currency', label: 'Currency' }, 60 60 { id: 'invoicePeriod', label: 'Invoice Period' }, 61 { id: ' createDate', label: 'Create' },61 { id: 'issueDate', label: 'Create' }, 62 62 { id: 'dueDate', label: 'Due' }, 63 63 { id: 'sent', label: 'Sent', align: 'center' }, … … 152 152 153 153 const table = useTable({ 154 defaultOrderBy: ' createDate',154 defaultOrderBy: 'issueDate', 155 155 defaultOrder: 'desc', 156 156 defaultDense: true, … … 166 166 collections.invoice, 167 167 JSON.stringify({ 168 where: [[' createDate', '>=', filters.startDate]],169 orderBy: ' createDate',168 where: [['issueDate', '>=', filters.startDate]], 169 orderBy: 'issueDate', 170 170 direction: 'desc', 171 171 }), … … 275 275 async (invoice: Invoice) => { 276 276 const serializedParams = JSON.stringify({ 277 where: [[' createDate', '>=', filters.startDate]],278 orderBy: ' createDate',277 where: [['issueDate', '>=', filters.startDate]], 278 orderBy: 'issueDate', 279 279 direction: 'desc', 280 280 }); … … 671 671 inputData = inputData.filter( 672 672 (invoice) => 673 fTimestamp(invoice. createDate.getTime()) >= fTimestamp(startDate.getTime()) &&674 fTimestamp(invoice. createDate.getTime()) <= fTimestamp(endDate.getTime())673 fTimestamp(invoice.issueDate.getTime()) >= fTimestamp(startDate.getTime()) && 674 fTimestamp(invoice.issueDate.getTime()) <= fTimestamp(endDate.getTime()) 675 675 ); 676 676 }
Note:
See TracChangeset
for help on using the changeset viewer.