-
Notifications
You must be signed in to change notification settings - Fork 0
/
fuel_codes.js
53 lines (50 loc) · 1.18 KB
/
fuel_codes.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
/**
* Created by lucas on 10/11/16.
*/
var CODES = (function () {
return {
diesel: {
id: '1',
name : 'Diesel',
value: '532*Diesel',
desc : ' - Diesel R$/l',
web_id : '532'
},
diesels10: {
id: '2',
name : 'Diesel S10',
value: '812*Diesel@S10',
desc : ' - Diesel S10 R$/l',
web_id : '812'
},
etanol: {
id: '3',
name : 'Etanol',
value: '643*Etanol',
desc : ' - Etanol R$/l',
web_id : '643'
},
gasolina: {
id: '4',
name : 'Gasolina',
value: '487*Gasolina',
desc : ' - Gasolina R$/l',
web_id : '487'
},
// glp: {
// id: '5',
// name : 'GLP',
// value: '462*GLP',
// desc : ' - GLP R$/13kg',
// web_id : '462'
// },
gnv: {
id: '6',
name: 'GNV',
value: '476*GNV',
desc : ' - GNV R$/m3',
web_id : '476'
}
}
})();
module.exports = CODES;