|
|
@@ -53,6 +53,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { |
|
|
|
{ |
|
|
|
field: 'actions', |
|
|
|
headerName: 'Application No.', |
|
|
|
sortable: false, |
|
|
|
width: 150, |
|
|
|
cellClassName: 'actions', |
|
|
|
renderCell: (params) => { |
|
|
@@ -63,6 +64,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { |
|
|
|
id: 'status', |
|
|
|
field: 'status', |
|
|
|
headerName: 'Status', |
|
|
|
sortable: false, |
|
|
|
width: 240, |
|
|
|
renderCell: (params) => { |
|
|
|
return [StatusUtils.getStatusEng(params)] |
|
|
@@ -72,6 +74,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { |
|
|
|
id: 'withProof', |
|
|
|
field: 'withProof', |
|
|
|
headerName: 'With Proof', |
|
|
|
sortable: false, |
|
|
|
width: 120, |
|
|
|
renderCell: (params) => { |
|
|
|
return [params.row.proofId != null ? "Yes" : ""] |
|
|
@@ -81,6 +84,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { |
|
|
|
id: 'created', |
|
|
|
field: 'created', |
|
|
|
headerName: 'Submit Date', |
|
|
|
sortable: false, |
|
|
|
flex: 1, |
|
|
|
minWidth: 200, |
|
|
|
valueGetter: (params) => { |
|
|
@@ -91,6 +95,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { |
|
|
|
id: 'contactPerson', |
|
|
|
field: 'contactPerson', |
|
|
|
headerName: 'Client', |
|
|
|
sortable: false, |
|
|
|
minWidth: 250, |
|
|
|
flex: 2, |
|
|
|
renderCell: (params) => { |
|
|
@@ -106,6 +111,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { |
|
|
|
id: 'issueNoAndCode', |
|
|
|
field: 'issueNoAndCode', |
|
|
|
headerName: 'Gazette Issue No. / Gazette Code', |
|
|
|
sortable: false, |
|
|
|
flex: 1.5, |
|
|
|
minWidth: 350, |
|
|
|
renderCell: (params) => ( |
|
|
|