-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
115 lines (90 loc) · 3.11 KB
/
config.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
configs = {
environment: 'DEV', // Global switch between DEV and PRD environments. Use
// this in conjunction with: if (config.environment === "XXX"){doStuffHere}
// Useful when you wanna separate external API keys from DEV and PRD, or
// to automatically search for Qlik app NAMES in DEV, and IDS in PRD
// (see QlikConnection.js)
devQvfNames: {
ConsumerSales: 'Consumer Sales.qvf',
InsuranceClaims: 'Insurance Claims 2021.qvf'
},
prdQvfNames: {
ConsumerSales: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
InsuranceClaims: 'yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy'
},
darkTheme: {
backgroundColor: '#121212'
},
Dashboard1: {
EURUSD_repeat_delay: 30, // Delay in seconds between each API call
EURUSD_upchange_color: '#007F0E',
EURUSD_downchange_color: '#AD0000',
},
KPIs: {
NUMBER_OF_DECIMALS: 1,
NUMBER_FORMAT: 'pt-BR'
},
FinanceiroKPIs: {
NUMBER_OF_DECIMALS: 0,
NUMBER_FORMAT: 'pt-BR'
},
Financeiro: {
secondsBetweenExchangeRates: 60,
hoursBetweenSelic: 1,
hoursBetweenIPCA: 1
},
qvfNames: {
Paineis: "Carteira de Painéis - (trabajo)(1).qvf",
Florestal: "Carteira Florestal - (trabajo)(1).qvf",
PatioMadeira: "Indicadores Pátio de Madeira.qvf",
CeluloseEQuimicos: "Carteira Celulose e Químicos - (trabajo).qvf",
EstoqueVsPedidos: 'Análise de Estoque vs Pedidos - Mercado Interno - (trabajo)(1).qvf',
NovaCOOIS: 'Nova COOIS (validação)(2).qvf',
ApontamentoProd: 'Apontamento de Produção - Florestal - (trabajo)(2).qvf',
ContasAPagar: 'Contas a Pagar(1).qvf',
ContasAReceber: 'Contas a Receber(1).qvf',
},
weather: {
secondsBetweenLocationSwitch: 15,
hoursBetweenDataFetches: 1
},
echartsProducao: {
legendFont: 'Roboto',
legendFontSize: '14',
legendFontColor: '#FFFFFF',
xAxisFont: 'Roboto',
xAxisFontSize: '14',
xAxisFontColor: '#FFFFFF',
seriesFont: 'Roboto',
seriesFontSize: '12',
seriesFontColor: '#FFFFFF',
monthYearFont: 'Roboto',
monthYearFontSize: '14',
monthYearFontColor: '#FFFFFF'
},
echartsComercial: {
legendFont: 'Roboto',
legendFontSize: '14',
legendFontColor: '#FFFFFF',
xAxisFont: 'Roboto',
xAxisFontSizeSmall: '11',
xAxisFontSize: '16',
xAxisFontColor: '#FFFFFF',
seriesFont: 'Roboto',
seriesFontSize: '16',
seriesFontColor: '#FFFFFF'
},
echartsSupplyChain: {
legendFont: 'Roboto',
legendFontSize: '14',
legendFontColor: '#FFFFFF',
xAxisFont: 'Roboto',
xAxisFontSize: '14',
xAxisFontSizeSmall: '12',
xAxisFontColor: '#FFFFFF',
seriesFont: 'Roboto',
seriesFontSize: '14',
seriesFontSizeSmall: '12',
seriesFontColor: '#FFFFFF'
},
}