Blame view

src/views/resource/allocationStorehouseApplyLang.js 4.24 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
  export const messages = {
    en: {
      allocationStorehouseApply: {
        title: 'Allocation Application',
        back: 'Back',
        warehouse: 'Warehouse',
        warehousePlaceholder: 'Required, please select warehouse',
        remark: 'Application Description',
        remarkPlaceholder: 'Required, please fill in application description',
        itemsTitle: 'Allocation Items',
        selectItems: 'Select Items',
        itemType: 'Item Type',
        itemName: 'Item Name',
        itemSpec: 'Item Specification',
        fixedItem: 'Fixed Item',
        sourceWarehouse: 'Source Warehouse',
        referencePrice: 'Reference Price',
        selectPrice: 'Please select price',
        stock: 'Stock',
        targetWarehouse: 'Target Warehouse',
        selectTargetWarehouse: 'Required, please select target warehouse',
        transferQuantity: 'Allocation Quantity',
        operation: 'Operation',
        cancelTransfer: 'Cancel Allocation',
        approverTitle: 'Approver',
        approver: 'Approver',
        selectApprover: 'Required, please select approver',
        select: 'Select',
        submit: 'Submit',
        selectWarehouseFirst: 'Please select warehouse first',
        fillRemarkFirst: 'Please fill in application description first',
        remarkRequired: 'Application description is required',
        selectItemsFirst: 'Please select items first',
        sameWarehouseRequired: 'Allocation items must come from the same warehouse',
        selectPriceFirst: 'Please select price first',
        stockNotEnough: 'Insufficient stock',
        selectTargetWarehouseFirst: 'Please select target warehouse first',
        fillQuantityFirst: 'Please fill in allocation quantity first',
        submitSuccess: 'Allocation application submitted successfully'
      },
      chooseResourceStore: {
        title: 'Select Items for Allocation',
        selectWarehouse: 'Please select warehouse',
        selectItemType: 'Please select item type',
        selectSubType: 'Please select sub type',
        inputItemName: 'Enter item management name',
        warehouseName: 'Warehouse Name',
        itemType: 'Item Type',
        itemName: 'Item Name',
        itemSpec: 'Item Specification',
        itemCode: 'Item Code',
        isFixedItem: 'Is Fixed Item',
        itemStock: 'Item Stock',
        selectItemFirst: 'Please select items first'
      },
fc7cb950   wuxw   开发完成采购功能
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
    },
    zh: {
      allocationStorehouseApply: {
        title: '调拨申请',
        back: '返回',
        warehouse: '仓库',
        warehousePlaceholder: '必填,请选择仓库',
        remark: '申请说明',
        remarkPlaceholder: '必填,请填写申请说明',
        itemsTitle: '调拨物品',
        selectItems: '选择物品',
        itemType: '物品类型',
        itemName: '物品名称',
        itemSpec: '物品规格',
        fixedItem: '固定物品',
        sourceWarehouse: '源仓库',
        referencePrice: '参考价格',
        selectPrice: '请选择价格',
        stock: '库存',
        targetWarehouse: '目标仓库',
        selectTargetWarehouse: '必填,请选择目标仓库',
        transferQuantity: '调拨数量',
        operation: '操作',
        cancelTransfer: '取消调拨',
        approverTitle: '审批人',
        approver: '审批人',
        selectApprover: '必填,请选择审批人',
        select: '选择',
        submit: '提交',
        selectWarehouseFirst: '请先选择仓库',
        fillRemarkFirst: '请先填写申请说明',
        remarkRequired: '申请说明不能为空',
        selectItemsFirst: '请先选择物品',
        sameWarehouseRequired: '调拨商品需来自同一仓库',
        selectPriceFirst: '请先选择价格',
        stockNotEnough: '库存不足',
        selectTargetWarehouseFirst: '请先选择目标仓库',
        fillQuantityFirst: '请先填写调拨数量',
        submitSuccess: '调拨申请提交成功'
      },
      chooseResourceStore: {
        title: '【调拨申请】选择物品',
        selectWarehouse: '请选择仓库',
        selectItemType: '请选择物品类型',
        selectSubType: '请选择二级分类',
        inputItemName: '输入物品管理名称',
        warehouseName: '仓库名称',
        itemType: '物品类型',
        itemName: '物品名称',
        itemSpec: '物品规格',
        itemCode: '物品编码',
        isFixedItem: '是否是固定物品',
        itemStock: '物品库存',
        selectItemFirst: '请先选择物品'
      },
fc7cb950   wuxw   开发完成采购功能
111
112
    }
  }