From ad5fef776eb9d66a0fcfc2ddf89698c5642e0eec Mon Sep 17 00:00:00 2001
From: chen.lin <1442464845@qq.com>
Date: 星期五, 06 三月 2026 08:36:24 +0800
Subject: [PATCH] 增加一个定时任务。如果拣货出库过程中,相同料箱号,存在(199 ,200)的任务 并且同时存在 101,196的任务 则101和196的任务会 自动变成199
---
rsf-server/src/main/java/com/vincent/rsf/server/common/config/WebMvcConfig.java | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/common/config/WebMvcConfig.java b/rsf-server/src/main/java/com/vincent/rsf/server/common/config/WebMvcConfig.java
index f5b8463..e312df0 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/common/config/WebMvcConfig.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/common/config/WebMvcConfig.java
@@ -1,7 +1,6 @@
package com.vincent.rsf.server.common.config;
import com.vincent.rsf.server.common.constant.Constants;
-import com.vincent.rsf.server.common.interceptor.severlet.DynamicFieldsInterceptor;
import com.vincent.rsf.server.common.utils.Http;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@@ -28,22 +27,8 @@
registry.addInterceptor(getAsyncHandlerInterceptor())
.addPathPatterns("/**")
.excludePathPatterns("/swagger-resources/**", "/webjars/**","/erp/**", "/v2/**","/v3/**","/doc.html/**", "/swagger-ui.html/**");
-
- registry.addInterceptor(dynamicFieldsInterceptor())
- .addPathPatterns("/**")
- .excludePathPatterns("/swagger-resources/**",
- "/webjars/**",
- "/erp/**",
- "/v2/**",
- "/v3/**",
- "/doc.html/**",
- "/swagger-ui.html/**");
}
- @Bean
- public DynamicFieldsInterceptor dynamicFieldsInterceptor() {
- return new DynamicFieldsInterceptor();
- }
@Bean
public AsyncHandlerInterceptor getAsyncHandlerInterceptor() {
--
Gitblit v1.9.1