修改时间显示

This commit is contained in:
zhal 2024-09-03 17:01:03 +08:00
parent c237c6ef43
commit 72199f31dc
2 changed files with 1 additions and 1 deletions

View File

@ -932,7 +932,7 @@ public class Report1Gener {
if (UtilString.isNotEmpty(val)) {
try {
Timestamp timestamp = UtilDate.parseTsFromDateTime(val);
val = UtilDate.yearFormat(timestamp) + "" + Integer.parseInt(UtilDate.monthFormat(timestamp)) + "" + UtilDate.dayFormat(timestamp) + "";
val = UtilDate.yearFormat(timestamp) + "" + UtilDate.monthFormat(timestamp) + "" + UtilDate.dayFormat(timestamp) + "";
} catch (Exception e) {
e.printStackTrace();
}