промежуточный. упорядочил код отображения дат в таблицах

This commit is contained in:
2024-10-30 19:33:52 +03:00
parent 2712b904b1
commit 62e734f725
11 changed files with 28 additions and 24 deletions

View File

@@ -74,7 +74,7 @@ public class BugReportsForm extends DataSetControlForm<BugReport> {
new ColumnInfo<BugReport>("Дата создания") {
@Override
public Object getFieldAt(BugReport object) {
return object.getDate();
return object.date;
}
@Override
public Class getRendererClass() {
@@ -84,7 +84,7 @@ public class BugReportsForm extends DataSetControlForm<BugReport> {
new ColumnInfo<BugReport>("Дата изменения") {
@Override
public Object getFieldAt(BugReport object) {
return object.getChangeDate();
return object.change_date;
}
@Override
public Class getRendererClass() {