From ebf0db91e09be33fcbfe97ed5b91965dc2e61dfd Mon Sep 17 00:00:00 2001
From: zyx <zyx123456>
Date: 星期四, 01 八月 2024 10:54:26 +0800
Subject: [PATCH] 1. 托盘管理 2. 入库通知档导入功能 3. 工作档明细 新增来源单据类型及单据编号 4. 库存明细统计表 增加一栏ERP数量(需跟ERP确认接口实现方式)。 5. 存货档案、单据管理、库存管理可以支持模糊搜索(各个单据界面)。
---
zy-asrs-wcs/pom.xml | 91 +++++++--------------------------------------
1 files changed, 15 insertions(+), 76 deletions(-)
diff --git a/zy-asrs-wcs/pom.xml b/zy-asrs-wcs/pom.xml
index d8a9e37..83e100c 100644
--- a/zy-asrs-wcs/pom.xml
+++ b/zy-asrs-wcs/pom.xml
@@ -38,6 +38,17 @@
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
+ <dependency>
+ <groupId>io.jsonwebtoken</groupId>
+ <artifactId>jjwt-impl</artifactId>
+ <version>0.11.2</version>
+ </dependency>
+ <dependency>
+ <groupId>io.jsonwebtoken</groupId>
+ <artifactId>jjwt-jackson</artifactId>
+ <version>0.11.2</version>
+ </dependency>
+
<!-- okHttp3 -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
@@ -45,84 +56,12 @@
<version>3.10.0</version>
</dependency>
- <!-- led sdk -->
<dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>5m3</artifactId>
- <scope>system</scope>
- <version>0.5.0</version>
- <systemPath>${project.basedir}/src/main/resources/lib/bx05-0.5.0-SNAPSHOT.jar</systemPath>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-aspects</artifactId>
+ <version>5.2.5.RELEASE</version>
</dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>5m3message</artifactId>
- <scope>system</scope>
- <version>0.5.0</version>
- <systemPath>${project.basedir}/src/main/resources/lib/bx05.message-0.5.0-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>5m3doc</artifactId>
- <scope>system</scope>
- <version>0.5.0</version>
- <systemPath>${project.basedir}/src/main/resources/lib/bx05-0.5.0-SNAPSHOT-javadoc.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>rxtx</artifactId>
- <scope>system</scope>
- <version>2.1.7</version>
- <systemPath>${project.basedir}/src/main/resources/lib/rxtx-2.1.7.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>simple-xml</artifactId>
- <scope>system</scope>
- <version>2.7.1</version>
- <systemPath>${project.basedir}/src/main/resources/lib/simple-xml-2.7.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>stax</artifactId>
- <scope>system</scope>
- <version>1.2.0</version>
- <systemPath>${project.basedir}/src/main/resources/lib/stax-1.2.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>stax-api</artifactId>
- <scope>system</scope>
- <version>1.0.1</version>
- <systemPath>${project.basedir}/src/main/resources/lib/stax-api-1.0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>uia-comm</artifactId>
- <scope>system</scope>
- <version>0.5.1</version>
- <systemPath>${project.basedir}/src/main/resources/lib/uia-comm-0.5.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>uia-message</artifactId>
- <scope>system</scope>
- <version>0.6.0</version>
- <systemPath>${project.basedir}/src/main/resources/lib/uia-message-0.6.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>uia-utils</artifactId>
- <scope>system</scope>
- <version>0.2.0</version>
- <systemPath>${project.basedir}/src/main/resources/lib/uia-utils-0.2.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.wcs.led</groupId>
- <artifactId>xpp3</artifactId>
- <scope>system</scope>
- <version>1.1.3.3</version>
- <systemPath>${project.basedir}/src/main/resources/lib/xpp3-1.1.3.3.jar</systemPath>
- </dependency>
+
</dependencies>
<build>
--
Gitblit v1.9.1