| @@ -61,7 +61,7 @@ export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, a | |||||
| }, | }, | ||||
| { | { | ||||
| field: 'actions', | field: 'actions', | ||||
| headerName: 'Transaction No.', | |||||
| headerName: 'Payment No.', | |||||
| flex: 1, | flex: 1, | ||||
| minWidth: 200, | minWidth: 200, | ||||
| cellClassName: 'actions', | cellClassName: 'actions', | ||||
| @@ -72,7 +72,7 @@ export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, a | |||||
| { | { | ||||
| id: 'transDateTime', | id: 'transDateTime', | ||||
| field: 'transDateTime', | field: 'transDateTime', | ||||
| headerName: 'Transaction Date', | |||||
| headerName: 'Payment Date', | |||||
| flex: 1, | flex: 1, | ||||
| minWidth: 150, | minWidth: 150, | ||||
| // sorting/filtering uses this value | // sorting/filtering uses this value | ||||
| @@ -158,7 +158,7 @@ const SearchPublicNoticeForm = ({ applySearch, searchCriteria, onGridReady }) => | |||||
| // }, | // }, | ||||
| }} | }} | ||||
| format="DD/MM/YYYY" | format="DD/MM/YYYY" | ||||
| label="Transaction Date (From)" | |||||
| label="Payment Date (From)" | |||||
| value={minDate === null ? null : dayjs(minDate)} | value={minDate === null ? null : dayjs(minDate)} | ||||
| maxDate={maxDate === null ? null : dayjs(maxDate)} | maxDate={maxDate === null ? null : dayjs(maxDate)} | ||||
| onChange={(newValue) => { | onChange={(newValue) => { | ||||
| @@ -184,7 +184,7 @@ const SearchPublicNoticeForm = ({ applySearch, searchCriteria, onGridReady }) => | |||||
| // }, | // }, | ||||
| }} | }} | ||||
| format="DD/MM/YYYY" | format="DD/MM/YYYY" | ||||
| label="Transaction Date (To)" | |||||
| label="Payment Date (To)" | |||||
| value={maxDate === null ? null : dayjs(maxDate)} | value={maxDate === null ? null : dayjs(maxDate)} | ||||
| minDate={minDate === null ? null : dayjs(minDate)} | minDate={minDate === null ? null : dayjs(minDate)} | ||||
| onChange={(newValue) => { | onChange={(newValue) => { | ||||
| @@ -256,7 +256,7 @@ const SearchPublicNoticeForm = ({ applySearch, generateReport, onLoad }) => { | |||||
| }, | }, | ||||
| }} | }} | ||||
| format="DD/MM/YYYY" | format="DD/MM/YYYY" | ||||
| label="PNSPS Transaction Date (From)" | |||||
| label="PNSPS Payment Date (From)" | |||||
| value={sysTxnMinDate === null ? null : dayjs(sysTxnMinDate)} | value={sysTxnMinDate === null ? null : dayjs(sysTxnMinDate)} | ||||
| maxDate={sysTxnMaxDate === null ? null : dayjs(sysTxnMaxDate)} | maxDate={sysTxnMaxDate === null ? null : dayjs(sysTxnMaxDate)} | ||||
| onChange={(newValue) => { | onChange={(newValue) => { | ||||
| @@ -280,7 +280,7 @@ const SearchPublicNoticeForm = ({ applySearch, generateReport, onLoad }) => { | |||||
| }, | }, | ||||
| }} | }} | ||||
| format="DD/MM/YYYY" | format="DD/MM/YYYY" | ||||
| label="PNSPS Transaction Date (To)" | |||||
| label="PNSPS Payment Date (To)" | |||||
| value={sysTxnMaxDate === null ? null : dayjs(sysTxnMaxDate)} | value={sysTxnMaxDate === null ? null : dayjs(sysTxnMaxDate)} | ||||
| minDate={sysTxnMinDate === null ? null : dayjs(sysTxnMinDate)} | minDate={sysTxnMinDate === null ? null : dayjs(sysTxnMinDate)} | ||||
| onChange={(newValue) => { | onChange={(newValue) => { | ||||