This repository has been archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
financial.js
93 lines (82 loc) · 2.03 KB
/
financial.js
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
import * as sections from 'constants/sections'
import { i18n } from 'config'
export const FINANCIAL = {
key: sections.FINANCIAL,
name: 'financial',
path: 'financial',
store: 'Financial',
label: i18n.t('financial.section.name'),
}
export const FINANCIAL_INTRO = {
key: sections.FINANCIAL_INTRO,
name: 'intro',
path: 'intro',
label: i18n.t('financial.subsection.intro'),
}
export const FINANCIAL_BANKRUPTCY = {
key: sections.FINANCIAL_BANKRUPTCY,
name: 'bankruptcy',
path: 'bankruptcy',
storeKey: 'Bankruptcy',
label: i18n.t('financial.subsection.bankruptcy'),
}
export const FINANCIAL_GAMBLING = {
key: sections.FINANCIAL_GAMBLING,
name: 'gambling',
path: 'gambling',
storeKey: 'Gambling',
label: i18n.t('financial.subsection.gambling'),
}
export const FINANCIAL_TAXES = {
key: sections.FINANCIAL_TAXES,
name: 'taxes',
path: 'taxes',
storeKey: 'Taxes',
label: i18n.t('financial.subsection.taxes'),
}
export const FINANCIAL_CARD = {
key: sections.FINANCIAL_CARD,
name: 'card',
path: 'card',
storeKey: 'Card',
label: i18n.t('financial.subsection.card'),
}
export const FINANCIAL_CREDIT = {
key: sections.FINANCIAL_CREDIT,
name: 'credit',
path: 'credit',
storeKey: 'Credit',
label: i18n.t('financial.subsection.credit'),
}
export const FINANCIAL_DELINQUENT = {
key: sections.FINANCIAL_DELINQUENT,
name: 'delinquent',
path: 'delinquent',
storeKey: 'Delinquent',
label: i18n.t('financial.subsection.delinquent'),
}
export const FINANCIAL_NONPAYMENT = {
key: sections.FINANCIAL_NONPAYMENT,
name: 'nonpayment',
path: 'nonpayment',
storeKey: 'Nonpayment',
label: i18n.t('financial.subsection.nonpayment'),
}
export const FINANCIAL_REVIEW = {
key: sections.FINANCIAL_REVIEW,
name: 'review',
path: 'review',
label: i18n.t('financial.subsection.review'),
}
export default {
FINANCIAL,
FINANCIAL_INTRO,
FINANCIAL_BANKRUPTCY,
FINANCIAL_GAMBLING,
FINANCIAL_TAXES,
FINANCIAL_CARD,
FINANCIAL_CREDIT,
FINANCIAL_DELINQUENT,
FINANCIAL_NONPAYMENT,
FINANCIAL_REVIEW,
}