|
@@ -126,12 +126,15 @@ public class CommonUtils {
|
|
|
*/
|
|
|
public static String getYear(HttpServletRequest request){
|
|
|
String orderYear = request.getHeader("orderYear");
|
|
|
- if(StrUtil.isBlankOrUndefined(orderYear)){
|
|
|
+ if(StringUtils.isBlank(orderYear)){
|
|
|
+ return "2025";
|
|
|
+ }
|
|
|
+ /* if(StrUtil.isBlankOrUndefined(orderYear)){
|
|
|
return "";
|
|
|
}
|
|
|
if (String.valueOf(DateUtil.year(DateUtil.date())).equals(orderYear)) {
|
|
|
orderYear = "";
|
|
|
- }
|
|
|
+ }*/
|
|
|
return orderYear;
|
|
|
}
|
|
|
|