zh-CN.js
37.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
export default {
lang: '中文',
type: {
403: '抱歉,你无权访问该页面',
404: '抱歉,你访问的页面不存在或无权访问',
500: '抱歉,服务器出错了',
returnHome: '返回首页'
},
button: {
ok: '确定',
search: '查询',
reset: '重置',
new: '新增',
bulkNew: '批量新增',
edit: '编辑',
close: '关闭',
delete: '删除',
start: '启动',
stop: '停止',
runOnce: '执行一次',
more: '更多',
details: '详情',
expand: '展开',
collapse: '收起',
select: '选择',
selected: '已选择',
item: '项',
clearAll: '清空',
import: '导入',
export: '导出',
refresh: '刷新',
deletingIt: '确定删除吗?',
multiSelectActions: '批量操作',
print: '打印',
cancel: '取消',
advancedSearch: '高级查询',
submit: '提交',
newlyBuilt: '新建',
selectContainer: '选取容器',
saveSearchCriteria: '保存查询条件',
configuration: '配置',
},
list: {
showing: '共',
records: '条'
},
home: {
todayInventoryTradingVolume: '今日库存交易量',
todayIncomingStockQuantity: '今日入库量',
todayOutgoingStockQuantity: '今日出库量',
totalInventoryQuantity: '库存总量',
inventoryItemCount: '库内物品总数',
theNumberOfPendingTasks: '待执行任务数',
dailyHistoricalShipmentVolume: '历史每日发货量',
locationUtilizationRate: '库位利用率',
hereIsAChart: '这里放图表',
onlineInventoryStatus: '在线库存状态',
inventoryOverview: '库存概况',
},
system: {
saveAndTask: '保存并安排任务',
resourceNotFound: '很抱歉,资源未找到',
reLogin: '重新登录',
networkTimeout: "网络超时",
loginExpired: "很抱歉,登录已过期,请重新登录",
name: '格力仓储管理系统',
copyright: ' Copyright @2024 华恒焊接有限公司',
accountLoginWithPassword: '账号密码登录',
enterYourAccountName: '请输入帐户名',
enterYourPassword: '请输入密码',
selectYourWarehouse: '请选择仓库',
loginFailed: '登录失败',
incorrectPassword: '密码错误',
oldPassword: '旧密码',
inputOldPassword: '请输入旧密码',
newPassword: '新密码',
inputNewPassword: '请输入新密码',
confirmNewPassword: '确认新密码',
inputConfirmNewPassword: '请确认新密码',
passwordsDoNotMatch: '密码不匹配',
pleaseSelect: '请选择',
pleaseSelectStatus: '请选择状态',
languageSettings: '语言设置',
themeSettings: '主题设置',
darkModeMenuStyle: '暗色菜单风格',
lightModeMenuStyle: '亮色菜单风格',
otherSettings: '其他设置',
colorBlindnessMode: '色弱模式',
multiTabMode: '多页签模式',
logout: '退出登录',
welcome: '欢迎您',
welcome2: '欢迎',
welcomeToEnterThe: '欢迎进入',
welcomeBack: '欢迎回来',
searchMenu: '搜索菜单',
goodMorning1: '早上好',
goodMorning2: '上午好',
goodAfternoon1: '中午好',
goodAfternoon2: '下午好',
goodEvening: '晚上好',
requestEncounteredError: '请求出现错误,请稍后再试',
noLoggedInUser: '当前系统无登录用户',
systemMessage: '系统提示',
systemSettings: '系统设置',
passwordChange: "密码修改",
home: '首页',
systemLicenseExpirationDate: '系统授权到期日:',
clearCache: '清理缓存',
downloadOperationManual: '操作说明书下载',
userManualForHuaHengWMS4: 'WMS4操作说明书',
startDownloading: '开始下载......',
fileDownloadFailed: '文件下载失败',
cacheRefreshed: '缓存刷新完成',
cacheRefreshFailed: '缓存刷新失败',
refresh: "刷新",
closeTheLeftSide: "关闭左侧",
closeTheRightSide: "关闭右侧",
closeOthers: "关闭其他",
message: '消息',
reminder: '提示',
logoutMessage: '真的要注销登录吗?',
advancedConditionBuilder: '高级条件构造器',
filterConditionMatching: '过滤条件匹配',
allConditionsMustMatch: '所有条件都要求匹配',
anyConditionMatches: '条件中的任意一个匹配',
selectQueryFields: '选择查询字段',
pleaseEnterANumericalValue: '请输入数值',
pleaseEnterAValue: '请输入值',
pleaseSelectADate: '请选择日期',
pleaseSelectATime: '请选择时间',
pleaseSelectADepartment: '请选择部门',
pleaseSelectAUser: '请选择用户',
savedQuery: '保存的查询',
noQueriesSaved: '没有保存任何查询',
matchingRules: '匹配规则',
AdvancedQueryConditionsAreInEffect: '已有高级查询条件生效',
noQueryConditions: '没有任何查询条件',
emptyConditionsCannotBeSaved: '空条件不能保存',
saveNameCannotBeEmpty: '保存名称不能为空',
cannotQueryEmptyConditions: '不能查询空条件',
pleaseEnterTheNameToSave: '请输入保存的名称',
saveSuccessful: '保存成功',
alreadyExists: '已存在',
whetherToOverwrite: '是否覆盖?',
equals: '等于',
contains: '包含',
startsWith: '以...开始',
endsWith: '以...结尾',
within: '在...中',
notEqualTo: '不等于',
greater: '大于',
greaterThanOrEqualTo: '大于等于',
less: '小于',
lessThanOrEqualTo: '小于等于',
is: '是',
notIs: "否",
select: '选择',
selected: '已选',
createBy: "创建人",
updater: "更新人",
createTime: "创建时间",
updateTime: "更新时间",
options: "操作",
remark: "备注",
batch: '批次',
inputBatch: '请输入批次',
content: '内容',
level: '等级',
monday: '星期一',
tuesday: '星期二',
wednesday: '星期三',
thursday: '星期四',
friday: '星期五',
saturday: '星期六',
sunday: '星期日',
recycleBin: '回收站',
addUser: '添加用户',
userAccount: '用户账号',
account: '账号',
userName: '用户姓名',
staffId: '工号',
sex: '性别',
role: '角色',
mobileNumber: '手机号码',
mobile: '手机',
email: '邮箱',
selectEmail: '请选择邮箱',
warehouse: '所属仓库',
zone: '所属库区',
status: '状态',
fuzzyAccountSearch: '请输入用户账号',
selectSex: '请选择性别',
enterUserName: '请输入用户姓名',
enterName: '请输入名称',
enterMobileNumber: '请输入手机号码',
userStatus: '用户状态',
selectUserStatus: '请选择用户状态',
selectStatus: '请选择状态',
enterUserAccount: '请输入用户账号',
enterAccount: '请输入账号',
loginPassword: '登录密码',
enterLoginPassword: '请输入登录密码',
confirmPassword: '确认密码',
pleaseProvideLoginPasswordAgain: '请重新输入登录密码',
enterStaffId: '请输入工号',
roleAssignment: '角色分配',
selectRole: '请选择角色',
warehouseAllocation: '仓库分配',
zoneAllocation: '库区分配',
selectZone: '请选择库区',
pleaseEnterAValidLandlinePhoneNumber: '请输入正确的座机号码',
thePasswordsEnteredDoNotMatch: '两次输入的密码不一致',
phoneNumberAlreadyExists: '手机号已存在',
pleaseEnterAValidPhoneNumberFormat: '请输入正确格式的手机号码',
emailAddressAlreadyExists: '邮箱已存在',
pleaseEnterAValidEmailFormat: '请输入正确格式的邮箱',
usernameAlreadyExists: '用户名已存在',
confirmDiscardChanges: '确定放弃编辑?',
password: '密码',
freeze: '冻结',
confirmFreeze: '确认冻结',
unfreeze: '解冻',
confirmUnfreeze: '确认解冻吗?',
agent: '代理人',
resetPassword: '重新设定密码',
userRecycleBin: '用户回收站',
avatar: '头像',
bulkRestore: '批量还原',
bulkDelete: '批量删除',
restoreUser: '还原用户',
permanentlyDelete: '彻底删除',
areYouSureYouWantToRestoreThese: '您确定要恢复这',
areYouSureYouWantToPermanentlyDeleteThese: '您确定要彻底删除这',
users: '个用户吗?',
users2: '个用户成功',
successfullyRestored: '还原',
successfullyPermanentlyDeleted: '彻底删除',
attention: '注意:彻底删除后将无法恢复,请谨慎操作!',
failedToRetrieveDeletedUsers: '查询已删除的用户失败:',
userInformation: '用户信息',
pleaseSelectARecord: '请选择一条记录!',
thisOperationIsNotAllowed: '管理员账号不允许此操作,请重新选择!',
confirmOperation: '确认操作',
selectedAccount: '选择账号?',
notAdministratorAccounts: '管理员账号不允许此操作!',
roleName: '角色名称',
addRole: '新建角色',
roleManagement: '角色管理',
user: '用户',
authorize: '授权',
existingUsers: '已有用户',
roleCode: '角色编码',
creationTime: '创建时间',
pleaseSelectARole: '请选择一个角色',
confirmDeletionOfSelectedData: '是否删除选中数据?',
confirmDelete: '确认删除',
pleaseEnterTheRoleCode: '请输入角色编码',
pleaseEnterTheRoleName: '请输入角色名称',
description: '描述',
pleaseEnterTheDescription: '请输入描述',
pleaseEnterTheRoleDescription: '请输入角色描述',
lengthShouldBeBetween2And30Characters: '长度在 2 到 30 个字符',
lengthShouldNotExceed64Characters: '长度不超过 64 个字符',
lengthShouldNotExceed126Characters: '长度不超过 126 个字符',
theRoleCodeCannotContainChineseCharacters: '角色编码不可输入汉字!',
rolePermissionConfiguration: '角色权限配置',
ownedPermissions: '所拥有的权限',
treeOperations: '树操作',
parentChildAssociation: '父子关联',
removeAssociation: '取消关联',
selectAll: '全部勾选',
deselectAll: '取消全选',
expandAll: '展开所有',
mergeAll: '合并所有',
saveOnly: '仅保存',
saveAndClose: '保存并关闭',
addExistingUser: '添加已有用户',
dictionaryName: '字典名称',
pleaseEnterTheDictionaryName: '请输入字典名称',
dictionaryCode: '字典编号',
pleaseEnterTheDictionaryCode: '请输入字典编号',
pleaseEnterTheDictionaryDescription: '请输入字典描述',
add: '添加',
dictionaryInformation: '字典信息',
dictionaryConfiguration: '字典配置',
dictionaryList: '字典列表',
name2: '名称',
pleaseEnterTheName: '请输入名称',
value: '值',
pleaseEnterValue: '请输入值',
normal: '正常',
disabled: '禁用',
dataValue: '数据值',
pleaseEnterTheDataValue: '请输入数据值',
sortValue: '排序值',
theSmallerTheValueTheHigherThePriority: '值越小越靠前',
enable: '启用',
theDataValueCannotContainSpecialCharacters: '数据值不能包含特殊字符!',
retrieveDictionary: '字典取回',
permanentlyDeleteDictionary: '彻底删除字典',
areYouSureYouWantToPermanentlyDeleteThisDictionaryEntry: '您确定要彻底删除这个字典项吗?',
code: '编码',
inputCode: '请输入编码',
apiName: '接口名称',
apiCode: '接口编码',
inputApiName: '请输入接口名称',
inputApiCode: '请输入接口编码',
url: '接口地址',
inputUrl: '请输入接口地址',
title: '标题',
pleaseEnterTheTitle: '请输入标题',
publisher: '发布人',
pleaseEnterThePublisher: '请输入发布人',
markAllAsRead: '全部标注已读',
view: '查看',
viewMore: '查看更多',
messageType: '消息类型',
notification: '通知公告',
systemMessages: '系统消息',
publishingTime: '发布时间',
priority: '优先级',
announcement: '系统通告',
confirmThePublication: '确定发布吗?',
publish: '发布',
confirmTheCancellationRevoke: '确定撤销吗?',
revoke: '撤销',
viewDetails: '查看详情',
notificationRecipients: '通告对象',
specifyUsers: '指定用户',
allUsers: '全体用户',
publicationStatus: '发布状态',
notPublished: '未发布',
published: '已发布',
revoked: '已撤销',
revocationTime: '撤销时间',
summary: '摘要',
pleaseEnterTheSummary: '请输入摘要',
deadline: '截至日期',
pleaseSelectTheEndTime: '请选择结束时间',
receivingUsers: '接收用户',
pleaseSelectDesignatedUsers: '请选择指定用户',
pleaseSelectThePriority: '请选择优先级',
low: '低',
medium: '中',
high: '高',
pleaseSelectTheMessageType: '请选择消息类型',
SelectTheRecipientType: '请选择通告对象类型',
theSpecifiedUsersCannotBeEmpty: '指定用户不能为空',
startTimeShouldBeEarlierThanTheEndTime: '开始时间需小于结束时间',
endTimeShouldBeLaterThanTheStartTime: '结束时间需大于开始时间',
messageReminder: '消息提醒',
generalMessage: '一般消息',
importantMessage: '重要消息',
urgentMessage: '紧急消息',
notificationMessage: '通知消息',
goToDealWith: '去处理',
},
task: {
scheduledTaskName: '任务名',
inputScheduledTaskName: '请输入任务名',
scheduledTaskClass: '任务类',
inputScheduledTaskClass: '请输入任务类',
cronExpression: 'Cron 表达式',
inputCronExpression: '请输入 Cron 表达式',
parameter: '参数',
taskStatus: '任务状态',
inputTaskStatus: '请选择任务状态',
taskStatusAll: '全部',
taskStatusStarted: '已启动',
taskStatusPaused: '已暂停',
emptyIn: '空托盘入库',
emptyOut: '空托盘出库',
moveTask: '移库',
checkOutTask: '出库查看',
zone: '库区',
selectZone: '请选择库区',
taskId: '任务ID',
inputTaskId: '请输入任务ID',
taskType: '任务类型',
inputTaskType: '请选择任务类型',
containerCode: '容器',
container: '容器',
inputContainerCode: '请输入容器编码',
fromLocationCode: '起始库位',
inputFromLocationCode: '请输入起始库位编码',
toLocationCode: '目标库位',
inputToLocationCode: '请输入目标库位编码',
fromStationCode: '起始站点',
inputFromStationCode: '请输入起始站点编码',
toStationCode: '目标站点',
inputToStationCode: '请输入目标站点编码',
toAgvPort: 'agv去向位置',
inputToAgvPort: '请输入agv去向位置',
shipmentId: '出库单ID',
inputShipmentId: '请输入出库单ID',
receiptId: '入库单ID',
receiptId2: '入库单ID',
inputReceiptId: '请输入入库单ID',
outboundId: '出库ID',
inputOutboundId: '请输入出库ID',
creationTime: '创建时间',
inputStartTime: '请选择开始时间',
inputEndTime: '请选择结束时间',
exceptionCode: "异常信息",
dispatchTime: '下发时间',
inputDispatchTime: '请选择下发时间',
allocationTime: '库位分配时间',
arrivalTime: '分拣口到达时间',
completionTime: '完成时间',
execute: "执行",
createInventoryTransferTask: '创建移库任务',
toPortCode: '出库站台',
inputToPortCode: '请输入出库站台',
selectToPortCode: '请选择出库站台',
select: '选择',
pleaseSelect: '请选择',
pleaseInput: '请输入',
carNo: '小车编码',
priority: '优先级',
ensureCancelTask: '确定取消任务吗',
taskDetail: '任务详情',
taskDetailId: '任务详情ID',
startPoint: '起始点位',
pleaseEnterStartPoint: '请输入起始点位',
targetPoint: '目标点位',
pleaseEnterTargetPoint: '请输入目标点位',
inventoryRegistration: '库存登记',
inventoryCountQuality: '实盘数量',
enterInventoryCountQuality: '请输入实盘数量',
},
api: {
apiName: '接口名称',
inputApiName: '请输入接口名称',
apiMethod: '请求类型',
inputApiMethod: '请输入请求类型',
ip: '请求方 IP',
inputIp: '请输入请求方 IP',
requestFrom: '请求方名称',
inputRequestFrom: '请输入请求方名称',
inputResponseBy: '请输入响应方名称',
url: '请求地址',
inputUrl: '请输入请求地址',
duration: '响应耗时(毫秒)',
inputDuration: '请输入响应耗时(毫秒)',
retCode: '业务响应码',
inputRetCode: '请输入业务响应码',
requestTime: '请求时间',
selectStartTime: '请选择开始时间',
selectEndTime: '请选择结束时间',
requestBody: '请求内容',
responseBy: '响应方',
responseBody: '响应内容',
responseTime: '响应时间',
exception: '异常堆栈',
},
parameter: {
name: '参数名称',
inputName: '请输入参数名称',
code: '参数键名',
inputCode: '请输入参数键名',
value: '参数键值',
inputValue: '请输入参数键值',
configuration: '参数配置',
},
address: {
remark: '接口名称',
inputRemark: '请输入接口名称',
param: '接口编码',
inputParam: '请输入接口编码',
url: '接口地址',
inputUrl: '请输入接口地址',
},
translate: {
relateTable: '关联表名',
relateId: '关联 ID',
chinese: '中文',
inputChinese: '请输入中文',
english: '英语',
inputEnglish: '请输入英语',
},
config: {
location: '库位',
locationCode: '库位编码',
inputLocationCode: '请输入库位编码',
container: '容器',
containerCode: '容器编码',
inputContainerCode: '请输入容器编码',
status: '状态',
selectStatus: "请选择状态",
inputStatus: '请输入状态',
zoneCode: '库区',
zone: '库区',
selectZone: '请选择库区',
inputZoneCode: '请输入库区',
region: "区域",
selectRegion: '请选择区域',
locationType: '库位类型',
selectLocationType: '请选择库位类型',
inputLocationType: '请输入库位类型',
roadway: '巷道',
inputRoadway: '请输入巷道',
iRow: '行',
inputIRow: '请输入行',
iColumn: '列',
inputIColumn: '请输入列',
iLayer: '层',
inputILayer: '请输入层',
highLow: '高低位',
inputHighLow: '请输入高低位',
selectHighLow: '请选择高低位',
rowFlag: '内外侧',
selectRowFlag: '请选择内外侧',
inputRowFlag: '请输入内外侧',
materialAreaCode: '物料分区',
inputMaterialAreaCode: '请输入物料分区',
isThereContainer: '是否有托盘',
selectIsThereContainer: '请选择库位中是否有托盘',
usable: '可用状态',
selectUsable: '请选择可用状态',
inputUsable: '请输入可用状态',
locking: '锁定',
pleaseLocking: '请输入锁定原因',
code: '编码',
inputCode: '请输入编码',
name: '名称',
inputName: '请输入名称',
length: '长度',
inputLength: '请输入长度',
width: '宽度',
inputWidth: '请输入宽度',
height: '高度',
inputHeight: '请输入高度',
maxWeight: '最大承重',
inputMaxWeight: '请输入最大承重',
highLevel: '高度值',
inputHighLevel: '请输入高度值',
encodingPrefix: '编码前缀',
inputEncodingPrefix: '请输入编码前缀',
startLine: '起始行',
inputStartLine: '请输入起始行',
lastRow: '最后行',
inputLastRow: '请输入最后行',
startColumn: '起始列',
inputStartColumn: '请输入起始列',
lastColumn: '最后列',
inputLastColumn: '请输入最后列',
startLayer: '起始层',
inputStartLayer: '请输入起始层',
lastLayer: '最后层',
inputLastLayer: '请输入最后层',
containerTypeCode: '容器类型',
selectContainerTypeCode: '请选择容器类型',
containerStatus: '容器状态',
selectContainerStatus: '请选择容器状态',
containerFillStatus: '容器填充状态',
selectContainerFillStatus: '请选择容器填充状态',
position: '位置',
selectPosition: '请选择位置',
totalTaskCount: '总任务数',
moveTaskTimes: '移库任务数',
number: '数量',
inputNumber: '请输入数量',
emptyContainerWeight: '空容器重量',
pleaseEmptyContainerWeight: '请输入空容器重量',
maxContainerWeight: '容器最大承重',
inputMaxContainerWeight: '请输入容器最大承重',
inputFromPort: '请输入AGV点位',
formPort: '起始点位',
materialCode: '物料编码',
inputMaterialCode: '请输入物料编码',
materialName: '物料名称',
inputMaterialName: '请输入物料名称',
usableStatus: '可用状态',
selectUsableStatus: '请选择可用状态',
materialNumber: '物料数量',
company: '货主',
companyCode: '货主编码',
companyName: '货主名称',
inputCompanyName: '请输入货主名称',
selectCompany: '请选择货主',
inputCompanyCode: '请输入货主编码',
specification: '规格',
inputSpecification: '请输入规格',
unit: '单位',
inputUnit: '请输入单位',
selectUnit: '请选择单位',
type: '类别',
inputType: '请输入类别',
selectType: '请选择类别',
abcClassification: 'ABC分类',
inputABCClassification: '请输入ABC分类',
shelfLife: '保质期(天)',
inputShelfLife: '请输入保质期(天)',
nearExpiryAlertDays: '临期预警天数',
inputNearExpiryAlertDays: '请输入临期预警天数',
locatingRule: '定位规则',
inputLocatingRule: '请输入定位规则',
allocationRule: '分配规则',
inputAllocationRule: '请输入分配规则',
emptyLocationRule: '空货位规则',
inputEmptyLocationRule: '请输入空货位规则',
pickingRule: '拣货规则',
inputPickingRule: '请输入拣货规则',
receivingFlow: '入库流程',
inputReceivingFlow: '请输入入库流程',
shippingFlow: '出库流程',
inputshippingFlow: '请输入出库流程',
minShelfLifeDays: '收货预警天数',
inputMinShelfLifeDays: '请输入收货预警天数',
warehouseCode: '仓库编码',
inputWarehousecode: '请输入仓库编码',
alarmType: '预警类别代码',
inputAlarmType: '请输入预警类别代码',
max: '最大',
inputMax: '请输入最大',
min: '最小',
inputMin: '请输入最小',
upper: '上限预警值',
inputUpper: '请输入上限预警值',
lower: '下限预警值',
inputLower: '请输入下限预警值',
remark: '备注',
inputRemark: '请输入备注',
address: '地址',
inputAddress: '请输入地址',
district: '区/县',
inputDistrict: '请输入区/县',
city: '城市',
inputCity: '请输入城市',
state: '省份',
inputState: '请输入省份',
country: '国家',
inputCountry: '请输入国家',
attentionto: '联系人',
inputAttentionto: '请输入联系人',
phone: '电话',
inputPhone: '请输入电话号码',
postalcode: '邮编',
inputPostalcode: '请输入邮编',
locationTypeCode: '包含库位类型',
boundLocationType: '绑定的库位类型',
infomation: '异常原因'
},
receipt: {
inboundOrderReport: '入库单报表',
return: '回传',
returingIt: '确定回传吗?',
cross: '越库',
crossingIt: '确定越库吗?',
group: '组盘',
submitReview: '提交审核',
review: '审核',
reason: '原因',
reviewProgress: '审核进度',
receiptCode: '入库单编码',
inputReceiptCode: '请输入入库单编码',
receiptDetailID: '入库单据详情ID',
receiptType: '入库单类型',
selectReceiptType: '请选择入库单类型',
inputReceiptType: '请输入入库单类型',
firstStatus: '头状态',
selectFirstStatus: '请选择头状态',
lastStatus: '尾状态',
selectLastStatus: '请选择尾状态',
referCode: '上游单号',
inputReferCode: '请输入上游单号',
supplier: '供应商',
selectSupplier: '请选择供应商',
totalNumber: '总数量',
totalLines: '总行数',
remark: '备注',
backFailureReason: '回传失败原因',
materialSpecification: '物料规格',
materialUnit: '物料单位',
documentQty: '单据数量',
groupingQty: '组盘数量',
inboundQty: '入库数量',
inventoryStatus: '库存状态',
selectInventoryStatus: '请选择库存状态',
batch: '批次',
inputBatch: '请输入批次',
documentStatus: '单据状态',
selectDocumentStatus: '请选择单据状态',
inputCreateBy: '请输入创建人',
batchTask: '批量生成任务',
batchGroup: '批量取消组盘',
addInbound: '补充入库',
receiptContainerHeaderId: '入库组盘头Id',
receiptContainerDetailId: '入库组盘详情Id',
serialNumber: '序列号',
receivedQty: '已收数量',
inputReceivedQty: '请输入已收数量',
receivableQty: '可收数量',
inboundNoDetails: '入库单没有详情',
inboundDetail: '入库单详情',
inboundGroup: '入库组盘详情',
historyReceiptDetail: '历史入库单详情',
auditResult: '审核结果',
selectProcessType: '请选择流程类型',
sortingInboundPort: '分拣入库口',
selectSortInboundPort: '请选择分拣入库口',
selectSortInboundPort2: '选择分拣入库口',
selectOneContainer: '请选择一条容器数据',
generateTask: '生成任务',
cancelGroup: '取消配盘',
ensureCancelGroup: '确定取消配盘吗?',
pleaseSelectLeastOneRecord: '请至少选择一条记录',
noRecordsEligibleForCancellation: '没有符合取消条件的记录',
noRecordsEligibleForGeneration: '没有符合生成条件的记录',
},
log: {
// 操作日志
bizId: '业务ID',
bizType: '业务类型',
bizTag: '业务标签',
operationMsg: '操作内容',
createTime: '创建日期',
operationStatus: '操作结果状态',
operationTime: '操作时间',
operationCostTime: '操作耗时',
inputOperationCostTime: '请输入操作耗时',
inputOperationTime: '请选择操作时间',
methodReturnsContent: '方法返回内容',
inputMethodReturnsContent: '请输入方法返回内容',
methodExceptionContents: '方法异常内容',
inputMethodExceptionContents: '请输入方法异常内容',
inputOperatorName: '请输入操作人姓名',
operatorName: '操作人姓名',
inputBizId: '请输入业务ID',
inputBizType: '请输入业务类型',
selectBizType: '请选择业务类型',
inputBizTag: '请输入业务标签',
inputOperationMsg: '请输入操作内容',
inputOperationTime_begin: '请选择开始时间',
inputOperationTime_end: '请选择结束时间',
inputOperationStatus: '请输入操作结果状态容',
// 接口日志
apiName: '接口名称',
requestFrom: '请求方名称',
responseBy: '响应方名称',
url: '请求地址',
requestBody: '请求内容',
responseBody: '响应内容',
requestTime: '请求时间',
retCode: '业务响应码',
httpCode: 'HTTP响应码',
duration_begin: '响应耗时(毫秒)',
expandHeader: '请求头',
exceptionStackInfo: '异常堆栈信息',
apiMethod: '请求类型',
ip: '请求方 IP',
responseTime: '响应时间',
inputApiName: '请输入接口名称',
inputRequestFrom: '请输入请求方名称',
inputResponseBy: '请输入响应方名称',
inputUrl: '请输入请求地址',
inputRequestBody: '请输入请求内容',
inputResponseBody: '请输入响应内容',
inputRequestTime_begin: '请选择开始时间',
inputRequestTime_end: '请选择结束时间',
inputRetCode: '请输入业务响应码',
inputHttpCode: '请输入HTTP响应码',
inputDuration_begin: '请输入响应耗时(毫秒)',
loginlog: '登录日志',
operationlog: '操作日志',
keyWord: '搜索日志',
inputKeyWord: '请输入关键字',
createTimeRange: '[\'开始时间\', \'结束时间\']',
operateType: '操作类型',
inputOperateType: '请选择操作类型',
logContent: '日志内容',
userid: '用户ID',
username: '用户名称',
costTime: '耗时 (毫秒)',
logType_dictText: '日志类型',
operateType_dictText: '操作类型',
requestMethod: '请求方法',
requestParams: '请求参数',
},
monitor: {
zone: '库区',
inputZone: '请输入库区',
row: '行',
line: '列',
layer: '层',
grid_rest: '空柜空闲',
grid_empty: '空盘空闲',
grid_all: '整盘空闲',
grid_emp_lock: '空柜锁定',
grid_empty_lock: '空盘锁定',
grid_all_lock: '整盘锁定',
location_statistical: '库位统计情况',
locationCode: '库位编码',
inputLocationCode: '库位编码',
containerCode: '容器编码',
material: '物料信息',
the: '第',
none: '无',
locationTotalNum: '库位总数',
locationEmptyNum: '空库位',
locationEmptyNumContainer: '空容器库位',
locationEmptyNumPallet: '有货库位',
batch: '批次',
materialName: '物料名称',
materialCode: '物料编码',
num: '数量',
wmsId: 'WMS任务ID',
inputWmsId: '请输入WMS任务ID',
wcsId: 'WCS任务ID',
inputWcsId: '请输入WCS任务ID',
consistencyStatus: '数据状态',
inputConsistencyStatus: '请选择数据状态',
taskCreateTime: '任务创建时间',
inputTaskCreateTimeBegin: '请选择开始时间',
inputTaskCreateTimeEnd: '请选择结束时间',
taskType: 'WMS任务类型',
fromLocationCode: '源库位',
wcsFromLocationCode: 'WCS源库位',
toLocationCode: '目标库位',
wcsToLocationCode: 'WCS目标库位',
wcsContainerCode: 'WCS容器编码',
taskStatus: 'WMS任务状态',
wcsTaskStatus: 'WCS任务状态',
wcsTaskCreateTime: 'WCS任务创建时间',
locationStatus: '库位表状态',
wcsLocationStatus: 'WCS库位表状态',
locationContainerCode: '库位表容器编码',
containerContainerCode: '托盘表容器编码',
inventoryContainerCode: '库存表容器编码',
containerStatus: '托盘表状态',
locationTaskDetail: '库位任务详情',
//定时任务
cronExpression: 'Cron表达式',
inputCronExpression: '请输入Cron表达式',
scheduledTaskClassName: '任务类名',
inputScheduledTaskClassName: '请输入任务类名',
parameter: '参数',
inputParam: '请输入参数',
description: '描述',
inputDescription: '请输入描述',
status: '状态',
jobClassName: '任务类名',
inputJobClassName: '请输入任务类名',
jobStatus: '任务状态',
inputJobStatus: '请选择状态',
whole: '全部',
normalcy: '正常',
disable: '禁用',
stop: '暂停',
activated: '已启动',
paused: '已暂停',
routerId: '路由ID',
routerName: '路由名称',
routerURI: '路由URI',
routingCondition: '路由条件',
addRoutingCondition: '添加路由条件',
filter: '过滤器',
addFilter: '添加过滤器',
addParameters: '添加参数',
fusibleLink: '熔断器',
restrictionFilters: '限流过滤器',
routingEditor: '路由编辑',
birthdays: '生日',
forceSbToQuit: '强退',
forceLogoutOfUser: '强制退出用户',
forceLogoutOfUsers: '强制退出用户?',
successes: '成功',
},
inventory: {
inventory: '库存',
total: '合计',
selectZone: '请选择库区',
inputContainerCode: '请输入容器编码',
inputLocationCode: '请输入库位编码',
inputMaterialCode: '请输入物料编码',
inputMaterialName: '请输入物料名称',
inputRoadway: '请输入巷道',
selectContainerStatus: '请选择容器状态',
inputOperationTime_begin: '请选择开始时间',
inputOperationTime_end: '请选择结束时间',
selectInventoryStatus: '请选择库存状态',
selectUsableStatus: '请选择可用状态',
selectCompany: '请选择货主',
enterReceiptCode: '请输入入库单编码',
enterShipmentCode: '请输入出库单编码',
inputFromLocationCode: '请输入起始库位编码',
inputToLocationCode: '请输入目标库位编码',
selectTranscationType: '请选择交易类型',
enterInventoryCheckCode: '请输入盘点单编码',
selectWarnStatus: '请选择预警状态',
inputBatch: '请输入批次',
inputSerialNumber: '请输入序列号',
inputMaterialSpec: '请输入物料规格',
inputMaterialUnit: '请输入物料单位',
inputAgeGreaterThan: '请输入库龄大于(天)',
zone: '库区',
location: '库位',
container: '容器',
outboundPort: '出库口',
selectOutboundPort: '请选择出库口',
selectOutboundPort2: '选择出库口',
containerCode: '容器编码',
locationCode: '库位编码',
material: '物料',
materialCode: '物料编码',
selectMaterial: '请选择物料',
materialName: '物料名称',
containerStatus: '容器状态',
roadway: '巷道',
createTime: '创建日期',
companyName: '货主',
inventoryStatus: '库存状态',
usableStatus: '可用状态',
materialSpec: '物料规格',
materialUnit: '物料单位',
batch: '批次',
serialNumber: '序列号',
ageGreaterThan: '库龄大于(天)',
receiptCode: '入库单编码',
shipmentCode: '出库单编码',
fromLocationCode: '起始库位编码',
toLocationCode: '目标库位编码',
transcationType: '交易类型',
createBy: "创建人",
inputCreateBy: '请输入创建人',
inventoryCheckCode: '盘点单编码',
inventoryCheckDetail: '盘点明细',
materialDetails: '物料详情',
systemQty: '系统数量',
actualQty: '实际数量',
enterActualQty: '请输入实际数量',
discrepancyQty: '差异数量',
reasonForFailure: '失败原因',
completer: '完成人',
completionTime: '完成时间',
createTask: '生成盘点任务',
inventoryRegistration: '实盘登记',
warnStatus: '预警状态',
inventoryId: '库存ID',
inventoryAge: '库龄(天)',
inventoryDetailId: '库存详情ID',
detailId: '详情ID',
inventoryDetail: '库存详情',
totalQty: '总数量',
qty: '数量',
totalLine: '总行数',
inboundDate: '入库日期',
inventoryTransferId: '库存交易ID',
inboundQty: '入库数量',
outboundQty: '出库数量',
taskLockQty: '任务锁定数量',
company: '货主',
companyCode: '货主编码',
totalLocation: '总货位数',
checkType: '盘点类型',
mainCheckStatus: '盘点主单状态',
checkStatus: '盘点状态',
mainCheckCode: '盘点主单编码',
checkPerson: '指定盘点人员',
realCheckPerson: '实际盘点人员',
pleaseSelectTheCheckType: '请选择盘点类型',
inventoryQty: '库存数量',
warningPeriod: '预警期',
shelfLife: '保质期',
min: '最小值',
lower: '下限预警值',
upper: '上限预警值',
max: '最大值',
effective: '是否有效',
remark: '备注',
containerFillRate: '托盘填充度',
},
shipment: {
id: '单据ID',
code: '单据编码',
company: '货主',
companyCode: '货主编码',
companyName: '货主名称',
type: '单据类型',
firstStatus: '头状态',
lastStatus: '尾状态',
referCode: '上游单号',
customer: '客户',
totalQty: '总数量',
totalLines: '总行数',
remark: '备注',
backErrorMsg: '回传错误信息',
zone: '库区',
selectZone: '请选择库区',
shipmentCode: '出库单编码',
enterShipmentCode: '请输入出库单编码',
selectCompany: '请选择货主',
selectShipmentType: '请选择单据类型',
selectFirstStatus: '请选择头状态',
selectLastStatus: '请选择尾状态',
inputReferCode: '请输入上游单号',
selectCustomer: '请选择客户',
inputRemark: '请输入备注',
inputCreateBy: '请输入创建人',
inputStartTime: '请选择开始时间',
inputEndTime: '请选择结束时间',
group: '配盘',
createBy: "创建人",
createTime: '创建日期',
automaticGroup: '自动配盘',
shipmentDetail: '出库单据详情',
shipmentDetailId: '出库单据详情ID',
materialCode: '物料编码',
materialName: '物料名称',
materialSpec: '物料规格',
materialUnit: '物料单位',
documentQty: '单据数量',
groupingQty: '组盘数量',
outboundQty: '出库数量',
availableQty: '可出数量',
inventoryQty: '库存数量',
inventoryStatus: '库存状态',
batch: '批次',
documentStatus: '单据状态',
selectMaterialCode: '请选择物料编码',
inputDocumentQty: '请输入单据数量',
selectInventoryStatus: '请选择库存状态',
inputBatch: '请输入批次',
inputShipmenQty: '请输入出库数量',
containerCode: '容器编码',
locationCode: '库位编码',
lockQty: '锁定数量',
reason: '原因',
historicalShipmentDetails: '历史出库单据详情',
inputContainerCode: '请输入容器编码',
status: '状态',
selectStatus: "请选择状态",
toPort: '出入口',
pleaseEnterTargetPort: '请输入目标出入口',
generateTask: '生成任务',
cancelGroup: '取消组盘',
areSureCancelGroup: '确定取消组盘吗?',
storageShipment: '平库出库',
deductInventory: '扣减库存',
outboundGroupDetails: '出库组盘详情',
selectOutboundPort: '请选择出库口',
pleaseSelectLeastOneRecord: '请至少选择一条记录',
destinationLocation: '去向库位',
selectDestinationLocation: '请选择去向库位',
shipmentContainerDetailId: '出库组盘详情ID',
}
}