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 | {
"id": 1,
"jsonrpc": "2.0",
"result": [
{
"id": 1,
"title": "planned",
"constant": "C__CMDB_STATUS__PLANNED",
"color": "EFAA43",
"editable": true
},
{
"id": 2,
"title": "ordered",
"constant": "C__CMDB_STATUS__ORDERED",
"color": "838683",
"editable": true
},
{
"id": 3,
"title": "delivered",
"constant": "C__CMDB_STATUS__DELIVERED",
"color": "DDECD5",
"editable": true
},
{
"id": 4,
"title": "assembled",
"constant": "C__CMDB_STATUS__ASSEMBLED",
"color": "C6DFB9",
"editable": true
},
{
"id": 5,
"title": "tested",
"constant": "C__CMDB_STATUS__TESTED",
"color": "95C47C",
"editable": true
},
{
"id": 6,
"title": "in operation",
"constant": "C__CMDB_STATUS__IN_OPERATION",
"color": "33C20A",
"editable": false
},
{
"id": 7,
"title": "defect",
"constant": "C__CMDB_STATUS__DEFECT",
"color": "BC0A19",
"editable": true
},
{
"id": 8,
"title": "under repair",
"constant": "C__CMDB_STATUS__UNDER_REPAIR",
"color": "F990BE",
"editable": true
},
{
"id": 9,
"title": "delivered from repair",
"constant": "C__CMDB_STATUS__DELIVERED_FROM_REPAIR",
"color": "F3EF15",
"editable": true
},
{
"id": 10,
"title": "inoperative",
"constant": "C__CMDB_STATUS__INOPERATIVE",
"color": "FF0000",
"editable": false
},
{
"id": 11,
"title": "stored",
"constant": "C__CMDB_STATUS__STORED",
"color": "A2BCFA",
"editable": true
},
{
"id": 12,
"title": "scrapped",
"constant": "C__CMDB_STATUS__SCRAPPED",
"color": "082B9A",
"editable": true
},
{
"id": 13,
"title": "i-doit Status",
"constant": "C__CMDB_STATUS__IDOIT_STATUS",
"color": "AAAAAA",
"editable": false
},
{
"id": 14,
"title": "Template",
"constant": "C__CMDB_STATUS__IDOIT_STATUS_TEMPLATE",
"color": "CCCCCC",
"editable": false
}
]
}
|