Преглед изворни кода

add closing day off

master
Alex Cheung пре 1 година
родитељ
комит
0da5628887
2 измењених фајлова са 13 додато и 0 уклоњено
  1. +12
    -0
      src/pages/GazetteIssue/DataGrid.js
  2. +1
    -0
      src/pages/GazetteIssue/index.js

+ 12
- 0
src/pages/GazetteIssue/DataGrid.js Прегледај датотеку

@@ -68,6 +68,18 @@ export default function GazetteIssueTable({ searchCriteria }) {
return <div style={{ margin: 4 }}>{dateStr(closingDate)}</div>
},
},
{
id: 'closingDateOff',
field: 'closingDateOff',
headerName: 'Closing Date Off',
flex: 2,
minWidth: 150,
renderCell: (params) => {
// console.log(params)
let closingDateOff = params.row.closingDateOff;
return <div style={{ margin: 4 }}>{dateStr(closingDateOff)}</div>
},
},
{
id: 'issueDesc',
field: 'issueDesc',


+ 1
- 0
src/pages/GazetteIssue/index.js Прегледај датотеку

@@ -152,6 +152,7 @@ const Index = () => {
notifySaveSuccess()
setWaitImport(false);
setAttachments([]);
loadCombo();
loadForm();
}
});


Loading…
Откажи
Сачувај