diff --git a/src/pages/GFMIS/TransactionDataGrid.js b/src/pages/GFMIS/TransactionDataGrid.js index eeb8659..1133b7d 100644 --- a/src/pages/GFMIS/TransactionDataGrid.js +++ b/src/pages/GFMIS/TransactionDataGrid.js @@ -61,7 +61,7 @@ export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, a }, { field: 'actions', - headerName: 'Transaction No.', + headerName: 'Payment No.', flex: 1, minWidth: 200, cellClassName: 'actions', @@ -72,7 +72,7 @@ export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, a { id: 'transDateTime', field: 'transDateTime', - headerName: 'Transaction Date', + headerName: 'Payment Date', flex: 1, minWidth: 150, // sorting/filtering uses this value diff --git a/src/pages/Payment/Search_GLD/SearchForm.js b/src/pages/Payment/Search_GLD/SearchForm.js index 9e67590..44ad203 100644 --- a/src/pages/Payment/Search_GLD/SearchForm.js +++ b/src/pages/Payment/Search_GLD/SearchForm.js @@ -158,7 +158,7 @@ const SearchPublicNoticeForm = ({ applySearch, searchCriteria, onGridReady }) => // }, }} format="DD/MM/YYYY" - label="Transaction Date (From)" + label="Payment Date (From)" value={minDate === null ? null : dayjs(minDate)} maxDate={maxDate === null ? null : dayjs(maxDate)} onChange={(newValue) => { @@ -184,7 +184,7 @@ const SearchPublicNoticeForm = ({ applySearch, searchCriteria, onGridReady }) => // }, }} format="DD/MM/YYYY" - label="Transaction Date (To)" + label="Payment Date (To)" value={maxDate === null ? null : dayjs(maxDate)} minDate={minDate === null ? null : dayjs(minDate)} onChange={(newValue) => { diff --git a/src/pages/Recon/SearchForm.js b/src/pages/Recon/SearchForm.js index d666465..e948c15 100644 --- a/src/pages/Recon/SearchForm.js +++ b/src/pages/Recon/SearchForm.js @@ -256,7 +256,7 @@ const SearchPublicNoticeForm = ({ applySearch, generateReport, onLoad }) => { }, }} format="DD/MM/YYYY" - label="PNSPS Transaction Date (From)" + label="PNSPS Payment Date (From)" value={sysTxnMinDate === null ? null : dayjs(sysTxnMinDate)} maxDate={sysTxnMaxDate === null ? null : dayjs(sysTxnMaxDate)} onChange={(newValue) => { @@ -280,7 +280,7 @@ const SearchPublicNoticeForm = ({ applySearch, generateReport, onLoad }) => { }, }} format="DD/MM/YYYY" - label="PNSPS Transaction Date (To)" + label="PNSPS Payment Date (To)" value={sysTxnMaxDate === null ? null : dayjs(sysTxnMaxDate)} minDate={sysTxnMinDate === null ? null : dayjs(sysTxnMinDate)} onChange={(newValue) => {