主数据导入功能
parent
c97e1cda0b
commit
15d24286dc
@ -1,9 +1,9 @@
|
||||
common.export.noTemplate.error = 当前主数据模板字段未维护
|
||||
MaterData.import.Summary = 主数据导入概要:
|
||||
MaterData.import.Summary = 导入完成:->总共导入数据:{0}, 成功:{1}, 失败:{2}
|
||||
MaterData.import.upDateObjectNotExist = 更新的对象不存在
|
||||
MaterData.import.createfail.resource = 创建资源数据失败
|
||||
MaterData.import.updatefail.resource = 更新资源数据失败
|
||||
MaterData.import.createfail.operation = 创建工序数据失败
|
||||
MaterData.import.updatefail.operation = 更新工序数据失败
|
||||
MaterData.import.insertfail.workcenter = 新增工作中心失败
|
||||
MaterData.import.updatefail.workcenter = 更新工作中心失败
|
||||
MaterData.import.createfail.resource = 资源创建失败: - > 行项: {0}, 位置: {1}, 错误信息: {2}
|
||||
MaterData.import.updatefail.resource = 资源更新失败: - > 行项: {0}, 位置: {1}, 错误信息: {2}
|
||||
MaterData.import.createfail.operation = 工序创建失败: - > 行项: {0}, 位置: {1}, 错误信息: {2}
|
||||
MaterData.import.updatefail.operation = 工序创建失败: - > 行项: {0}, 位置: {1}, 错误信息: {2}
|
||||
MaterData.import.insertfail.workcenter = 工作中心创建失败: - > 行项: {0}, 位置: {1}, 错误信息: {2}
|
||||
MaterData.import.updatefail.workcenter = 工作中心创建失败: - > 行项: {0}, 位置: {1}, 错误信息: {2}
|
@ -1 +1,2 @@
|
||||
common.export.noTemplate.error=当前主数据模板字段未维护
|
||||
MaterData.import.Summary = Summary->total number of imports:{0}, success:{1}, failure:{2}
|
||||
|
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>mesnac</artifactId>
|
||||
<groupId>com.foreverwin.mesnac</groupId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>equip</artifactId>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>cn.hutool</groupId>
|
||||
<artifactId>hutool-all</artifactId>
|
||||
<version>5.0.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.foreverwin.modular</groupId>
|
||||
<artifactId>modular-core</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!--sap mes api lib-->
|
||||
<dependency>
|
||||
<groupId>com.foreverwin.modular</groupId>
|
||||
<artifactId>modular-melib</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.foreverwin.mesnac</groupId>
|
||||
<artifactId>meapi</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!--poi support-->
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi</artifactId>
|
||||
<version>3.8</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi-ooxml</artifactId>
|
||||
<version>3.8</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-activemq</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-pool</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
Loading…
Reference in New Issue