CheckListHeader lista javítva

This commit is contained in:
2025-03-22 11:19:18 +01:00
parent 15e6aac88c
commit 6d78762275
3 changed files with 19 additions and 17 deletions
@@ -66,19 +66,19 @@
}
},
{ data: "documentNumber",
render: function (data, type, row) {
if (!data) return '';
if (type === 'display' || type === 'filter') {
return dayjs(data).format('YYYY.MM.DD');
}
return data;
}
{ data: "documentNumber"},
{ data: "dateExecution",
render: function (data, type, row) {
if (!data) return '';
if (type === 'display' || type === 'filter') {
return dayjs(data).format('YYYY.MM.DD');
}
return data;
}
},
{ data: "dateExecution" },
{ data: "shortName" },
{ data: "description" },
{ data: "user.userName" },
{ data: "userDTO.userName" },
{ data: null, render: function (data, type, row) {
return renderActionButtons(row.id);
}}