头寸表日期改为/格式

This commit is contained in:
李贵强 2025-07-09 16:16:45 +08:00
parent e5b971b84f
commit 802a71815c
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class BankInfoListReport extends AbstractReportListDataPlugin implements
for (FilterItemInfo filterItem : filterItems) {
switch (filterItem.getPropName()){
case "shjh_date":
accrualDate=(filterItem.getDate()==null) ? null:new SimpleDateFormat("yyyy-MM-dd").format(filterItem.getDate());
accrualDate=(filterItem.getDate()==null) ? null:new SimpleDateFormat("yyyy/MM/dd").format(filterItem.getDate());
selectFields.append("'").append(accrualDate).append("'").append(" ").append(NEED_FIELDS[27]);
// 计算当前日期的下一天用于 less_than 条件
Date nextDay = new Date(filterItem.getDate().getTime() + TimeUnit.DAYS.toMillis(1));