printAllocationStorehouseLang.js
1.34 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
export const messages = {
en: {
printAllocationStorehouse:{
title: 'Allocation Storehouse Print',
applyId: 'Apply ID',
startUserName: 'Applicant',
createTime: 'Apply Time',
number: 'No.',
resName: 'Allocation Item',
resType: 'Item Type',
specName: 'Item Specification',
resCode: 'Item Code',
isFixedName: 'Fixed Item',
source: 'Source',
targetStorehouse: 'Target Storehouse',
originalStock: 'Original Stock',
allocationQuantity: 'Allocation Quantity',
remark: 'Remark',
storeManagerSign: 'Store Manager Sign',
allocationStaffSign: 'Allocation Staff Sign',
time: 'Time',
fetchError: 'Failed to get allocation information',
}
},
zh: {
printAllocationStorehouse:{
title: '调拨仓库打印',
applyId: '申请单号',
startUserName: '申请人',
createTime: '申请时间',
number: '编号',
resName: '调拨物品',
resType: '物品类型',
specName: '物品规格',
resCode: '物品编码',
isFixedName: '固定物品',
source: '来源',
targetStorehouse: '目标仓库',
originalStock: '原库存',
allocationQuantity: '调拨数量',
remark: '备注',
storeManagerSign: '仓库管理员签字',
allocationStaffSign: '调拨人员签字',
time: '时间',
fetchError: '获取调拨信息失败'
}
}
}