-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest20.json
153 lines (153 loc) · 3.51 KB
/
manifest20.json
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
151
152
153
{
"_version": "1.15.0",
"sap.app": {
"id": "card.explorer.table.card",
"type": "card",
"title": "Sample of a Table Card",
"subTitle": "Sample of a Table Card",
"applicationVersion": {
"version": "1.0.0"
},
"shortTitle": "A short title for this Card",
"info": "Additional information about this Card",
"description": "A long description for this Card",
"tags": {
"keywords": [
"Table",
"Card",
"Sample"
]
}
},
"sap.ui": {
"technology": "UI5",
"icons": {
"icon": "sap-icon://table-view"
}
},
"sap.card": {
"type": "Table",
"data": {
"json": [{
"product": "DVD player",
"salesOrder": "5000010050",
"customerName": "Robert Brown Entertainment",
"netAmount": "2K USD",
"status": "Delivered",
"statusState": "Success",
"deliveryProgress": 100
},
{
"product": "Astro Laptop 1516",
"salesOrder": "5000010051",
"customerName": "Entertainment Argentina",
"netAmount": "127k USD",
"status": "Canceled",
"statusState": "Error",
"deliveryProgress": 0
},
{
"product": "Astro Phone 6",
"salesOrder": "5000010052",
"customerName": "Brazil Technologies",
"netAmount": "8K USD",
"status": "In Progress",
"statusState": "Warning",
"deliveryProgress": 33
},
{
"product": "Beam Breaker B-1",
"salesOrder": "5000010053",
"customerName": "Quimica Madrilenos",
"netAmount": "25K USD",
"status": "Delivered",
"statusState": "Success",
"deliveryProgress": 100
},
{
"product": "Beam Breaker B-2",
"salesOrder": "5000010054",
"customerName": "Development Para O Governo",
"netAmount": "7K USD",
"status": "Delivered",
"statusState": "Success",
"deliveryProgress": 100
},
{
"product": "Beam Breaker B-3",
"salesOrder": "5000010050",
"customerName": "Robert Brown Entertainment",
"netAmount": "2K USD",
"status": "Delivered",
"statusState": "Success",
"deliveryProgress": 100
},
{
"product": "Benda Laptop 1408",
"salesOrder": "5000010051",
"customerName": "Entertainment Argentina",
"netAmount": "127k USD",
"status": "Canceled",
"statusState": "Error",
"deliveryProgress": 0
},
{
"product": "Bending Screen 21HD",
"salesOrder": "5000010052",
"customerName": "Brazil Technologies",
"netAmount": "8K USD",
"status": "In Progress",
"statusState": "Warning",
"deliveryProgress": 27
},
{
"product": "Blaster Extreme",
"salesOrder": "5000010052",
"customerName": "Brazil Technologies",
"netAmount": "8K USD",
"status": "In Progress",
"statusState": "Warning",
"deliveryProgress": 51
}
]
},
"header": {
"title": "Sales Orders for Key Accounts",
"subTitle": "Today"
},
"content": {
"maxItems": 9,
"row": {
"columns": [{
"title": "Product",
"value": "{product}",
"additionalText": "{salesOrder}",
"identifier": true
},
{
"title": "Customer",
"value": "{customerName}"
},
{
"title": "Net Amount",
"value": "{netAmount}",
"hAlign": "End"
},
{
"title": "Status",
"value": "{status}",
"state": "{statusState}"
},
{
"title": "Delivery Progress",
"progressIndicator": {
"percent": "{deliveryProgress}",
"text": "{= format.percent(${deliveryProgress} / 100)}",
"state": "{statusState}"
}
}
]
}
}
}
}