<script><![CDATA[
    if (fromDate == null && thruDate == null && year && month) {
        fromCal = ec.l10n.parseDateTime("${year}-${month}-01 00:00:00", "yyyy-MM-dd HH:mm:ss")
        thruCal = fromCal.clone()
        thruCal.add(Calendar.MONTH, 1)
        thruCal.add(Calendar.SECOND, -1)

        fromDate = new Timestamp(fromCal.getTimeInMillis())
        thruDate = new Timestamp(thruCal.getTimeInMillis())
    }
]]></script>

 

 

相关文章:

  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-07-26
  • 2022-02-26
猜你喜欢
  • 2021-12-05
  • 2021-06-11
  • 2021-07-18
  • 2021-12-05
  • 2021-11-30
  • 2022-12-23
相关资源
相似解决方案