Blame view

src/views/resource/allocationStorehouseDetailedLang.js 2.87 KB
fc7cb950   wuxw   开发完成采购功能
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
  export const messages = {
    en: {
      allocationStorehouseDetailed: {
        queryCondition: 'Query Condition',
        allocationDetail: 'Allocation Detail',
        query: 'Query',
        reset: 'Reset',
        more: 'More',
        hide: 'Hide',
        export: 'Export',
        all: 'All',
        resIdPlaceholder: 'Please input resource ID',
        resNamePlaceholder: 'Please input resource name',
        resTypePlaceholder: 'Please select resource type',
        secondTypePlaceholder: 'Please select secondary type',
        specPlaceholder: 'Please select specification',
        applyIdPlaceholder: 'Please input allocation ID',
        sourceStorePlaceholder: 'Required, please select source storehouse',
        targetStorePlaceholder: 'Required, please select target storehouse',
        startTimePlaceholder: 'Please select start time',
        endTimePlaceholder: 'Please select end time',
        statePlaceholder: 'Please select allocation state',
        exportSuccess: 'Export success',
        exportError: 'Export failed',
        table: {
          applyId: 'Allocation ID',
          resId: 'Resource ID',
          resType: 'Resource Type',
          resName: 'Resource Name',
          specName: 'Specification',
          isFixedName: 'Fixed Resource',
          originalStock: 'Original Stock',
          stock: 'Allocation Quantity',
          shaName: 'Source Storehouse',
          shzName: 'Target Storehouse',
          startUserName: 'Applicant',
          remark: 'Allocation Remark',
          state: 'Status',
          createTime: 'Time'
        }
      }
    },
    zh: {
      allocationStorehouseDetailed: {
        queryCondition: '查询条件',
        allocationDetail: '调拨明细',
        query: '查询',
        reset: '重置',
        more: '更多',
        hide: '隐藏',
        export: '导出',
        all: '全部',
        resIdPlaceholder: '请输入物品ID',
        resNamePlaceholder: '请输入物品名称',
        resTypePlaceholder: '请选择物品类型',
        secondTypePlaceholder: '请选择二级分类',
        specPlaceholder: '请选择物品规格',
        applyIdPlaceholder: '请输入调拨申请ID',
        sourceStorePlaceholder: '必填,请选择源仓库',
        targetStorePlaceholder: '必填,请选择目标仓库',
        startTimePlaceholder: '请选择开始时间',
        endTimePlaceholder: '请选择结束时间',
        statePlaceholder: '请选择调拨状态',
        exportSuccess: '导出成功',
        exportError: '导出失败',
        table: {
          applyId: '调拨单号',
          resId: '物品ID',
          resType: '物品类型',
          resName: '物品名称',
          specName: '物品规格',
          isFixedName: '固定物品',
          originalStock: '被调仓库原库存',
          stock: '调拨数量',
          shaName: '被调仓库',
          shzName: '目标仓库',
          startUserName: '申请人',
          remark: '调拨备注',
          state: '状态',
          createTime: '时间'
        }
      }
    }
  }