invoiceApplyLang.js
4.4 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
export const messages = {
en: {
invoiceApply: {
searchTitle: 'Search Conditions',
title: 'Invoice Application',
apply: 'Apply',
table: {
id: 'ID',
invoiceType: 'Invoice Type',
ownerName: 'Owner Name',
applicant: 'Applicant',
invoiceName: 'Invoice Title',
taxNumber: 'Taxpayer ID',
addressPhone: 'Address & Phone',
amount: 'Amount',
invoiceCode: 'Invoice Code',
status: 'Status',
applyTime: 'Apply Time'
},
states: {
all: 'All',
pendingReview: 'Pending Review',
pendingUpload: 'Pending Upload',
reviewFailed: 'Review Failed',
pendingReceive: 'Pending Receive',
received: 'Received'
},
personal: 'Personal',
company: 'Company',
notUploaded: 'Not Uploaded',
openInvoice: 'Open Invoice',
uploadInvoice: 'Upload Invoice',
reUpload: 'Re-upload',
verify: 'Verify',
register: 'Register',
auditSuccess: 'Audit successful',
invoiceCodePlaceholder: 'Please enter invoice number',
invoiceTypePlaceholder: 'Please select invoice type',
ownerNamePlaceholder: 'Please enter owner name',
applicantPlaceholder: 'Please enter applicant',
phonePlaceholder: 'Please enter applicant phone'
},
deleteInvoiceApply: {
title: 'Confirm Operation',
confirmMessage: 'Confirm to delete this invoice application?'
},
uploadInvoicePhoto: {
title: 'Upload Invoice',
invoiceCode: 'Invoice Code',
invoice: 'Invoice',
codeRequired: 'Required, please enter invoice code',
photoRequired: 'Please select invoice photo'
},
wirteInvoiceEvent: {
title: 'Register/Verify',
type: 'Type',
remark: 'Remark',
typeRequired: 'Required, please select type',
remarkRequired: 'Required, please enter remark',
receive: 'Receive',
register: 'Register'
},
audit: {
title: 'Audit Information',
status: 'Audit Status',
reason: 'Reason',
statusRequired: 'Please select audit status',
reasonRequired: 'Required, please enter reason',
approve: 'Approve',
reject: 'Reject'
},
uploadImage: {
sizeLimit: 'Image size cannot exceed 2MB'
}
},
zh: {
invoiceApply: {
searchTitle: '查询条件',
title: '申请发票',
apply: '申请',
table: {
id: '编号',
invoiceType: '发票类型',
ownerName: '业主名称',
applicant: '申请人',
invoiceName: '发票名头',
taxNumber: '纳税人识别号',
addressPhone: '地址、电话',
amount: '申请金额',
invoiceCode: '发票号',
status: '审核状态',
applyTime: '申请时间'
},
states: {
all: '全部',
pendingReview: '待审核',
pendingUpload: '待上传',
reviewFailed: '审核失败',
pendingReceive: '带领用',
received: '已领用'
},
personal: '个人',
company: '企业',
notUploaded: '未上传',
openInvoice: '开票',
uploadInvoice: '上传发票',
reUpload: '重新上传',
verify: '核销',
register: '登记',
auditSuccess: '审核成功',
invoiceCodePlaceholder: '请填写发票号',
invoiceTypePlaceholder: '请选择发票类型',
ownerNamePlaceholder: '请填写业主名称',
applicantPlaceholder: '请填写申请人',
phonePlaceholder: '请填写申请人电话'
},
deleteInvoiceApply: {
title: '请确认您的操作',
confirmMessage: '确定删除申请发票'
},
uploadInvoicePhoto: {
title: '上传发票',
invoiceCode: '发票编号',
invoice: '发票',
codeRequired: '必填,请填写发票编号',
photoRequired: '请选择发票'
},
wirteInvoiceEvent: {
title: '登记核销',
type: '类型',
remark: '说明',
typeRequired: '必填,请选择类型',
remarkRequired: '必填,请填写说明',
receive: '领用',
register: '登记'
},
audit: {
title: '审核信息',
status: '审核状态',
reason: '原因',
statusRequired: '请审核',
reasonRequired: '必填,请填写原因',
approve: '同意',
reject: '拒绝'
},
uploadImage: {
sizeLimit: '图片大小不能超过 2MB'
}
}
}