Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
孙克
/
smf-core
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 1de6dd3d
由
zshaohui
编写于
2024-09-09 16:26:30 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
1.解析条码时,判断授权是否过期
1 个父辈
d8819168
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
60 行增加
和
0 行删除
src/main/java/com/neotel/smfcore/common/utils/Constants.java
src/main/java/com/neotel/smfcore/core/barcode/utils/CodeResolve.java
src/main/java/com/neotel/smfcore/core/device/util/DataCache.java
src/main/java/com/neotel/smfcore/core/system/rest/SettingsController.java
src/main/resources/messages.properties
src/main/resources/messages_en_US.properties
src/main/resources/messages_ja_JP.properties
src/main/resources/messages_zh_CN.properties
src/main/resources/messages_zh_TW.properties
src/main/java/com/neotel/smfcore/common/utils/Constants.java
查看文件 @
1de6dd3
...
@@ -201,4 +201,10 @@ public class Constants {
...
@@ -201,4 +201,10 @@ public class Constants {
*/
*/
public
static
final
String
Cache_PanaCIMPort
=
"Cache_PanaCIMPort"
;
public
static
final
String
Cache_PanaCIMPort
=
"Cache_PanaCIMPort"
;
/**
* 授权时间
*/
public
static
final
String
Cache_AuthDate
=
"Cache_AuthDate"
;
}
}
src/main/java/com/neotel/smfcore/core/barcode/utils/CodeResolve.java
查看文件 @
1de6dd3
...
@@ -40,6 +40,8 @@ public class CodeResolve {
...
@@ -40,6 +40,8 @@ public class CodeResolve {
private
boolean
useSizeConfirm
=
true
;
private
boolean
useSizeConfirm
=
true
;
private
Date
authDate
=
null
;
public
void
updateBarcodeRuleList
(
List
<
String
>
ruleList
)
{
public
void
updateBarcodeRuleList
(
List
<
String
>
ruleList
)
{
try
{
try
{
...
@@ -66,6 +68,9 @@ public class CodeResolve {
...
@@ -66,6 +68,9 @@ public class CodeResolve {
useSizeConfirm
=
confirm
;
useSizeConfirm
=
confirm
;
}
}
public
void
updateAuthDate
(
Date
date
){
authDate
=
date
;
}
public
CodeBean
resolveSingleCode
(
String
barcodeItemStr
){
public
CodeBean
resolveSingleCode
(
String
barcodeItemStr
){
return
resolveSingleCode
(
barcodeItemStr
,
COMPONENT_TYPE
.
COMPONENT
);
return
resolveSingleCode
(
barcodeItemStr
,
COMPONENT_TYPE
.
COMPONENT
);
...
@@ -74,6 +79,13 @@ public class CodeResolve {
...
@@ -74,6 +79,13 @@ public class CodeResolve {
* 解析条码为单个 Barcode,自动保存到数据库
* 解析条码为单个 Barcode,自动保存到数据库
*/
*/
public
CodeBean
resolveSingleCode
(
String
barcodeItemStr
,
int
type
){
public
CodeBean
resolveSingleCode
(
String
barcodeItemStr
,
int
type
){
//判断授权日期是否为空
if
(
authDate
!=
null
){
long
time
=
authDate
.
getTime
();
if
(
time
<
System
.
currentTimeMillis
()){
throw
new
ValidateException
(
"smfcore.error.barcode.authError"
,
"条码解析失败,请联系供应商处理"
);
}
}
if
(
barcodeRuleList
==
null
||
barcodeRuleList
.
isEmpty
()){
if
(
barcodeRuleList
==
null
||
barcodeRuleList
.
isEmpty
()){
CodeBean
codeBean
=
BarcodeRule
.
splitCodeAndSize
(
barcodeItemStr
);
CodeBean
codeBean
=
BarcodeRule
.
splitCodeAndSize
(
barcodeItemStr
);
...
...
src/main/java/com/neotel/smfcore/core/device/util/DataCache.java
查看文件 @
1de6dd3
...
@@ -196,6 +196,13 @@ public class DataCache {
...
@@ -196,6 +196,13 @@ public class DataCache {
if
(
cacheKey
.
equals
(
Constants
.
CACHE_ExpiresDay
))
{
if
(
cacheKey
.
equals
(
Constants
.
CACHE_ExpiresDay
))
{
codeResolve
.
updateExpiresDay
((
Integer
)
value
);
codeResolve
.
updateExpiresDay
((
Integer
)
value
);
}
}
if
(
cacheKey
.
equals
(
Constants
.
Cache_AuthDate
)){
if
(
value
==
null
)
{
codeResolve
.
updateAuthDate
(
null
);
}
else
{
codeResolve
.
updateAuthDate
((
Date
)
value
);
}
}
log
.
info
(
"updateCache ["
+
cacheKey
+
"]=["
+
value
+
"]"
);
log
.
info
(
"updateCache ["
+
cacheKey
+
"]=["
+
value
+
"]"
);
}
}
...
...
src/main/java/com/neotel/smfcore/core/system/rest/SettingsController.java
查看文件 @
1de6dd3
...
@@ -298,4 +298,29 @@ public class SettingsController {
...
@@ -298,4 +298,29 @@ public class SettingsController {
log
.
info
(
"获取版本号:"
+
version
);
log
.
info
(
"获取版本号:"
+
version
);
return
"V"
+
version
;
return
"V"
+
version
;
}
}
@ApiOperation
(
"修改授权日期"
)
@GetMapping
(
"/updateAuthDate"
)
@AnonymousAccess
public
ResultBean
updateAuthDate
(
Long
currentTime
,
int
day
)
{
if
(
currentTime
==
null
){
return
ResultBean
.
newErrorResult
(
1
,
"smfcore.valueCanotNull"
,
"{0}不能为空"
,
new
String
[]{
"currentTime"
});
}
//log.info(System.currentTimeMillis()+"");
String
dateStr
=
DateUtil
.
toDateString
(
currentTime
,
"yyyy-MM-dd"
);
String
currentDateStr
=
DateUtil
.
toDateString
(
System
.
currentTimeMillis
(),
"yyyy-MM-dd"
);
if
(!
currentDateStr
.
equals
(
dateStr
))
{
//smfcore.valueInvalid=[{0}]並非有效的參數
return
ResultBean
.
newErrorResult
(-
1
,
"smfcore.valueInvalid"
,
"[{0}]不是有效的参数"
,
new
String
[]{
"currentTime"
});
}
//如果传入的时间小于0,则置为空,长时间有效
if
(
day
<
0
){
dataCache
.
updateCache
(
Constants
.
Cache_AuthDate
,
null
);
}
else
{
Date
newDate
=
DateUtil
.
addDays
(
new
Date
(),
day
);
dataCache
.
updateCache
(
Constants
.
Cache_AuthDate
,
newDate
);
}
return
ResultBean
.
newOkResult
(
""
);
}
}
}
src/main/resources/messages.properties
查看文件 @
1de6dd3
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u4E0D\u80FD\u4E3A\u7A7A
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u4E0D\u80FD\u4E3A\u7A7A
smfcore.feleFormatError
=
\u6587\u
4EF6
\u
683C
\u
5F0F
\u9519\u
8BEF
\u
FF01,
\u
4EC5
\u
652F
\u6301
{0}
\u
683C
\u
5F0F
smfcore.feleFormatError
=
\u6587\u
4EF6
\u
683C
\u
5F0F
\u9519\u
8BEF
\u
FF01,
\u
4EC5
\u
652F
\u6301
{0}
\u
683C
\u
5F0F
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
5DF2
\u
5B58
\u5728
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
5DF2
\u
5B58
\u5728
smfcore.valueNotExist
=
{0}[{1}]
\u
4E0D
\u
5B58
\u5728
smfcore.valueNotExist
=
{0}[{1}]
\u
4E0D
\u
5B58
\u5728
smfcore.valueInvalid
=
[{0}]
\u
4E0D
\u
662F
\u6709\u6548\u7684\u
53C2
\u6570
smfcore.fileToLong
=
\u6587\u
4EF6
\u
8D85
\u
51FA
\u
89C4
\u
5B9A
\u5927\u
5C0F
smfcore.fileToLong
=
\u6587\u
4EF6
\u
8D85
\u
51FA
\u
89C4
\u
5B9A
\u5927\u
5C0F
smfcore.fileError
=
\u6587\u
4EF6
\u
89E3
\u6790\u5931\u
8D25
smfcore.fileError
=
\u6587\u
4EF6
\u
89E3
\u6790\u5931\u
8D25
smfcore.valueNotFind
=
\u
672A
\u
627E
\u5230
{0}[{1}]
smfcore.valueNotFind
=
\u
672A
\u
627E
\u5230
{0}[{1}]
...
@@ -106,6 +107,7 @@ smfcore.error.barcode.wrongLength=\u6761\u7801[{0}]\u957F\u5EA6\u9519\u8BEF
...
@@ -106,6 +107,7 @@ smfcore.error.barcode.wrongLength=\u6761\u7801[{0}]\u957F\u5EA6\u9519\u8BEF
smfcore.error.barcode.noField
=
\u6761\u7801\u
89E3
\u6790\u5931\u
8D25,
\u
672A
\u
627E
\u5230
{0}
\u
5B57
\u
6BB5
smfcore.error.barcode.noField
=
\u6761\u7801\u
89E3
\u6790\u5931\u
8D25,
\u
672A
\u
627E
\u5230
{0}
\u
5B57
\u
6BB5
smfcore.error.barcode.pnNotExist
=
x
\u6863\u6848
{0}
\u
4E0D
\u
5B58
\u5728
smfcore.error.barcode.pnNotExist
=
x
\u6863\u6848
{0}
\u
4E0D
\u
5B58
\u5728
smfcore.error.barcode.locked
=
\u
5E93
\u
4F4D[{0}]
\u
5DF2
\u
88AB
\u9501\u
5B9A
smfcore.error.barcode.locked
=
\u
5E93
\u
4F4D[{0}]
\u
5DF2
\u
88AB
\u9501\u
5B9A
smfcore.error.barcode.authError
=
\u6761\u7801\u
89E3
\u6790\u5931\u
8D25,
\u
8BF7
\u8054\u
7CFB
\u
4F9B
\u
5E94
\u5546\u5904\u7406
smfcore.manualOut.ok
=
\u
624B
\u
52A8
\u
51FA
\u
5E93
\u6210\u
529F
smfcore.manualOut.ok
=
\u
624B
\u
52A8
\u
51FA
\u
5E93
\u6210\u
529F
smfcore.manualOut.notFound
=
\u
4ED3
\u
5E93
\u
4E2D
\u
672A
\u
627E
\u5230\u6599\u
76D8
\u
4FE1
\u
606F
smfcore.manualOut.notFound
=
\u
4ED3
\u
5E93
\u
4E2D
\u
672A
\u
627E
\u5230\u6599\u
76D8
\u
4FE1
\u
606F
smfcore.order.lineCanotNull
=
\u
7EBF
\u
522B
\u
4E0D
\u
80FD
\u
4E3A
\u
7A7A
smfcore.order.lineCanotNull
=
\u
7EBF
\u
522B
\u
4E0D
\u
80FD
\u
4E3A
\u
7A7A
...
...
src/main/resources/messages_en_US.properties
查看文件 @
1de6dd3
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0} is empty
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0} is empty
smfcore.feleFormatError
=
File format error! Only {0} format is supported
smfcore.feleFormatError
=
File format error! Only {0} format is supported
smfcore.valueAlreadyExist
=
{0}[{1}] exist
smfcore.valueAlreadyExist
=
{0}[{1}] exist
smfcore.valueNotExist
=
{0}[{1}]does not exist
smfcore.valueNotExist
=
{0}[{1}]does not exist
smfcore.valueInvalid
=
[{0}] is not a valid parameter
smfcore.fileToLong
=
File exceeds specified size
smfcore.fileToLong
=
File exceeds specified size
smfcore.fileError
=
File parsing failure
smfcore.fileError
=
File parsing failure
smfcore.valueNotFind
=
{0}[{1}] not found
smfcore.valueNotFind
=
{0}[{1}] not found
...
@@ -108,6 +109,7 @@ smfcore.error.barcode.noField=Bar code parsing failed, {0} field not found
...
@@ -108,6 +109,7 @@ smfcore.error.barcode.noField=Bar code parsing failed, {0} field not found
smfcore.error.barcode.pnNotExist
=
Material file {0} does not exist
smfcore.error.barcode.pnNotExist
=
Material file {0} does not exist
smfcore.error.barcode.invalid
=
no valid barcode is found
smfcore.error.barcode.invalid
=
no valid barcode is found
smfcore.error.barcode.locked
=
Library bit [{0}] is locked
smfcore.error.barcode.locked
=
Library bit [{0}] is locked
smfcore.error.barcode.authError
=
Barcode parsing failed, please contact the supplier for assistance
smfcore.manualOut.ok
=
Manual exit successful
smfcore.manualOut.ok
=
Manual exit successful
smfcore.manualOut.notFound
=
No tray information found
smfcore.manualOut.notFound
=
No tray information found
smfcore.order.lineCanotNull
=
Line cannot be empty
smfcore.order.lineCanotNull
=
Line cannot be empty
...
...
src/main/resources/messages_ja_JP.properties
查看文件 @
1de6dd3
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u306F\u7A7A\u3067\u306F\u306A\u3044
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u306F\u7A7A\u3067\u306F\u306A\u3044
smfcore.feleFormatError
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB
\u
30D5
\u
30A9
\u
30FC
\u
30DE
\u
30C3
\u
30C8
\u
30A8
\u
30E9
\u
30FC
\u3067\u3059
{0}
\u
5F62
\u
5F0F
\u
306E
\u
307F
\u
30B5
\u
30DD
\u
30FC
\u
30C8
\u3057\u3066\u3044\u
307E
\u3059
smfcore.feleFormatError
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB
\u
30D5
\u
30A9
\u
30FC
\u
30DE
\u
30C3
\u
30C8
\u
30A8
\u
30E9
\u
30FC
\u3067\u3059
{0}
\u
5F62
\u
5F0F
\u
306E
\u
307F
\u
30B5
\u
30DD
\u
30FC
\u
30C8
\u3057\u3066\u3044\u
307E
\u3059
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
65E2
\u
306B
\u
5B58
\u5728\u3059\u
308B
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
65E2
\u
306B
\u
5B58
\u5728\u3059\u
308B
smfcore.valueNotExist
=
{0}[{1}]
\u
304C
\u
5B58
\u5728\u3057\u
307E
\u
305B
\u3093
smfcore.valueNotExist
=
{0}[{1}]
\u
304C
\u
5B58
\u5728\u3057\u
307E
\u
305B
\u3093
smfcore.valueInvalid
=
[{0}]
\u
306F
\u6709\u
52B9
\u
306A
\u
30D1
\u
30E9
\u
30E1
\u
30FC
\u
30BF
\u3067\u
306F
\u3042\u
308A
\u
307E
\u
305B
\u3093
smfcore.fileToLong
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB
\u
8D85
\u
904E
\u
30B5
\u
30A4
\u
30BA
smfcore.fileToLong
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB
\u
8D85
\u
904E
\u
30B5
\u
30A4
\u
30BA
smfcore.fileError
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB
\u
306E
\u
30D1
\u
30FC
\u
30B7
\u
30F3
\u
30B0
\u
306B
\u5931\u6557\u3057\u
307E
\u3057\u
305F
smfcore.fileError
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB
\u
306E
\u
30D1
\u
30FC
\u
30B7
\u
30F3
\u
30B0
\u
306B
\u5931\u6557\u3057\u
307E
\u3057\u
305F
smfcore.valueNotFind
=
\u
898B
\u3064\u
304B
\u
308A
\u
307E
\u
305B
\u3093\u3067\u3057\u
305F{0}[{1}]
smfcore.valueNotFind
=
\u
898B
\u3064\u
304B
\u
308A
\u
307E
\u
305B
\u3093\u3067\u3057\u
305F{0}[{1}]
...
@@ -105,6 +106,7 @@ smfcore.error.barcode.noField=\u30D0\u30FC\u30B3\u30FC\u30C9\u306E\u89E3\u6790\u
...
@@ -105,6 +106,7 @@ smfcore.error.barcode.noField=\u30D0\u30FC\u30B3\u30FC\u30C9\u306E\u89E3\u6790\u
smfcore.error.barcode.pnNotExist
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB{0}
\u
304C
\u
5B58
\u5728\u3057\u
306A
\u3044
smfcore.error.barcode.pnNotExist
=
\u
30D5
\u
30A1
\u
30A4
\u
30EB{0}
\u
304C
\u
5B58
\u5728\u3057\u
306A
\u3044
smfcore.error.barcode.invalid
=
\u
306F
\u6709\u
52B9
\u
306A
\u
30D0
\u
30FC
\u
30B3
\u
30FC
\u
30C9
\u3067\u
306F
\u3042\u
308A
\u
307E
\u
305B
\u3093
smfcore.error.barcode.invalid
=
\u
306F
\u6709\u
52B9
\u
306A
\u
30D0
\u
30FC
\u
30B3
\u
30FC
\u
30C9
\u3067\u
306F
\u3042\u
308A
\u
307E
\u
305B
\u3093
smfcore.error.barcode.locked
=
\u
30E9
\u
30A4
\u
30D6
\u
30E9
\u
30EA
\u
30DD
\u
30B8
\u
30B7
\u
30E7
\u
30F3 [{0}]
\u
304C
\u
30ED
\u
30C3
\u
30AF
\u3055\u
308C
\u3066\u3044\u
308B
smfcore.error.barcode.locked
=
\u
30E9
\u
30A4
\u
30D6
\u
30E9
\u
30EA
\u
30DD
\u
30B8
\u
30B7
\u
30E7
\u
30F3 [{0}]
\u
304C
\u
30ED
\u
30C3
\u
30AF
\u3055\u
308C
\u3066\u3044\u
308B
smfcore.error.barcode.authError
=
\u
30D0
\u
30FC
\u
30B3
\u
30FC
\u
30C9
\u
306E
\u
89E3
\u6790\u
306B
\u5931\u6557\u3057\u
307E
\u3057\u
305F
\u3002\u
30B5
\u
30D7
\u
30E9
\u
30A4
\u
30E4
\u
30FC
\u
306B
\u9023\u
7D61
\u3057\u3066\u
304F
\u3060\u3055\u3044
smfcore.manualOut.ok
=
\u
624B
\u
52D5
\u
7D42
\u
4E86
\u6210\u
529F
smfcore.manualOut.ok
=
\u
624B
\u
52D5
\u
7D42
\u
4E86
\u6210\u
529F
smfcore.manualOut.notFound
=
\u5009\u
5EAB
\u3067\u
30D1
\u
30EC
\u
30C3
\u
30C8
\u
60C5
\u5831\u
304C
\u
898B
\u3064\u
304B
\u3089\u
306A
\u3044
smfcore.manualOut.notFound
=
\u5009\u
5EAB
\u3067\u
30D1
\u
30EC
\u
30C3
\u
30C8
\u
60C5
\u5831\u
304C
\u
898B
\u3064\u
304B
\u3089\u
306A
\u3044
smfcore.order.lineCanotNull
=
\u
30E9
\u
30A4
\u
30F3
\u
304C
\u
7A7A
\u
304F
\u3053\u3068\u
306F
\u
306A
\u3044
smfcore.order.lineCanotNull
=
\u
30E9
\u
30A4
\u
30F3
\u
304C
\u
7A7A
\u
304F
\u3053\u3068\u
306F
\u
306A
\u3044
...
...
src/main/resources/messages_zh_CN.properties
查看文件 @
1de6dd3
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u4E0D\u80FD\u4E3A\u7A7A
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u4E0D\u80FD\u4E3A\u7A7A
smfcore.feleFormatError
=
\u6587\u
4EF6
\u
683C
\u
5F0F
\u9519\u
8BEF
\u
FF01,
\u
4EC5
\u
652F
\u6301
{0}
\u
683C
\u
5F0F
smfcore.feleFormatError
=
\u6587\u
4EF6
\u
683C
\u
5F0F
\u9519\u
8BEF
\u
FF01,
\u
4EC5
\u
652F
\u6301
{0}
\u
683C
\u
5F0F
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
5DF2
\u
5B58
\u5728
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
5DF2
\u
5B58
\u5728
smfcore.valueNotExist
=
{0}[{1}]
\u
4E0D
\u
5B58
\u5728
smfcore.valueNotExist
=
{0}[{1}]
\u
4E0D
\u
5B58
\u5728
smfcore.valueInvalid
=
[{0}]
\u
4E0D
\u
662F
\u6709\u6548\u7684\u
53C2
\u6570
smfcore.fileToLong
=
\u6587\u
4EF6
\u
8D85
\u
51FA
\u
89C4
\u
5B9A
\u5927\u
5C0F
smfcore.fileToLong
=
\u6587\u
4EF6
\u
8D85
\u
51FA
\u
89C4
\u
5B9A
\u5927\u
5C0F
smfcore.fileError
=
\u6587\u
4EF6
\u
89E3
\u6790\u5931\u
8D25
smfcore.fileError
=
\u6587\u
4EF6
\u
89E3
\u6790\u5931\u
8D25
smfcore.valueNotFind
=
\u
672A
\u
627E
\u5230
{0}[{1}]
smfcore.valueNotFind
=
\u
672A
\u
627E
\u5230
{0}[{1}]
...
@@ -106,6 +107,7 @@ smfcore.error.barcode.wrongLength=\u6761\u7801[{0}]\u957F\u5EA6\u9519\u8BEF
...
@@ -106,6 +107,7 @@ smfcore.error.barcode.wrongLength=\u6761\u7801[{0}]\u957F\u5EA6\u9519\u8BEF
smfcore.error.barcode.noField
=
\u6761\u7801\u
89E3
\u6790\u5931\u
8D25,
\u
672A
\u
627E
\u5230
{0}
\u
5B57
\u
6BB5
smfcore.error.barcode.noField
=
\u6761\u7801\u
89E3
\u6790\u5931\u
8D25,
\u
672A
\u
627E
\u5230
{0}
\u
5B57
\u
6BB5
smfcore.error.barcode.pnNotExist
=
x
\u6863\u6848
{0}
\u
4E0D
\u
5B58
\u5728
smfcore.error.barcode.pnNotExist
=
x
\u6863\u6848
{0}
\u
4E0D
\u
5B58
\u5728
smfcore.error.barcode.locked
=
\u
5E93
\u
4F4D[{0}]
\u
5DF2
\u
88AB
\u9501\u
5B9A
smfcore.error.barcode.locked
=
\u
5E93
\u
4F4D[{0}]
\u
5DF2
\u
88AB
\u9501\u
5B9A
smfcore.error.barcode.authError
=
\u6761\u7801\u
89E3
\u6790\u5931\u
8D25,
\u
8BF7
\u8054\u
7CFB
\u
4F9B
\u
5E94
\u5546\u5904\u7406
smfcore.manualOut.ok
=
\u
624B
\u
52A8
\u
51FA
\u
5E93
\u6210\u
529F
smfcore.manualOut.ok
=
\u
624B
\u
52A8
\u
51FA
\u
5E93
\u6210\u
529F
smfcore.manualOut.notFound
=
\u
4ED3
\u
5E93
\u
4E2D
\u
672A
\u
627E
\u5230\u6599\u
76D8
\u
4FE1
\u
606F
smfcore.manualOut.notFound
=
\u
4ED3
\u
5E93
\u
4E2D
\u
672A
\u
627E
\u5230\u6599\u
76D8
\u
4FE1
\u
606F
smfcore.order.lineCanotNull
=
\u
7EBF
\u
522B
\u
4E0D
\u
80FD
\u
4E3A
\u
7A7A
smfcore.order.lineCanotNull
=
\u
7EBF
\u
522B
\u
4E0D
\u
80FD
\u
4E3A
\u
7A7A
...
...
src/main/resources/messages_zh_TW.properties
查看文件 @
1de6dd3
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u4E0D\u80FD\u7232\u7A7A
...
@@ -2,6 +2,7 @@ smfcore.valueCanotNull={0}\u4E0D\u80FD\u7232\u7A7A
smfcore.feleFormatError
=
\u6587\u
4EF6
\u
683C
\u
5F0F
\u
932F
\u
8AA4
\u
FF01,
\u
50C5
\u
652F
\u6301
{0}
\u
683C
\u
5F0F
smfcore.feleFormatError
=
\u6587\u
4EF6
\u
683C
\u
5F0F
\u
932F
\u
8AA4
\u
FF01,
\u
50C5
\u
652F
\u6301
{0}
\u
683C
\u
5F0F
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
5DF2
\u
5B58
\u5728
smfcore.valueAlreadyExist
=
{0}[{1}]
\u
5DF2
\u
5B58
\u5728
smfcore.valueNotExist
=
{0}[{1}]
\u
4E0D
\u
5B58
\u5728
smfcore.valueNotExist
=
{0}[{1}]
\u
4E0D
\u
5B58
\u5728
smfcore.valueInvalid
=
[{0}]
\u
4E26
\u
975E
\u6709\u6548\u7684\u
53C3
\u6578
smfcore.fileToLong
=
\u6587\u
4EF6
\u
8D85
\u
51FA
\u
898F
\u
5B9A
\u5927\u
5C0F
smfcore.fileToLong
=
\u6587\u
4EF6
\u
8D85
\u
51FA
\u
898F
\u
5B9A
\u5927\u
5C0F
smfcore.fileError
=
\u6587\u
4EF6
\u
89E3
\u6790\u5931\u6557
smfcore.fileError
=
\u6587\u
4EF6
\u
89E3
\u6790\u5931\u6557
smfcore.valueNotFind
=
\u
672A
\u
627E
\u5230
{0}[{1}]
smfcore.valueNotFind
=
\u
672A
\u
627E
\u5230
{0}[{1}]
...
@@ -106,6 +107,7 @@ smfcore.error.barcode.noField=\u689D\u78BC\u89E3\u6790\u5931\u6557\uFF0C\u672A\u
...
@@ -106,6 +107,7 @@ smfcore.error.barcode.noField=\u689D\u78BC\u89E3\u6790\u5931\u6557\uFF0C\u672A\u
smfcore.error.barcode.pnNotExist
=
\u
6A94
\u6848
{0}
\u
4E0D
\u
5B58
\u5728
smfcore.error.barcode.pnNotExist
=
\u
6A94
\u6848
{0}
\u
4E0D
\u
5B58
\u5728
smfcore.error.barcode.invalid
=
\u
672A
\u
627E
\u5230\u6709\u6548\u7684\u
689D
\u
78BC
smfcore.error.barcode.invalid
=
\u
672A
\u
627E
\u5230\u6709\u6548\u7684\u
689D
\u
78BC
smfcore.error.barcode.locked
=
\u
5EAB
\u
4F4D[{0}]
\u
5DF2
\u
88AB
\u9396\u
5B9A
smfcore.error.barcode.locked
=
\u
5EAB
\u
4F4D[{0}]
\u
5DF2
\u
88AB
\u9396\u
5B9A
smfcore.error.barcode.authError
=
\u
689D
\u
78BC
\u
89E3
\u6790\u5931\u6557\u
FF0C
\u
8ACB
\u
806F
\u
7D61
\u
4F9B
\u
61C9
\u5546\u8655\u7406
smfcore.manualOut.ok
=
\u
624B
\u
52D5
\u
51FA
\u
5EAB
\u6210\u
529F
smfcore.manualOut.ok
=
\u
624B
\u
52D5
\u
51FA
\u
5EAB
\u6210\u
529F
smfcore.manualOut.notFound
=
\u5009\u
5EAB
\u
4E2D
\u
672A
\u
627E
\u5230\u6599\u
76E4
\u
4FE1
\u
606F
smfcore.manualOut.notFound
=
\u5009\u
5EAB
\u
4E2D
\u
672A
\u
627E
\u5230\u6599\u
76E4
\u
4FE1
\u
606F
smfcore.order.lineCanotNull
=
\u
7DDA
\u5225\u
4E0D
\u
80FD
\u
70BA
\u
7A7A
smfcore.order.lineCanotNull
=
\u
7DDA
\u5225\u
4E0D
\u
80FD
\u
70BA
\u
7A7A
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论