Commit ab760914 authored by 王明生's avatar 王明生

Merge branch 'v13.17.0' into uat

parents 6041cb97 410ebf11
...@@ -137,7 +137,7 @@ public class BydOpenController extends BaseController{ ...@@ -137,7 +137,7 @@ public class BydOpenController extends BaseController{
} }
Optional<String> statsStartStr = Optional.ofNullable(request.getParameter("stats_start_date")); Optional<String> statsStartStr = Optional.ofNullable(request.getParameter("stats_start_date"));
Optional<String> statsEndStr = Optional.ofNullable(request.getParameter("stats_start_date")); Optional<String> statsEndStr = Optional.ofNullable(request.getParameter("stats_end_date"));
if (statsStartStr.isPresent() && statsEndStr.isPresent()) { if (statsStartStr.isPresent() && statsEndStr.isPresent()) {
try { try {
LocalDate statsStart = LocalDate.parse(statsStartStr.get()); LocalDate statsStart = LocalDate.parse(statsStartStr.get());
...@@ -162,7 +162,7 @@ public class BydOpenController extends BaseController{ ...@@ -162,7 +162,7 @@ public class BydOpenController extends BaseController{
} }
Optional<String> pubStartStr = Optional.ofNullable(request.getParameter("publish_start_date")); Optional<String> pubStartStr = Optional.ofNullable(request.getParameter("publish_start_date"));
Optional<String> pubEndStr = Optional.ofNullable(request.getParameter("publish_start_date")); Optional<String> pubEndStr = Optional.ofNullable(request.getParameter("publish_end_date"));
if (pubStartStr.isPresent() && pubEndStr.isPresent()) { if (pubStartStr.isPresent() && pubEndStr.isPresent()) {
try { try {
LocalDate pubStart = LocalDate.parse(pubStartStr.get()); LocalDate pubStart = LocalDate.parse(pubStartStr.get());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment