@mozaic-ds/vue 2.16.0 → 2.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mozaic-vue.css +2 -1
- package/dist/mozaic-vue.d.ts +134 -91
- package/dist/mozaic-vue.js +17184 -10878
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +23 -22
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +10 -5
- package/src/components/BrandPresets.mdx +2 -2
- package/src/components/ComponentsMapping.mdx +98 -0
- package/src/components/accordionlist/MAccordionList.figma.ts +43 -0
- package/src/components/accordionlistitem/MAccordionListItem.figma.ts +27 -0
- package/src/components/actionbottombar/MActionBottomBar.figma.ts +24 -0
- package/src/components/actionlistbox/MActionListbox.figma.ts +30 -0
- package/src/components/avatar/MAvatar.figma.ts +31 -0
- package/src/components/breadcrumb/MBreadcrumb.figma.ts +31 -0
- package/src/components/builtinmenu/MBuiltInMenu.figma.ts +23 -0
- package/src/components/button/MButton.figma.ts +41 -0
- package/src/components/callout/MCallout.figma.ts +29 -0
- package/src/components/carousel/MCarousel.figma.ts +32 -0
- package/src/components/checkbox/MCheckbox.figma.ts +45 -0
- package/src/components/checkboxgroup/MCheckboxGroup.figma.ts +30 -0
- package/src/components/checklistmenu/MCheckListMenu.figma.ts +29 -0
- package/src/components/circularprogressbar/MCircularProgressbar.figma.ts +31 -0
- package/src/components/combobox/MCombobox.figma.ts +48 -0
- package/src/components/combobox/MCombobox.spec.ts +1 -1
- package/src/components/combobox/MCombobox.vue +18 -9
- package/src/components/combobox/README.md +2 -2
- package/src/components/container/MContainer.figma.ts +30 -0
- package/src/components/datatable/DataTable.stories.ts +277 -0
- package/src/components/datatable/DataTableCells.stories.ts +251 -0
- package/src/components/datatable/DataTableEmpty.stories.ts +102 -0
- package/src/components/datatable/DataTableExpandable.stories.ts +95 -0
- package/src/components/datatable/DataTableNested.stories.ts +96 -0
- package/src/components/datatable/DataTableSelectable.stories.ts +124 -0
- package/src/components/datatable/DataTableSortable.stories.ts +164 -0
- package/src/components/datatable/MDataTable.types.ts +54 -0
- package/src/components/datatable/assets/styles.scss +10 -0
- package/src/components/datatable/datatable.mdx +62 -0
- package/src/components/datatable/tools/data.js +8 -0
- package/src/components/datatable/tools/data.json +2018 -0
- package/src/components/datatable/utils.js +19 -0
- package/src/components/datepicker/MDatepicker.figma.ts +20 -0
- package/src/components/divider/MDivider.figma.ts +30 -0
- package/src/components/drawer/MDrawer.figma.ts +37 -0
- package/src/components/drawer/README.md +1 -1
- package/src/components/field/MField.figma.ts +30 -0
- package/src/components/fileuploader/MFileUploader.figma.ts +23 -0
- package/src/components/fileuploaderitem/MFileUploaderItem.figma.ts +27 -0
- package/src/components/flag/MFlag.figma.ts +26 -0
- package/src/components/iconbutton/MIconButton.figma.ts +54 -0
- package/src/components/kpiitem/MKpiItem.figma.ts +33 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.figma.ts +31 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.figma.ts +26 -0
- package/src/components/link/MLink.figma.ts +32 -0
- package/src/components/loader/MLoader.figma.ts +30 -0
- package/src/components/loadingoverlay/MLoadingOverlay.figma.ts +18 -0
- package/src/components/modal/MModal.figma.ts +27 -0
- package/src/components/navigationindicator/MNavigationIndicator.figma.ts +24 -0
- package/src/components/numberbadge/MNumberBadge.figma.ts +31 -0
- package/src/components/optionListbox/MOptionListbox.figma.ts +36 -0
- package/src/components/optionListbox/MOptionListbox.vue +18 -18
- package/src/components/optionListbox/README.md +1 -1
- package/src/components/overlay/MOverlay.figma.ts +20 -0
- package/src/components/pageheader/MPageHeader.figma.ts +21 -0
- package/src/components/pagination/MPagination.figma.ts +34 -0
- package/src/components/passwordinput/MPasswordInput.figma.ts +30 -0
- package/src/components/phonenumber/MPhoneNumber.figma.ts +47 -0
- package/src/components/pincode/MPincode.figma.ts +41 -0
- package/src/components/pincode/MPincode.spec.ts +1 -4
- package/src/components/pincode/MPincode.vue +11 -15
- package/src/components/popover/MPopover.figma.ts +42 -0
- package/src/components/quantityselector/MQuantitySelector.figma.ts +50 -0
- package/src/components/radio/MRadio.figma.ts +40 -0
- package/src/components/radiogroup/MRadioGroup.figma.ts +30 -0
- package/src/components/segmentedcontrol/MSegmentedControl.figma.ts +33 -0
- package/src/components/select/MSelect.figma.ts +49 -0
- package/src/components/sidebar/MSidebar.figma.ts +28 -0
- package/src/components/sidebarexpandableitem/MSidebarExpandableItem.figma.ts +19 -0
- package/src/components/sidebarfooter/MSidebarFooter.figma.ts +21 -0
- package/src/components/sidebarheader/MSidebarHeader.figma.ts +18 -0
- package/src/components/sidebarnavitem/MSidebarNavItem.figma.ts +23 -0
- package/src/components/sidebarshortcutitem/MSidebarShortcutItem.figma.ts +20 -0
- package/src/components/starrating/MStarRating.figma.ts +35 -0
- package/src/components/statusbadge/MStatusBadge.figma.ts +27 -0
- package/src/components/statusdot/MStatusDot.figma.ts +31 -0
- package/src/components/statusmessage/MStatusMessage.figma.ts +28 -0
- package/src/components/statusmessage/MStatusMessage.spec.ts +15 -0
- package/src/components/statusmessage/MStatusMessage.stories.ts +4 -0
- package/src/components/statusmessage/MStatusMessage.vue +7 -0
- package/src/components/statusmessage/README.md +2 -0
- package/src/components/statusnotification/MStatusNotification.figma.ts +29 -0
- package/src/components/stepperbottombar/MStepperBottomBar.figma.ts +20 -0
- package/src/components/steppercompact/MStepperCompact.figma.ts +21 -0
- package/src/components/stepperinline/MStepperInline.figma.ts +23 -0
- package/src/components/stepperstacked/MStepperStacked.figma.ts +23 -0
- package/src/components/tabs/MTabs.figma.ts +33 -0
- package/src/components/tag/MTag.figma.ts +26 -0
- package/src/components/tag/MTag.stories.ts +13 -3
- package/src/components/tag/MTag.vue +11 -1
- package/src/components/tag/README.md +6 -0
- package/src/components/textarea/MTextArea.figma.ts +28 -0
- package/src/components/textinput/MTextInput.figma.ts +51 -0
- package/src/components/tile/MTile.figma.ts +31 -0
- package/src/components/tileclickable/MTileClickable.figma.ts +31 -0
- package/src/components/tileexpandable/MTileExpandable.figma.ts +31 -0
- package/src/components/tileselectable/MTileSelectable.figma.ts +29 -0
- package/src/components/toaster/MToaster.figma.ts +25 -0
- package/src/components/toggle/MToggle.figma.ts +39 -0
- package/src/components/togglegroup/MToggleGroup.figma.ts +30 -0
- package/src/components/tooltip/MTooltip.figma.ts +29 -0
|
@@ -0,0 +1,2018 @@
|
|
|
1
|
+
{
|
|
2
|
+
"deals": [
|
|
3
|
+
{
|
|
4
|
+
"id": 0,
|
|
5
|
+
"name": "Deal test 0",
|
|
6
|
+
"startDate": "2015-12-20T11:45:02.483Z",
|
|
7
|
+
"endDate": "2019-11-07T16:40:48.227Z",
|
|
8
|
+
"status": { "code": "CLOSE" },
|
|
9
|
+
"stock": "Stock 0"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": 1,
|
|
13
|
+
"name": "Deal test 1",
|
|
14
|
+
"startDate": "2014-04-27T10:21:13.234Z",
|
|
15
|
+
"endDate": "2020-05-25T04:49:11.085Z",
|
|
16
|
+
"status": { "code": "CALCULATED" },
|
|
17
|
+
"stock": "Stock 1"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": 2,
|
|
21
|
+
"name": "Deal test 2",
|
|
22
|
+
"startDate": "2014-06-11T08:33:54.172Z",
|
|
23
|
+
"endDate": "2019-08-04T09:43:51.960Z",
|
|
24
|
+
"status": { "code": "CALCULATED" },
|
|
25
|
+
"stock": "Stock 2"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": 3,
|
|
29
|
+
"name": "Deal test 3",
|
|
30
|
+
"startDate": "2015-02-21T04:13:42.853Z",
|
|
31
|
+
"endDate": "2016-06-11T14:30:57.801Z",
|
|
32
|
+
"status": { "code": "ACTIVE" },
|
|
33
|
+
"stock": "Stock 3"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": 4,
|
|
37
|
+
"name": "Deal test 4",
|
|
38
|
+
"startDate": "2012-04-26T08:57:47.048Z",
|
|
39
|
+
"endDate": "2017-11-12T08:12:49.706Z",
|
|
40
|
+
"status": { "code": "CLOSE" },
|
|
41
|
+
"stock": "Stock 4"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": 5,
|
|
45
|
+
"name": "Deal test 5",
|
|
46
|
+
"startDate": "2015-07-12T13:39:02.717Z",
|
|
47
|
+
"endDate": "2021-09-02T07:09:41.391Z",
|
|
48
|
+
"status": { "code": "ACTIVE" },
|
|
49
|
+
"stock": "Stock 5"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": 6,
|
|
53
|
+
"name": "Deal test 6",
|
|
54
|
+
"startDate": "2012-03-12T23:27:07.676Z",
|
|
55
|
+
"endDate": "2020-03-20T09:44:57.021Z",
|
|
56
|
+
"status": { "code": "CLOSE" },
|
|
57
|
+
"stock": "Stock 6"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": 7,
|
|
61
|
+
"name": "Deal test 7",
|
|
62
|
+
"startDate": "2015-10-18T16:48:24.280Z",
|
|
63
|
+
"endDate": "2019-06-20T17:32:59.230Z",
|
|
64
|
+
"status": { "code": "ACTIVE" },
|
|
65
|
+
"stock": "Stock 7"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": 8,
|
|
69
|
+
"name": "Deal test 8",
|
|
70
|
+
"startDate": "2015-02-20T00:44:13.780Z",
|
|
71
|
+
"endDate": "2016-08-16T00:41:13.319Z",
|
|
72
|
+
"status": { "code": "CLOSE" },
|
|
73
|
+
"stock": "Stock 8"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": 9,
|
|
77
|
+
"name": "Deal test 9",
|
|
78
|
+
"startDate": "2014-06-18T10:36:24.168Z",
|
|
79
|
+
"endDate": "2016-07-09T08:48:22.059Z",
|
|
80
|
+
"status": { "code": "CALCULATED" },
|
|
81
|
+
"stock": "Stock 9"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": 10,
|
|
85
|
+
"name": "Deal test 10",
|
|
86
|
+
"startDate": "2014-02-18T06:29:17.889Z",
|
|
87
|
+
"endDate": "2019-07-08T19:32:52.966Z",
|
|
88
|
+
"status": { "code": "CALCULATED" },
|
|
89
|
+
"stock": "Stock 10"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": 11,
|
|
93
|
+
"name": "Deal test 11",
|
|
94
|
+
"startDate": "2012-03-03T08:58:41.196Z",
|
|
95
|
+
"endDate": "2019-12-30T20:03:00.502Z",
|
|
96
|
+
"status": { "code": "CALCULATED" },
|
|
97
|
+
"stock": "Stock 11"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": 12,
|
|
101
|
+
"name": "Deal test 12",
|
|
102
|
+
"startDate": "2013-04-25T01:48:43.969Z",
|
|
103
|
+
"endDate": "2016-04-10T23:13:02.075Z",
|
|
104
|
+
"status": { "code": "CLOSE" },
|
|
105
|
+
"stock": "Stock 12"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": 13,
|
|
109
|
+
"name": "Deal test 13",
|
|
110
|
+
"startDate": "2013-01-09T02:51:44.531Z",
|
|
111
|
+
"endDate": "2018-03-11T01:56:57.815Z",
|
|
112
|
+
"status": { "code": "CLOSE" },
|
|
113
|
+
"stock": "Stock 13"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": 14,
|
|
117
|
+
"name": "Deal test 14",
|
|
118
|
+
"startDate": "2014-02-02T07:41:36.470Z",
|
|
119
|
+
"endDate": "2018-04-06T07:23:15.489Z",
|
|
120
|
+
"status": { "code": "ACTIVE" },
|
|
121
|
+
"stock": "Stock 14"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"id": 15,
|
|
125
|
+
"name": "Deal test 15",
|
|
126
|
+
"startDate": "2014-12-10T07:17:17.738Z",
|
|
127
|
+
"endDate": "2018-03-05T19:26:43.268Z",
|
|
128
|
+
"status": { "code": "CALCULATED" },
|
|
129
|
+
"stock": "Stock 15"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": 16,
|
|
133
|
+
"name": "Deal test 16",
|
|
134
|
+
"startDate": "2013-06-03T23:03:52.975Z",
|
|
135
|
+
"endDate": "2017-03-01T09:15:37.366Z",
|
|
136
|
+
"status": { "code": "ACTIVE" },
|
|
137
|
+
"stock": "Stock 16"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": 17,
|
|
141
|
+
"name": "Deal test 17",
|
|
142
|
+
"startDate": "2013-02-12T22:26:14.311Z",
|
|
143
|
+
"endDate": "2021-04-10T22:43:08.600Z",
|
|
144
|
+
"status": { "code": "ACTIVE" },
|
|
145
|
+
"stock": "Stock 17"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": 18,
|
|
149
|
+
"name": "Deal test 18",
|
|
150
|
+
"startDate": "2015-09-23T04:28:47.260Z",
|
|
151
|
+
"endDate": "2021-01-31T21:04:10.889Z",
|
|
152
|
+
"status": { "code": "CALCULATED" },
|
|
153
|
+
"stock": "Stock 18"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": 19,
|
|
157
|
+
"name": "Deal test 19",
|
|
158
|
+
"startDate": "2014-10-18T23:30:02.214Z",
|
|
159
|
+
"endDate": "2021-01-06T02:07:08.172Z",
|
|
160
|
+
"status": { "code": "CALCULATED" },
|
|
161
|
+
"stock": "Stock 19"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": 20,
|
|
165
|
+
"name": "Deal test 20",
|
|
166
|
+
"startDate": "2012-08-28T15:34:37.622Z",
|
|
167
|
+
"endDate": "2018-05-17T16:46:31.467Z",
|
|
168
|
+
"status": { "code": "ACTIVE" },
|
|
169
|
+
"stock": "Stock 20"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": 21,
|
|
173
|
+
"name": "Deal test 21",
|
|
174
|
+
"startDate": "2012-11-25T20:22:41.073Z",
|
|
175
|
+
"endDate": "2018-03-22T13:14:00.642Z",
|
|
176
|
+
"status": { "code": "CLOSE" },
|
|
177
|
+
"stock": "Stock 21"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"id": 22,
|
|
181
|
+
"name": "Deal test 22",
|
|
182
|
+
"startDate": "2015-08-09T05:21:46.755Z",
|
|
183
|
+
"endDate": "2021-07-21T12:24:52.606Z",
|
|
184
|
+
"status": { "code": "CLOSE" },
|
|
185
|
+
"stock": "Stock 22"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": 23,
|
|
189
|
+
"name": "Deal test 23",
|
|
190
|
+
"startDate": "2013-12-26T14:04:41.046Z",
|
|
191
|
+
"endDate": "2021-02-17T23:19:52.890Z",
|
|
192
|
+
"status": { "code": "ACTIVE" },
|
|
193
|
+
"stock": "Stock 23"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": 24,
|
|
197
|
+
"name": "Deal test 24",
|
|
198
|
+
"startDate": "2015-09-20T06:12:18.032Z",
|
|
199
|
+
"endDate": "2020-11-04T12:42:19.503Z",
|
|
200
|
+
"status": { "code": "ACTIVE" },
|
|
201
|
+
"stock": "Stock 24"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": 25,
|
|
205
|
+
"name": "Deal test 25",
|
|
206
|
+
"startDate": "2016-01-15T12:35:07.260Z",
|
|
207
|
+
"endDate": "2018-09-02T19:57:39.219Z",
|
|
208
|
+
"status": { "code": "CALCULATED" },
|
|
209
|
+
"stock": "Stock 25"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": 26,
|
|
213
|
+
"name": "Deal test 26",
|
|
214
|
+
"startDate": "2013-05-17T21:03:23.245Z",
|
|
215
|
+
"endDate": "2017-03-05T16:47:42.924Z",
|
|
216
|
+
"status": { "code": "CLOSE" },
|
|
217
|
+
"stock": "Stock 26"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": 27,
|
|
221
|
+
"name": "Deal test 27",
|
|
222
|
+
"startDate": "2015-09-12T16:39:51.129Z",
|
|
223
|
+
"endDate": "2019-09-25T21:14:11.599Z",
|
|
224
|
+
"status": { "code": "CALCULATED" },
|
|
225
|
+
"stock": "Stock 27"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": 28,
|
|
229
|
+
"name": "Deal test 28",
|
|
230
|
+
"startDate": "2012-07-29T00:55:24.677Z",
|
|
231
|
+
"endDate": "2016-09-24T23:55:49.332Z",
|
|
232
|
+
"status": { "code": "ACTIVE" },
|
|
233
|
+
"stock": "Stock 28"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": 29,
|
|
237
|
+
"name": "Deal test 29",
|
|
238
|
+
"startDate": "2013-12-01T07:31:21.418Z",
|
|
239
|
+
"endDate": "2021-04-15T17:39:24.469Z",
|
|
240
|
+
"status": { "code": "ACTIVE" },
|
|
241
|
+
"stock": "Stock 29"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"id": 30,
|
|
245
|
+
"name": "Deal test 30",
|
|
246
|
+
"startDate": "2015-05-30T14:19:18.697Z",
|
|
247
|
+
"endDate": "2018-03-04T22:41:37.252Z",
|
|
248
|
+
"status": { "code": "CALCULATED" },
|
|
249
|
+
"stock": "Stock 30"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": 31,
|
|
253
|
+
"name": "Deal test 31",
|
|
254
|
+
"startDate": "2013-09-22T14:09:57.302Z",
|
|
255
|
+
"endDate": "2017-08-21T11:26:58.414Z",
|
|
256
|
+
"status": { "code": "CALCULATED" },
|
|
257
|
+
"stock": "Stock 31"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"id": 32,
|
|
261
|
+
"name": "Deal test 32",
|
|
262
|
+
"startDate": "2012-11-14T22:46:24.449Z",
|
|
263
|
+
"endDate": "2018-12-13T08:54:42.420Z",
|
|
264
|
+
"status": { "code": "CALCULATED" },
|
|
265
|
+
"stock": "Stock 32"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": 33,
|
|
269
|
+
"name": "Deal test 33",
|
|
270
|
+
"startDate": "2013-04-01T18:19:44.959Z",
|
|
271
|
+
"endDate": "2018-03-25T23:32:03.811Z",
|
|
272
|
+
"status": { "code": "ACTIVE" },
|
|
273
|
+
"stock": "Stock 33"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"id": 34,
|
|
277
|
+
"name": "Deal test 34",
|
|
278
|
+
"startDate": "2013-11-15T17:40:37.642Z",
|
|
279
|
+
"endDate": "2020-03-03T19:41:40.292Z",
|
|
280
|
+
"status": { "code": "CLOSE" },
|
|
281
|
+
"stock": "Stock 34"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": 35,
|
|
285
|
+
"name": "Deal test 35",
|
|
286
|
+
"startDate": "2014-07-26T18:16:14.066Z",
|
|
287
|
+
"endDate": "2019-08-01T08:35:13.461Z",
|
|
288
|
+
"status": { "code": "CLOSE" },
|
|
289
|
+
"stock": "Stock 35"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": 36,
|
|
293
|
+
"name": "Deal test 36",
|
|
294
|
+
"startDate": "2013-07-10T04:00:39.441Z",
|
|
295
|
+
"endDate": "2018-11-10T20:04:59.092Z",
|
|
296
|
+
"status": { "code": "ACTIVE" },
|
|
297
|
+
"stock": "Stock 36"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": 37,
|
|
301
|
+
"name": "Deal test 37",
|
|
302
|
+
"startDate": "2015-03-22T10:55:45.137Z",
|
|
303
|
+
"endDate": "2020-05-12T21:50:48.038Z",
|
|
304
|
+
"status": { "code": "ACTIVE" },
|
|
305
|
+
"stock": "Stock 37"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": 38,
|
|
309
|
+
"name": "Deal test 38",
|
|
310
|
+
"startDate": "2013-01-17T01:01:07.386Z",
|
|
311
|
+
"endDate": "2018-06-18T09:43:14.015Z",
|
|
312
|
+
"status": { "code": "CALCULATED" },
|
|
313
|
+
"stock": "Stock 38"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": 39,
|
|
317
|
+
"name": "Deal test 39",
|
|
318
|
+
"startDate": "2013-10-29T00:58:00.976Z",
|
|
319
|
+
"endDate": "2021-04-24T09:11:14.336Z",
|
|
320
|
+
"status": { "code": "ACTIVE" },
|
|
321
|
+
"stock": "Stock 39"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": 40,
|
|
325
|
+
"name": "Deal test 40",
|
|
326
|
+
"startDate": "2015-07-06T12:36:50.168Z",
|
|
327
|
+
"endDate": "2018-07-14T23:12:57.808Z",
|
|
328
|
+
"status": { "code": "CLOSE" },
|
|
329
|
+
"stock": "Stock 40"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": 41,
|
|
333
|
+
"name": "Deal test 41",
|
|
334
|
+
"startDate": "2015-03-16T07:15:36.236Z",
|
|
335
|
+
"endDate": "2017-12-21T19:09:24.073Z",
|
|
336
|
+
"status": { "code": "CALCULATED" },
|
|
337
|
+
"stock": "Stock 41"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": 42,
|
|
341
|
+
"name": "Deal test 42",
|
|
342
|
+
"startDate": "2012-05-20T20:37:59.122Z",
|
|
343
|
+
"endDate": "2017-03-02T06:01:39.701Z",
|
|
344
|
+
"status": { "code": "ACTIVE" },
|
|
345
|
+
"stock": "Stock 42"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": 43,
|
|
349
|
+
"name": "Deal test 43",
|
|
350
|
+
"startDate": "2012-09-16T10:48:34.189Z",
|
|
351
|
+
"endDate": "2017-04-20T09:22:54.461Z",
|
|
352
|
+
"status": { "code": "ACTIVE" },
|
|
353
|
+
"stock": "Stock 43"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": 44,
|
|
357
|
+
"name": "Deal test 44",
|
|
358
|
+
"startDate": "2013-01-01T22:15:39.136Z",
|
|
359
|
+
"endDate": "2020-07-21T21:00:38.640Z",
|
|
360
|
+
"status": { "code": "CLOSE" },
|
|
361
|
+
"stock": "Stock 44"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": 45,
|
|
365
|
+
"name": "Deal test 45",
|
|
366
|
+
"startDate": "2014-08-31T13:07:32.805Z",
|
|
367
|
+
"endDate": "2017-02-26T07:50:40.258Z",
|
|
368
|
+
"status": { "code": "ACTIVE" },
|
|
369
|
+
"stock": "Stock 45"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": 46,
|
|
373
|
+
"name": "Deal test 46",
|
|
374
|
+
"startDate": "2012-11-13T15:35:49.593Z",
|
|
375
|
+
"endDate": "2020-12-16T20:20:16.916Z",
|
|
376
|
+
"status": { "code": "ACTIVE" },
|
|
377
|
+
"stock": "Stock 46"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": 47,
|
|
381
|
+
"name": "Deal test 47",
|
|
382
|
+
"startDate": "2014-05-10T16:18:01.384Z",
|
|
383
|
+
"endDate": "2017-01-06T10:01:08.979Z",
|
|
384
|
+
"status": { "code": "CLOSE" },
|
|
385
|
+
"stock": "Stock 47"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": 48,
|
|
389
|
+
"name": "Deal test 48",
|
|
390
|
+
"startDate": "2014-11-08T00:00:20.101Z",
|
|
391
|
+
"endDate": "2020-04-14T20:32:39.303Z",
|
|
392
|
+
"status": { "code": "CLOSE" },
|
|
393
|
+
"stock": "Stock 48"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"id": 49,
|
|
397
|
+
"name": "Deal test 49",
|
|
398
|
+
"startDate": "2015-09-15T18:19:29.953Z",
|
|
399
|
+
"endDate": "2018-09-17T10:13:46.472Z",
|
|
400
|
+
"status": { "code": "CLOSE" },
|
|
401
|
+
"stock": "Stock 49"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"id": 50,
|
|
405
|
+
"name": "Deal test 50",
|
|
406
|
+
"startDate": "2013-02-01T08:41:15.793Z",
|
|
407
|
+
"endDate": "2016-08-18T08:17:20.516Z",
|
|
408
|
+
"status": { "code": "CALCULATED" },
|
|
409
|
+
"stock": "Stock 50"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"id": 51,
|
|
413
|
+
"name": "Deal test 51",
|
|
414
|
+
"startDate": "2014-06-13T20:12:12.313Z",
|
|
415
|
+
"endDate": "2021-03-05T09:46:35.228Z",
|
|
416
|
+
"status": { "code": "ACTIVE" },
|
|
417
|
+
"stock": "Stock 51"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"id": 52,
|
|
421
|
+
"name": "Deal test 52",
|
|
422
|
+
"startDate": "2012-10-31T23:24:42.128Z",
|
|
423
|
+
"endDate": "2017-07-22T22:21:09.279Z",
|
|
424
|
+
"status": { "code": "CLOSE" },
|
|
425
|
+
"stock": "Stock 52"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"id": 53,
|
|
429
|
+
"name": "Deal test 53",
|
|
430
|
+
"startDate": "2016-01-28T13:05:09.837Z",
|
|
431
|
+
"endDate": "2019-11-05T01:18:36.772Z",
|
|
432
|
+
"status": { "code": "CLOSE" },
|
|
433
|
+
"stock": "Stock 53"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"id": 54,
|
|
437
|
+
"name": "Deal test 54",
|
|
438
|
+
"startDate": "2012-02-08T13:14:37.680Z",
|
|
439
|
+
"endDate": "2019-09-30T07:21:28.866Z",
|
|
440
|
+
"status": { "code": "CLOSE" },
|
|
441
|
+
"stock": "Stock 54"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": 55,
|
|
445
|
+
"name": "Deal test 55",
|
|
446
|
+
"startDate": "2015-08-08T20:04:23.812Z",
|
|
447
|
+
"endDate": "2016-07-23T07:14:37.019Z",
|
|
448
|
+
"status": { "code": "ACTIVE" },
|
|
449
|
+
"stock": "Stock 55"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"id": 56,
|
|
453
|
+
"name": "Deal test 56",
|
|
454
|
+
"startDate": "2016-01-22T22:05:19.167Z",
|
|
455
|
+
"endDate": "2021-10-10T02:25:11.112Z",
|
|
456
|
+
"status": { "code": "ACTIVE" },
|
|
457
|
+
"stock": "Stock 56"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": 57,
|
|
461
|
+
"name": "Deal test 57",
|
|
462
|
+
"startDate": "2014-03-16T10:14:57.896Z",
|
|
463
|
+
"endDate": "2021-06-27T18:04:15.371Z",
|
|
464
|
+
"status": { "code": "CALCULATED" },
|
|
465
|
+
"stock": "Stock 57"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"id": 58,
|
|
469
|
+
"name": "Deal test 58",
|
|
470
|
+
"startDate": "2014-11-01T00:40:21.053Z",
|
|
471
|
+
"endDate": "2016-03-20T09:34:15.030Z",
|
|
472
|
+
"status": { "code": "ACTIVE" },
|
|
473
|
+
"stock": "Stock 58"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"id": 59,
|
|
477
|
+
"name": "Deal test 59",
|
|
478
|
+
"startDate": "2014-03-22T15:41:25.061Z",
|
|
479
|
+
"endDate": "2018-06-23T16:25:39.611Z",
|
|
480
|
+
"status": { "code": "CALCULATED" },
|
|
481
|
+
"stock": "Stock 59"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"id": 60,
|
|
485
|
+
"name": "Deal test 60",
|
|
486
|
+
"startDate": "2012-09-09T05:46:11.394Z",
|
|
487
|
+
"endDate": "2018-06-06T17:50:34.239Z",
|
|
488
|
+
"status": { "code": "ACTIVE" },
|
|
489
|
+
"stock": "Stock 60"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"id": 61,
|
|
493
|
+
"name": "Deal test 61",
|
|
494
|
+
"startDate": "2012-06-30T21:35:09.907Z",
|
|
495
|
+
"endDate": "2021-03-28T06:44:11.198Z",
|
|
496
|
+
"status": { "code": "ACTIVE" },
|
|
497
|
+
"stock": "Stock 61"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"id": 62,
|
|
501
|
+
"name": "Deal test 62",
|
|
502
|
+
"startDate": "2012-03-21T19:39:57.241Z",
|
|
503
|
+
"endDate": "2018-08-27T12:27:49.755Z",
|
|
504
|
+
"status": { "code": "CALCULATED" },
|
|
505
|
+
"stock": "Stock 62"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"id": 63,
|
|
509
|
+
"name": "Deal test 63",
|
|
510
|
+
"startDate": "2013-03-06T19:26:41.994Z",
|
|
511
|
+
"endDate": "2020-05-29T22:38:18.361Z",
|
|
512
|
+
"status": { "code": "ACTIVE" },
|
|
513
|
+
"stock": "Stock 63"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"id": 64,
|
|
517
|
+
"name": "Deal test 64",
|
|
518
|
+
"startDate": "2015-12-27T02:50:47.185Z",
|
|
519
|
+
"endDate": "2016-04-27T05:55:03.068Z",
|
|
520
|
+
"status": { "code": "ACTIVE" },
|
|
521
|
+
"stock": "Stock 64"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"id": 65,
|
|
525
|
+
"name": "Deal test 65",
|
|
526
|
+
"startDate": "2013-04-01T11:07:33.842Z",
|
|
527
|
+
"endDate": "2020-10-19T20:04:41.453Z",
|
|
528
|
+
"status": { "code": "CLOSE" },
|
|
529
|
+
"stock": "Stock 65"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"id": 66,
|
|
533
|
+
"name": "Deal test 66",
|
|
534
|
+
"startDate": "2014-01-30T00:16:27.914Z",
|
|
535
|
+
"endDate": "2017-05-28T11:54:17.970Z",
|
|
536
|
+
"status": { "code": "CALCULATED" },
|
|
537
|
+
"stock": "Stock 66"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"id": 67,
|
|
541
|
+
"name": "Deal test 67",
|
|
542
|
+
"startDate": "2012-12-03T02:10:15.910Z",
|
|
543
|
+
"endDate": "2021-03-20T10:02:41.822Z",
|
|
544
|
+
"status": { "code": "ACTIVE" },
|
|
545
|
+
"stock": "Stock 67"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"id": 68,
|
|
549
|
+
"name": "Deal test 68",
|
|
550
|
+
"startDate": "2015-11-11T04:16:41.048Z",
|
|
551
|
+
"endDate": "2018-01-11T01:45:25.761Z",
|
|
552
|
+
"status": { "code": "CALCULATED" },
|
|
553
|
+
"stock": "Stock 68"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"id": 69,
|
|
557
|
+
"name": "Deal test 69",
|
|
558
|
+
"startDate": "2012-11-26T05:59:46.793Z",
|
|
559
|
+
"endDate": "2018-11-05T09:47:49.645Z",
|
|
560
|
+
"status": { "code": "CLOSE" },
|
|
561
|
+
"stock": "Stock 69"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"id": 70,
|
|
565
|
+
"name": "Deal test 70",
|
|
566
|
+
"startDate": "2015-01-12T07:36:45.308Z",
|
|
567
|
+
"endDate": "2019-09-06T13:52:25.037Z",
|
|
568
|
+
"status": { "code": "CALCULATED" },
|
|
569
|
+
"stock": "Stock 70"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"id": 71,
|
|
573
|
+
"name": "Deal test 71",
|
|
574
|
+
"startDate": "2013-01-03T13:11:43.669Z",
|
|
575
|
+
"endDate": "2016-11-11T03:28:35.377Z",
|
|
576
|
+
"status": { "code": "CALCULATED" },
|
|
577
|
+
"stock": "Stock 71"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"id": 72,
|
|
581
|
+
"name": "Deal test 72",
|
|
582
|
+
"startDate": "2015-07-23T20:42:58.987Z",
|
|
583
|
+
"endDate": "2020-11-28T06:01:33.382Z",
|
|
584
|
+
"status": { "code": "ACTIVE" },
|
|
585
|
+
"stock": "Stock 72"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"id": 73,
|
|
589
|
+
"name": "Deal test 73",
|
|
590
|
+
"startDate": "2014-03-05T02:23:41.844Z",
|
|
591
|
+
"endDate": "2016-12-03T06:17:07.986Z",
|
|
592
|
+
"status": { "code": "CLOSE" },
|
|
593
|
+
"stock": "Stock 73"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"id": 74,
|
|
597
|
+
"name": "Deal test 74",
|
|
598
|
+
"startDate": "2015-07-15T03:30:05.454Z",
|
|
599
|
+
"endDate": "2021-05-09T09:49:10.339Z",
|
|
600
|
+
"status": { "code": "ACTIVE" },
|
|
601
|
+
"stock": "Stock 74"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"id": 75,
|
|
605
|
+
"name": "Deal test 75",
|
|
606
|
+
"startDate": "2015-02-15T12:47:32.334Z",
|
|
607
|
+
"endDate": "2018-08-30T05:17:31.658Z",
|
|
608
|
+
"status": { "code": "CALCULATED" },
|
|
609
|
+
"stock": "Stock 75"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"id": 76,
|
|
613
|
+
"name": "Deal test 76",
|
|
614
|
+
"startDate": "2015-05-19T15:49:41.525Z",
|
|
615
|
+
"endDate": "2016-11-16T08:57:39.276Z",
|
|
616
|
+
"status": { "code": "ACTIVE" },
|
|
617
|
+
"stock": "Stock 76"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"id": 77,
|
|
621
|
+
"name": "Deal test 77",
|
|
622
|
+
"startDate": "2015-11-01T06:07:11.743Z",
|
|
623
|
+
"endDate": "2016-10-15T03:18:55.710Z",
|
|
624
|
+
"status": { "code": "ACTIVE" },
|
|
625
|
+
"stock": "Stock 77"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"id": 78,
|
|
629
|
+
"name": "Deal test 78",
|
|
630
|
+
"startDate": "2015-04-16T22:43:01.093Z",
|
|
631
|
+
"endDate": "2021-02-17T02:17:42.470Z",
|
|
632
|
+
"status": { "code": "CLOSE" },
|
|
633
|
+
"stock": "Stock 78"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"id": 79,
|
|
637
|
+
"name": "Deal test 79",
|
|
638
|
+
"startDate": "2014-01-19T07:12:07.291Z",
|
|
639
|
+
"endDate": "2020-01-04T17:53:57.782Z",
|
|
640
|
+
"status": { "code": "ACTIVE" },
|
|
641
|
+
"stock": "Stock 79"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"id": 80,
|
|
645
|
+
"name": "Deal test 80",
|
|
646
|
+
"startDate": "2014-12-31T21:57:47.617Z",
|
|
647
|
+
"endDate": "2018-07-19T08:14:22.618Z",
|
|
648
|
+
"status": { "code": "ACTIVE" },
|
|
649
|
+
"stock": "Stock 80"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"id": 81,
|
|
653
|
+
"name": "Deal test 81",
|
|
654
|
+
"startDate": "2012-12-30T16:06:37.143Z",
|
|
655
|
+
"endDate": "2020-10-22T00:50:44.774Z",
|
|
656
|
+
"status": { "code": "CALCULATED" },
|
|
657
|
+
"stock": "Stock 81"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"id": 82,
|
|
661
|
+
"name": "Deal test 82",
|
|
662
|
+
"startDate": "2013-03-04T11:06:19.031Z",
|
|
663
|
+
"endDate": "2021-01-23T04:00:08.395Z",
|
|
664
|
+
"status": { "code": "ACTIVE" },
|
|
665
|
+
"stock": "Stock 82"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"id": 83,
|
|
669
|
+
"name": "Deal test 83",
|
|
670
|
+
"startDate": "2012-08-24T03:05:13.586Z",
|
|
671
|
+
"endDate": "2017-03-10T09:35:33.232Z",
|
|
672
|
+
"status": { "code": "CLOSE" },
|
|
673
|
+
"stock": "Stock 83"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"id": 84,
|
|
677
|
+
"name": "Deal test 84",
|
|
678
|
+
"startDate": "2014-01-01T03:25:05.502Z",
|
|
679
|
+
"endDate": "2019-01-03T06:26:01.320Z",
|
|
680
|
+
"status": { "code": "CLOSE" },
|
|
681
|
+
"stock": "Stock 84"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"id": 85,
|
|
685
|
+
"name": "Deal test 85",
|
|
686
|
+
"startDate": "2014-01-16T19:34:14.521Z",
|
|
687
|
+
"endDate": "2019-09-05T19:58:07.722Z",
|
|
688
|
+
"status": { "code": "CALCULATED" },
|
|
689
|
+
"stock": "Stock 85"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"id": 86,
|
|
693
|
+
"name": "Deal test 86",
|
|
694
|
+
"startDate": "2014-08-11T23:59:04.456Z",
|
|
695
|
+
"endDate": "2020-10-18T23:35:02.519Z",
|
|
696
|
+
"status": { "code": "CALCULATED" },
|
|
697
|
+
"stock": "Stock 86"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"id": 87,
|
|
701
|
+
"name": "Deal test 87",
|
|
702
|
+
"startDate": "2014-01-27T20:04:13.667Z",
|
|
703
|
+
"endDate": "2020-07-01T07:55:47.379Z",
|
|
704
|
+
"status": { "code": "CALCULATED" },
|
|
705
|
+
"stock": "Stock 87"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"id": 88,
|
|
709
|
+
"name": "Deal test 88",
|
|
710
|
+
"startDate": "2014-10-30T11:33:50.739Z",
|
|
711
|
+
"endDate": "2016-05-09T22:14:10.371Z",
|
|
712
|
+
"status": { "code": "CALCULATED" },
|
|
713
|
+
"stock": "Stock 88"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"id": 89,
|
|
717
|
+
"name": "Deal test 89",
|
|
718
|
+
"startDate": "2013-05-14T02:07:08.782Z",
|
|
719
|
+
"endDate": "2021-03-19T05:05:17.117Z",
|
|
720
|
+
"status": { "code": "CLOSE" },
|
|
721
|
+
"stock": "Stock 89"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"id": 90,
|
|
725
|
+
"name": "Deal test 90",
|
|
726
|
+
"startDate": "2013-07-11T16:14:03.391Z",
|
|
727
|
+
"endDate": "2016-02-10T14:57:24.350Z",
|
|
728
|
+
"status": { "code": "CLOSE" },
|
|
729
|
+
"stock": "Stock 90"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"id": 91,
|
|
733
|
+
"name": "Deal test 91",
|
|
734
|
+
"startDate": "2013-03-15T17:11:25.903Z",
|
|
735
|
+
"endDate": "2021-03-03T14:14:40.297Z",
|
|
736
|
+
"status": { "code": "CLOSE" },
|
|
737
|
+
"stock": "Stock 91"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"id": 92,
|
|
741
|
+
"name": "Deal test 92",
|
|
742
|
+
"startDate": "2012-12-03T20:08:56.463Z",
|
|
743
|
+
"endDate": "2018-11-02T20:06:34.351Z",
|
|
744
|
+
"status": { "code": "CALCULATED" },
|
|
745
|
+
"stock": "Stock 92"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"id": 93,
|
|
749
|
+
"name": "Deal test 93",
|
|
750
|
+
"startDate": "2012-02-06T11:37:24.074Z",
|
|
751
|
+
"endDate": "2018-05-22T11:49:50.105Z",
|
|
752
|
+
"status": { "code": "CLOSE" },
|
|
753
|
+
"stock": "Stock 93"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"id": 94,
|
|
757
|
+
"name": "Deal test 94",
|
|
758
|
+
"startDate": "2014-01-01T23:34:34.860Z",
|
|
759
|
+
"endDate": "2020-01-14T08:43:27.825Z",
|
|
760
|
+
"status": { "code": "ACTIVE" },
|
|
761
|
+
"stock": "Stock 94"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"id": 95,
|
|
765
|
+
"name": "Deal test 95",
|
|
766
|
+
"startDate": "2014-12-02T21:45:30.928Z",
|
|
767
|
+
"endDate": "2019-02-01T02:10:04.657Z",
|
|
768
|
+
"status": { "code": "CLOSE" },
|
|
769
|
+
"stock": "Stock 95"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"id": 96,
|
|
773
|
+
"name": "Deal test 96",
|
|
774
|
+
"startDate": "2012-03-13T21:53:07.818Z",
|
|
775
|
+
"endDate": "2016-02-02T07:44:44.750Z",
|
|
776
|
+
"status": { "code": "CLOSE" },
|
|
777
|
+
"stock": "Stock 96"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"id": 97,
|
|
781
|
+
"name": "Deal test 97",
|
|
782
|
+
"startDate": "2014-01-17T07:50:38.862Z",
|
|
783
|
+
"endDate": "2017-07-04T13:25:21.031Z",
|
|
784
|
+
"status": { "code": "CLOSE" },
|
|
785
|
+
"stock": "Stock 97"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"id": 98,
|
|
789
|
+
"name": "Deal test 98",
|
|
790
|
+
"startDate": "2014-02-06T22:27:54.826Z",
|
|
791
|
+
"endDate": "2019-10-30T07:19:23.165Z",
|
|
792
|
+
"status": { "code": "CALCULATED" },
|
|
793
|
+
"stock": "Stock 98"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"id": 99,
|
|
797
|
+
"name": "Deal test 99",
|
|
798
|
+
"startDate": "2014-02-22T20:15:10.913Z",
|
|
799
|
+
"endDate": "2017-08-28T00:18:20.625Z",
|
|
800
|
+
"status": { "code": "ACTIVE" },
|
|
801
|
+
"stock": "Stock 99"
|
|
802
|
+
}
|
|
803
|
+
],
|
|
804
|
+
"samples": [
|
|
805
|
+
{
|
|
806
|
+
"refLm": 79924915,
|
|
807
|
+
"supplierId": 208929,
|
|
808
|
+
"buId": 1,
|
|
809
|
+
"label": "2 PLINTHES 7.5X90 SPANIA BLANC",
|
|
810
|
+
"department": "6",
|
|
811
|
+
"ean": 8434459062845,
|
|
812
|
+
"spp": 4.95,
|
|
813
|
+
"scp": 5.882234,
|
|
814
|
+
"intercompanyPrice": 7.714462,
|
|
815
|
+
"delta": 1.832228,
|
|
816
|
+
"deltaPercentage": 31.148506,
|
|
817
|
+
"productCostBreakdowns": [
|
|
818
|
+
{
|
|
819
|
+
"label": "Coût de stockage",
|
|
820
|
+
"value": 0.018824,
|
|
821
|
+
"purchasePricePercentage": null,
|
|
822
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
823
|
+
"type": "Prix avant provision"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"label": "Coût transport amont",
|
|
827
|
+
"value": 0.156,
|
|
828
|
+
"purchasePricePercentage": null,
|
|
829
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
830
|
+
"type": "Prix rendu entrepôt"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"label": "Frais Gestion",
|
|
834
|
+
"value": 0.07227,
|
|
835
|
+
"purchasePricePercentage": null,
|
|
836
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
837
|
+
"type": "Prix avant provision"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"label": "Prestation surcoût palette",
|
|
841
|
+
"value": 0.006298,
|
|
842
|
+
"purchasePricePercentage": null,
|
|
843
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
844
|
+
"type": "Prix rendu entrepôt"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"label": "Provisions pour soldes",
|
|
848
|
+
"value": 0.186061,
|
|
849
|
+
"purchasePricePercentage": null,
|
|
850
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
851
|
+
"type": "Prix revient entrepôt"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"label": "Coût d'entrée",
|
|
855
|
+
"value": 0.015333,
|
|
856
|
+
"purchasePricePercentage": null,
|
|
857
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
858
|
+
"type": "Prix avant provision"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"label": "Margin",
|
|
862
|
+
"value": 2.0,
|
|
863
|
+
"purchasePricePercentage": null,
|
|
864
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
865
|
+
"type": "Coûts additionnels"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"label": "Provisions pour risques",
|
|
869
|
+
"value": 0.043779,
|
|
870
|
+
"purchasePricePercentage": null,
|
|
871
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
872
|
+
"type": "Prix revient entrepôt"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"label": "Prix fournisseur",
|
|
876
|
+
"value": 4.95,
|
|
877
|
+
"purchasePricePercentage": null,
|
|
878
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
879
|
+
"type": "Prix rendu entrepôt"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"label": "Coût de sortie",
|
|
883
|
+
"value": 0.235897,
|
|
884
|
+
"purchasePricePercentage": null,
|
|
885
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
886
|
+
"type": "Prix avant provision"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"label": "Coût transport aval",
|
|
890
|
+
"value": 0.03,
|
|
891
|
+
"purchasePricePercentage": null,
|
|
892
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
893
|
+
"type": "Prix avant coûts additionnels"
|
|
894
|
+
}
|
|
895
|
+
]
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"refLm": 79205336,
|
|
899
|
+
"supplierId": 204108,
|
|
900
|
+
"buId": 1,
|
|
901
|
+
"label": "P.VIN/INT UNI PLUME GRISE PAILLETTE",
|
|
902
|
+
"department": "12",
|
|
903
|
+
"ean": 5411012401177,
|
|
904
|
+
"spp": 7.78,
|
|
905
|
+
"scp": 10.718539,
|
|
906
|
+
"intercompanyPrice": 12.360739,
|
|
907
|
+
"delta": 1.6422,
|
|
908
|
+
"deltaPercentage": 15.321118,
|
|
909
|
+
"productCostBreakdowns": [
|
|
910
|
+
{
|
|
911
|
+
"label": "Prix fournisseur",
|
|
912
|
+
"value": 7.78,
|
|
913
|
+
"purchasePricePercentage": null,
|
|
914
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
915
|
+
"type": "Prix rendu entrepôt"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"label": "Coût de stockage",
|
|
919
|
+
"value": 0.118235,
|
|
920
|
+
"purchasePricePercentage": null,
|
|
921
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
922
|
+
"type": "Prix avant provision"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"label": "Coût de sortie",
|
|
926
|
+
"value": 0.730769,
|
|
927
|
+
"purchasePricePercentage": null,
|
|
928
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
929
|
+
"type": "Prix avant provision"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"label": "Provisions pour soldes",
|
|
933
|
+
"value": 0.090784,
|
|
934
|
+
"purchasePricePercentage": null,
|
|
935
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
936
|
+
"type": "Prix revient entrepôt"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"label": "Coût d'entrée",
|
|
940
|
+
"value": 1.266667,
|
|
941
|
+
"purchasePricePercentage": null,
|
|
942
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
943
|
+
"type": "Prix avant provision"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"label": "Provisions pour risques",
|
|
947
|
+
"value": 0.080696,
|
|
948
|
+
"purchasePricePercentage": null,
|
|
949
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
950
|
+
"type": "Prix revient entrepôt"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"label": "Frais Gestion",
|
|
954
|
+
"value": 0.113588,
|
|
955
|
+
"purchasePricePercentage": null,
|
|
956
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
957
|
+
"type": "Prix avant provision"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"label": "Coût transport aval",
|
|
961
|
+
"value": 0.18,
|
|
962
|
+
"purchasePricePercentage": null,
|
|
963
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
964
|
+
"type": "Prix avant coûts additionnels"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"label": "Margin",
|
|
968
|
+
"value": 2.0,
|
|
969
|
+
"purchasePricePercentage": null,
|
|
970
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
971
|
+
"type": "Coûts additionnels"
|
|
972
|
+
}
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"refLm": 69675592,
|
|
977
|
+
"supplierId": 203712,
|
|
978
|
+
"buId": 1,
|
|
979
|
+
"label": "ADAPTATEUR VIDE 12X20 BLANC",
|
|
980
|
+
"department": "3",
|
|
981
|
+
"ean": 4012740872119,
|
|
982
|
+
"spp": 1.76,
|
|
983
|
+
"scp": 2.016461,
|
|
984
|
+
"intercompanyPrice": 3.964533,
|
|
985
|
+
"delta": 1.948072,
|
|
986
|
+
"deltaPercentage": 96.608465,
|
|
987
|
+
"productCostBreakdowns": [
|
|
988
|
+
{
|
|
989
|
+
"label": "Coût de stockage",
|
|
990
|
+
"value": 0.012868,
|
|
991
|
+
"purchasePricePercentage": null,
|
|
992
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
993
|
+
"type": "Prix avant provision"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"label": "Provisions pour soldes",
|
|
997
|
+
"value": 0.010799,
|
|
998
|
+
"purchasePricePercentage": null,
|
|
999
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1000
|
+
"type": "Prix revient entrepôt"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"label": "Coût d'entrée",
|
|
1004
|
+
"value": 0.019167,
|
|
1005
|
+
"purchasePricePercentage": null,
|
|
1006
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1007
|
+
"type": "Prix avant provision"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"label": "Provisions pour risques",
|
|
1011
|
+
"value": 0.015426,
|
|
1012
|
+
"purchasePricePercentage": null,
|
|
1013
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1014
|
+
"type": "Prix revient entrepôt"
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"label": "Coût de sortie",
|
|
1018
|
+
"value": 0.110577,
|
|
1019
|
+
"purchasePricePercentage": null,
|
|
1020
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1021
|
+
"type": "Prix avant provision"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"label": "Coût transport aval",
|
|
1025
|
+
"value": 0.01,
|
|
1026
|
+
"purchasePricePercentage": null,
|
|
1027
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1028
|
+
"type": "Prix avant coûts additionnels"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"label": "Frais Gestion",
|
|
1032
|
+
"value": 0.025696,
|
|
1033
|
+
"purchasePricePercentage": null,
|
|
1034
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1035
|
+
"type": "Prix avant provision"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"label": "Prix fournisseur",
|
|
1039
|
+
"value": 1.76,
|
|
1040
|
+
"purchasePricePercentage": null,
|
|
1041
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1042
|
+
"type": "Prix rendu entrepôt"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"label": "Margin",
|
|
1046
|
+
"value": 2.0,
|
|
1047
|
+
"purchasePricePercentage": null,
|
|
1048
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1049
|
+
"type": "Coûts additionnels"
|
|
1050
|
+
}
|
|
1051
|
+
]
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"refLm": 79924943,
|
|
1055
|
+
"supplierId": 208929,
|
|
1056
|
+
"buId": 1,
|
|
1057
|
+
"label": "2 PLINTHES 7.5X90 SPANIA BRUN FONCE",
|
|
1058
|
+
"department": "6",
|
|
1059
|
+
"ean": 8434459062821,
|
|
1060
|
+
"spp": 4.95,
|
|
1061
|
+
"scp": 7.227734,
|
|
1062
|
+
"intercompanyPrice": 9.019703,
|
|
1063
|
+
"delta": 1.791969,
|
|
1064
|
+
"deltaPercentage": 24.792958,
|
|
1065
|
+
"productCostBreakdowns": [
|
|
1066
|
+
{
|
|
1067
|
+
"label": "Prix fournisseur",
|
|
1068
|
+
"value": 4.95,
|
|
1069
|
+
"purchasePricePercentage": null,
|
|
1070
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1071
|
+
"type": "Prix rendu entrepôt"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"label": "Prestation surcoût palette",
|
|
1075
|
+
"value": 0.020756,
|
|
1076
|
+
"purchasePricePercentage": null,
|
|
1077
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1078
|
+
"type": "Prix rendu entrepôt"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"label": "Coût d'entrée",
|
|
1082
|
+
"value": 0.766667,
|
|
1083
|
+
"purchasePricePercentage": null,
|
|
1084
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1085
|
+
"type": "Prix avant provision"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"label": "Coût transport amont",
|
|
1089
|
+
"value": 0.156,
|
|
1090
|
+
"purchasePricePercentage": null,
|
|
1091
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1092
|
+
"type": "Prix rendu entrepôt"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"label": "Margin",
|
|
1096
|
+
"value": 2.0,
|
|
1097
|
+
"purchasePricePercentage": null,
|
|
1098
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1099
|
+
"type": "Coûts additionnels"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"label": "Frais Gestion",
|
|
1103
|
+
"value": 0.07227,
|
|
1104
|
+
"purchasePricePercentage": null,
|
|
1105
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1106
|
+
"type": "Prix avant provision"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"label": "Coût de sortie",
|
|
1110
|
+
"value": 0.657143,
|
|
1111
|
+
"purchasePricePercentage": null,
|
|
1112
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1113
|
+
"type": "Prix avant provision"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"label": "Coût transport aval",
|
|
1117
|
+
"value": 0.09,
|
|
1118
|
+
"purchasePricePercentage": null,
|
|
1119
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1120
|
+
"type": "Prix avant coûts additionnels"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"label": "Provisions pour risques",
|
|
1124
|
+
"value": 0.053342,
|
|
1125
|
+
"purchasePricePercentage": null,
|
|
1126
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1127
|
+
"type": "Prix revient entrepôt"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"label": "Coût de stockage",
|
|
1131
|
+
"value": 0.026824,
|
|
1132
|
+
"purchasePricePercentage": null,
|
|
1133
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1134
|
+
"type": "Prix avant provision"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"label": "Provisions pour soldes",
|
|
1138
|
+
"value": 0.226701,
|
|
1139
|
+
"purchasePricePercentage": null,
|
|
1140
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1141
|
+
"type": "Prix revient entrepôt"
|
|
1142
|
+
}
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"refLm": 69676040,
|
|
1147
|
+
"supplierId": 203712,
|
|
1148
|
+
"buId": 1,
|
|
1149
|
+
"label": "2 ANGLES PLAT 12X20 BLANC",
|
|
1150
|
+
"department": "3",
|
|
1151
|
+
"ean": 4012740872065,
|
|
1152
|
+
"spp": 1.03,
|
|
1153
|
+
"scp": 1.154517,
|
|
1154
|
+
"intercompanyPrice": 3.123409,
|
|
1155
|
+
"delta": 1.968892,
|
|
1156
|
+
"deltaPercentage": 170.538156,
|
|
1157
|
+
"productCostBreakdowns": [
|
|
1158
|
+
{
|
|
1159
|
+
"label": "Coût de stockage",
|
|
1160
|
+
"value": 0.003217,
|
|
1161
|
+
"purchasePricePercentage": null,
|
|
1162
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1163
|
+
"type": "Prix avant provision"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"label": "Prix fournisseur",
|
|
1167
|
+
"value": 1.03,
|
|
1168
|
+
"purchasePricePercentage": null,
|
|
1169
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1170
|
+
"type": "Prix rendu entrepôt"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"label": "Margin",
|
|
1174
|
+
"value": 2.0,
|
|
1175
|
+
"purchasePricePercentage": null,
|
|
1176
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1177
|
+
"type": "Coûts additionnels"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"label": "Frais Gestion",
|
|
1181
|
+
"value": 0.015038,
|
|
1182
|
+
"purchasePricePercentage": null,
|
|
1183
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1184
|
+
"type": "Prix avant provision"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"label": "Coût de sortie",
|
|
1188
|
+
"value": 0.055288,
|
|
1189
|
+
"purchasePricePercentage": null,
|
|
1190
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1191
|
+
"type": "Prix avant provision"
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"label": "Provisions pour soldes",
|
|
1195
|
+
"value": 0.006207,
|
|
1196
|
+
"purchasePricePercentage": null,
|
|
1197
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1198
|
+
"type": "Prix revient entrepôt"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"label": "Coût d'entrée",
|
|
1202
|
+
"value": 0.004792,
|
|
1203
|
+
"purchasePricePercentage": null,
|
|
1204
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1205
|
+
"type": "Prix avant provision"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"label": "Provisions pour risques",
|
|
1209
|
+
"value": 0.008867,
|
|
1210
|
+
"purchasePricePercentage": null,
|
|
1211
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1212
|
+
"type": "Prix revient entrepôt"
|
|
1213
|
+
}
|
|
1214
|
+
]
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"refLm": 72357166,
|
|
1218
|
+
"supplierId": 207130,
|
|
1219
|
+
"buId": 1,
|
|
1220
|
+
"label": "CADRE LILA INSP BLANC 13X18CM",
|
|
1221
|
+
"department": "12",
|
|
1222
|
+
"ean": 3276000208174,
|
|
1223
|
+
"spp": 0.49,
|
|
1224
|
+
"scp": 0.637494,
|
|
1225
|
+
"intercompanyPrice": 2.617478,
|
|
1226
|
+
"delta": 1.979984,
|
|
1227
|
+
"deltaPercentage": 310.588649,
|
|
1228
|
+
"productCostBreakdowns": [
|
|
1229
|
+
{
|
|
1230
|
+
"label": "Coût d'entrée",
|
|
1231
|
+
"value": 0.009583,
|
|
1232
|
+
"purchasePricePercentage": null,
|
|
1233
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1234
|
+
"type": "Prix avant provision"
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"label": "Coût de sortie",
|
|
1238
|
+
"value": 0.070769,
|
|
1239
|
+
"purchasePricePercentage": null,
|
|
1240
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1241
|
+
"type": "Prix avant provision"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"label": "Provisions pour risques",
|
|
1245
|
+
"value": 0.004761,
|
|
1246
|
+
"purchasePricePercentage": null,
|
|
1247
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1248
|
+
"type": "Prix revient entrepôt"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"label": "Provisions pour soldes",
|
|
1252
|
+
"value": 0.005654,
|
|
1253
|
+
"purchasePricePercentage": null,
|
|
1254
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1255
|
+
"type": "Prix revient entrepôt"
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"label": "Coût transport aval",
|
|
1259
|
+
"value": 0.01,
|
|
1260
|
+
"purchasePricePercentage": null,
|
|
1261
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1262
|
+
"type": "Prix avant coûts additionnels"
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"label": "Prix fournisseur",
|
|
1266
|
+
"value": 0.49,
|
|
1267
|
+
"purchasePricePercentage": null,
|
|
1268
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1269
|
+
"type": "Prix rendu entrepôt"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"label": "Margin",
|
|
1273
|
+
"value": 2.0,
|
|
1274
|
+
"purchasePricePercentage": null,
|
|
1275
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1276
|
+
"type": "Coûts additionnels"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"label": "Prestation surcoût palette",
|
|
1280
|
+
"value": 0.002858,
|
|
1281
|
+
"purchasePricePercentage": null,
|
|
1282
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1283
|
+
"type": "Prix rendu entrepôt"
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"label": "Frais Gestion",
|
|
1287
|
+
"value": 0.007154,
|
|
1288
|
+
"purchasePricePercentage": null,
|
|
1289
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1290
|
+
"type": "Prix avant provision"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"label": "Coût de stockage",
|
|
1294
|
+
"value": 0.016699,
|
|
1295
|
+
"purchasePricePercentage": null,
|
|
1296
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1297
|
+
"type": "Prix avant provision"
|
|
1298
|
+
}
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"refLm": 81970140,
|
|
1303
|
+
"supplierId": 209954,
|
|
1304
|
+
"buId": 1,
|
|
1305
|
+
"label": "SLIMLINE LED 26.5W 4000K 100CM",
|
|
1306
|
+
"department": "13",
|
|
1307
|
+
"ean": 3276000439943,
|
|
1308
|
+
"spp": 18.72,
|
|
1309
|
+
"scp": 20.755684,
|
|
1310
|
+
"intercompanyPrice": 22.255017,
|
|
1311
|
+
"delta": 1.499333,
|
|
1312
|
+
"deltaPercentage": 7.223723,
|
|
1313
|
+
"productCostBreakdowns": [
|
|
1314
|
+
{
|
|
1315
|
+
"label": "Coût transport aval",
|
|
1316
|
+
"value": 0.09,
|
|
1317
|
+
"purchasePricePercentage": null,
|
|
1318
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1319
|
+
"type": "Prix avant coûts additionnels"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"label": "Frais Gestion",
|
|
1323
|
+
"value": 0.273312,
|
|
1324
|
+
"purchasePricePercentage": null,
|
|
1325
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1326
|
+
"type": "Prix avant provision"
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"label": "Provisions pour risques",
|
|
1330
|
+
"value": 0.15639,
|
|
1331
|
+
"purchasePricePercentage": null,
|
|
1332
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1333
|
+
"type": "Prix revient entrepôt"
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"label": "Margin",
|
|
1337
|
+
"value": 2.0,
|
|
1338
|
+
"purchasePricePercentage": null,
|
|
1339
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1340
|
+
"type": "Coûts additionnels"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"label": "Coût de stockage",
|
|
1344
|
+
"value": 0.123167,
|
|
1345
|
+
"purchasePricePercentage": null,
|
|
1346
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1347
|
+
"type": "Prix avant provision"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"label": "Prix fournisseur",
|
|
1351
|
+
"value": 18.72,
|
|
1352
|
+
"purchasePricePercentage": null,
|
|
1353
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1354
|
+
"type": "Prix rendu entrepôt"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"label": "Coût d'entrée",
|
|
1358
|
+
"value": 0.127778,
|
|
1359
|
+
"purchasePricePercentage": null,
|
|
1360
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1361
|
+
"type": "Prix avant provision"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"label": "Provisions pour soldes",
|
|
1365
|
+
"value": 0.410524,
|
|
1366
|
+
"purchasePricePercentage": null,
|
|
1367
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1368
|
+
"type": "Prix revient entrepôt"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"label": "Coût de sortie",
|
|
1372
|
+
"value": 0.353846,
|
|
1373
|
+
"purchasePricePercentage": null,
|
|
1374
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1375
|
+
"type": "Prix avant provision"
|
|
1376
|
+
}
|
|
1377
|
+
]
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"refLm": 80137789,
|
|
1381
|
+
"supplierId": 208171,
|
|
1382
|
+
"buId": 1,
|
|
1383
|
+
"label": "TONDEUSE STERWINS 320EP4 1200W 32CM",
|
|
1384
|
+
"department": "9",
|
|
1385
|
+
"ean": 3276000362692,
|
|
1386
|
+
"spp": 30.46,
|
|
1387
|
+
"scp": 38.341076,
|
|
1388
|
+
"intercompanyPrice": 39.239935,
|
|
1389
|
+
"delta": 0.898859,
|
|
1390
|
+
"deltaPercentage": 2.344377,
|
|
1391
|
+
"productCostBreakdowns": [
|
|
1392
|
+
{
|
|
1393
|
+
"label": "Margin",
|
|
1394
|
+
"value": 2.0,
|
|
1395
|
+
"purchasePricePercentage": null,
|
|
1396
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1397
|
+
"type": "Coûts additionnels"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"label": "Prix fournisseur",
|
|
1401
|
+
"value": 30.46,
|
|
1402
|
+
"purchasePricePercentage": null,
|
|
1403
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1404
|
+
"type": "Prix rendu entrepôt"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"label": "Coût de stockage",
|
|
1408
|
+
"value": 1.898706,
|
|
1409
|
+
"purchasePricePercentage": null,
|
|
1410
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1411
|
+
"type": "Prix avant provision"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"label": "Provisions pour risques",
|
|
1415
|
+
"value": 0.27862,
|
|
1416
|
+
"purchasePricePercentage": null,
|
|
1417
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1418
|
+
"type": "Prix revient entrepôt"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"label": "Coût transport aval",
|
|
1422
|
+
"value": 1.8,
|
|
1423
|
+
"purchasePricePercentage": null,
|
|
1424
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1425
|
+
"type": "Prix avant coûts additionnels"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"label": "Coût d'entrée",
|
|
1429
|
+
"value": 0.766667,
|
|
1430
|
+
"purchasePricePercentage": null,
|
|
1431
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1432
|
+
"type": "Prix avant provision"
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
"label": "Provisions pour soldes",
|
|
1436
|
+
"value": 0.313448,
|
|
1437
|
+
"purchasePricePercentage": null,
|
|
1438
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1439
|
+
"type": "Prix revient entrepôt"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"label": "Frais Gestion",
|
|
1443
|
+
"value": 0.444716,
|
|
1444
|
+
"purchasePricePercentage": null,
|
|
1445
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1446
|
+
"type": "Prix avant provision"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"label": "Coût de sortie",
|
|
1450
|
+
"value": 1.277778,
|
|
1451
|
+
"purchasePricePercentage": null,
|
|
1452
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1453
|
+
"type": "Prix avant provision"
|
|
1454
|
+
}
|
|
1455
|
+
]
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"refLm": 82088775,
|
|
1459
|
+
"supplierId": 206408,
|
|
1460
|
+
"buId": 1,
|
|
1461
|
+
"label": "REMIX2 PTE PIVOT VF/BR77.5/80.5CM",
|
|
1462
|
+
"department": "7",
|
|
1463
|
+
"ean": 3276000636892,
|
|
1464
|
+
"spp": 87.11,
|
|
1465
|
+
"scp": 104.500963,
|
|
1466
|
+
"intercompanyPrice": 102.676321,
|
|
1467
|
+
"delta": -1.824642,
|
|
1468
|
+
"deltaPercentage": -1.746052,
|
|
1469
|
+
"productCostBreakdowns": [
|
|
1470
|
+
{
|
|
1471
|
+
"label": "Coût transport aval",
|
|
1472
|
+
"value": 2.58,
|
|
1473
|
+
"purchasePricePercentage": null,
|
|
1474
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1475
|
+
"type": "Prix avant coûts additionnels"
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"label": "Provisions pour soldes",
|
|
1479
|
+
"value": 1.06991,
|
|
1480
|
+
"purchasePricePercentage": null,
|
|
1481
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1482
|
+
"type": "Prix revient entrepôt"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"label": "Coût de sortie",
|
|
1486
|
+
"value": 2.705882,
|
|
1487
|
+
"purchasePricePercentage": null,
|
|
1488
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1489
|
+
"type": "Prix avant provision"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"label": "Prix fournisseur",
|
|
1493
|
+
"value": 87.11,
|
|
1494
|
+
"purchasePricePercentage": null,
|
|
1495
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1496
|
+
"type": "Prix rendu entrepôt"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"label": "Margin",
|
|
1500
|
+
"value": 2.0,
|
|
1501
|
+
"purchasePricePercentage": null,
|
|
1502
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1503
|
+
"type": "Coûts additionnels"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"label": "Frais Gestion",
|
|
1507
|
+
"value": 1.271806,
|
|
1508
|
+
"purchasePricePercentage": null,
|
|
1509
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1510
|
+
"type": "Prix avant provision"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"label": "Coût d'entrée",
|
|
1514
|
+
"value": 0.302632,
|
|
1515
|
+
"purchasePricePercentage": null,
|
|
1516
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1517
|
+
"type": "Prix avant provision"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"label": "Coût de stockage",
|
|
1521
|
+
"value": 4.857974,
|
|
1522
|
+
"purchasePricePercentage": null,
|
|
1523
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1524
|
+
"type": "Prix avant provision"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"label": "Provisions pour risques",
|
|
1528
|
+
"value": 0.778117,
|
|
1529
|
+
"purchasePricePercentage": null,
|
|
1530
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1531
|
+
"type": "Prix revient entrepôt"
|
|
1532
|
+
}
|
|
1533
|
+
]
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"refLm": 81989526,
|
|
1537
|
+
"supplierId": 203490,
|
|
1538
|
+
"buId": 1,
|
|
1539
|
+
"label": "SERVITEUR ANEKO BAMBOU",
|
|
1540
|
+
"department": "7",
|
|
1541
|
+
"ean": 3276000482994,
|
|
1542
|
+
"spp": 14.17,
|
|
1543
|
+
"scp": 18.238559,
|
|
1544
|
+
"intercompanyPrice": 19.597965,
|
|
1545
|
+
"delta": 1.359406,
|
|
1546
|
+
"deltaPercentage": 7.453473,
|
|
1547
|
+
"productCostBreakdowns": [
|
|
1548
|
+
{
|
|
1549
|
+
"label": "Coût transport aval",
|
|
1550
|
+
"value": 0.58,
|
|
1551
|
+
"purchasePricePercentage": null,
|
|
1552
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1553
|
+
"type": "Prix avant coûts additionnels"
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"label": "Coût de sortie",
|
|
1557
|
+
"value": 0.638889,
|
|
1558
|
+
"purchasePricePercentage": null,
|
|
1559
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1560
|
+
"type": "Prix avant provision"
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"label": "Margin",
|
|
1564
|
+
"value": 2.0,
|
|
1565
|
+
"purchasePricePercentage": null,
|
|
1566
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1567
|
+
"type": "Coûts additionnels"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"label": "Coût d'entrée",
|
|
1571
|
+
"value": 0.383333,
|
|
1572
|
+
"purchasePricePercentage": null,
|
|
1573
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1574
|
+
"type": "Prix avant provision"
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"label": "Prix fournisseur",
|
|
1578
|
+
"value": 14.17,
|
|
1579
|
+
"purchasePricePercentage": null,
|
|
1580
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1581
|
+
"type": "Prix rendu entrepôt"
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"label": "Provisions pour risques",
|
|
1585
|
+
"value": 0.132525,
|
|
1586
|
+
"purchasePricePercentage": null,
|
|
1587
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1588
|
+
"type": "Prix revient entrepôt"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"label": "Frais Gestion",
|
|
1592
|
+
"value": 0.206882,
|
|
1593
|
+
"purchasePricePercentage": null,
|
|
1594
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1595
|
+
"type": "Prix avant provision"
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"label": "Provisions pour soldes",
|
|
1599
|
+
"value": 0.480403,
|
|
1600
|
+
"purchasePricePercentage": null,
|
|
1601
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1602
|
+
"type": "Prix revient entrepôt"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"label": "Coût de stockage",
|
|
1606
|
+
"value": 1.005933,
|
|
1607
|
+
"purchasePricePercentage": null,
|
|
1608
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1609
|
+
"type": "Prix avant provision"
|
|
1610
|
+
}
|
|
1611
|
+
]
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"refLm": 72532320,
|
|
1615
|
+
"supplierId": 209233,
|
|
1616
|
+
"buId": 1,
|
|
1617
|
+
"label": "CX 20X40 BEAUTY BLANC 1.6M2",
|
|
1618
|
+
"department": "6",
|
|
1619
|
+
"ean": 8021224533398,
|
|
1620
|
+
"spp": 8.16,
|
|
1621
|
+
"scp": 13.191363,
|
|
1622
|
+
"intercompanyPrice": 14.784576,
|
|
1623
|
+
"delta": 1.593213,
|
|
1624
|
+
"deltaPercentage": 12.077699,
|
|
1625
|
+
"productCostBreakdowns": [
|
|
1626
|
+
{
|
|
1627
|
+
"label": "Frais Gestion",
|
|
1628
|
+
"value": 0.119136,
|
|
1629
|
+
"purchasePricePercentage": null,
|
|
1630
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1631
|
+
"type": "Prix avant provision"
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"label": "Provisions pour risques",
|
|
1635
|
+
"value": 0.09707,
|
|
1636
|
+
"purchasePricePercentage": null,
|
|
1637
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1638
|
+
"type": "Prix revient entrepôt"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"label": "Prix fournisseur",
|
|
1642
|
+
"value": 8.16,
|
|
1643
|
+
"purchasePricePercentage": null,
|
|
1644
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1645
|
+
"type": "Prix rendu entrepôt"
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"label": "Coût de stockage",
|
|
1649
|
+
"value": 0.198144,
|
|
1650
|
+
"purchasePricePercentage": null,
|
|
1651
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1652
|
+
"type": "Prix avant provision"
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"label": "Margin",
|
|
1656
|
+
"value": 2.0,
|
|
1657
|
+
"purchasePricePercentage": null,
|
|
1658
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1659
|
+
"type": "Coûts additionnels"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"label": "Coût transport aval",
|
|
1663
|
+
"value": 0.38,
|
|
1664
|
+
"purchasePricePercentage": null,
|
|
1665
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1666
|
+
"type": "Prix avant coûts additionnels"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"label": "Provisions pour soldes",
|
|
1670
|
+
"value": 0.230541,
|
|
1671
|
+
"purchasePricePercentage": null,
|
|
1672
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1673
|
+
"type": "Prix revient entrepôt"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"label": "Coût transport amont",
|
|
1677
|
+
"value": 0.9512,
|
|
1678
|
+
"purchasePricePercentage": null,
|
|
1679
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1680
|
+
"type": "Prix rendu entrepôt"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"label": "Coût de sortie",
|
|
1684
|
+
"value": 1.381818,
|
|
1685
|
+
"purchasePricePercentage": null,
|
|
1686
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1687
|
+
"type": "Prix avant provision"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"label": "Coût d'entrée",
|
|
1691
|
+
"value": 1.266667,
|
|
1692
|
+
"purchasePricePercentage": null,
|
|
1693
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1694
|
+
"type": "Prix avant provision"
|
|
1695
|
+
}
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"refLm": 82003904,
|
|
1700
|
+
"supplierId": 200208,
|
|
1701
|
+
"buId": 1,
|
|
1702
|
+
"label": "CX QUARTZITE 45X45 GRIS MOYEN 1.72M2",
|
|
1703
|
+
"department": "6",
|
|
1704
|
+
"ean": 8011634574838,
|
|
1705
|
+
"spp": 8.4,
|
|
1706
|
+
"scp": 12.429589,
|
|
1707
|
+
"intercompanyPrice": 14.010564,
|
|
1708
|
+
"delta": 1.580975,
|
|
1709
|
+
"deltaPercentage": 12.719448,
|
|
1710
|
+
"productCostBreakdowns": [
|
|
1711
|
+
{
|
|
1712
|
+
"label": "Coût d'entrée",
|
|
1713
|
+
"value": 0.095833,
|
|
1714
|
+
"purchasePricePercentage": null,
|
|
1715
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1716
|
+
"type": "Prix avant provision"
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"label": "Margin",
|
|
1720
|
+
"value": 2.0,
|
|
1721
|
+
"purchasePricePercentage": null,
|
|
1722
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1723
|
+
"type": "Coûts additionnels"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"label": "Frais Gestion",
|
|
1727
|
+
"value": 0.12264,
|
|
1728
|
+
"purchasePricePercentage": null,
|
|
1729
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1730
|
+
"type": "Prix avant provision"
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"label": "Coût de sortie",
|
|
1734
|
+
"value": 0.836364,
|
|
1735
|
+
"purchasePricePercentage": null,
|
|
1736
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1737
|
+
"type": "Prix avant provision"
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"label": "Coût de stockage",
|
|
1741
|
+
"value": 0.377454,
|
|
1742
|
+
"purchasePricePercentage": null,
|
|
1743
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1744
|
+
"type": "Prix avant provision"
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
"label": "Prix fournisseur",
|
|
1748
|
+
"value": 8.4,
|
|
1749
|
+
"purchasePricePercentage": null,
|
|
1750
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1751
|
+
"type": "Prix rendu entrepôt"
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"label": "Provisions pour risques",
|
|
1755
|
+
"value": 0.090362,
|
|
1756
|
+
"purchasePricePercentage": null,
|
|
1757
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1758
|
+
"type": "Prix revient entrepôt"
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"label": "Provisions pour soldes",
|
|
1762
|
+
"value": 0.384036,
|
|
1763
|
+
"purchasePricePercentage": null,
|
|
1764
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1765
|
+
"type": "Prix revient entrepôt"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"label": "Coût transport aval",
|
|
1769
|
+
"value": 0.33,
|
|
1770
|
+
"purchasePricePercentage": null,
|
|
1771
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1772
|
+
"type": "Prix avant coûts additionnels"
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
"label": "Coût transport amont",
|
|
1776
|
+
"value": 1.373875,
|
|
1777
|
+
"purchasePricePercentage": null,
|
|
1778
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1779
|
+
"type": "Prix rendu entrepôt"
|
|
1780
|
+
}
|
|
1781
|
+
]
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"refLm": 82010985,
|
|
1785
|
+
"supplierId": 207768,
|
|
1786
|
+
"buId": 1,
|
|
1787
|
+
"label": "*REGLETTE ETANCHE T8 1X36W IP65",
|
|
1788
|
+
"department": "13",
|
|
1789
|
+
"ean": 3276000600954,
|
|
1790
|
+
"spp": 6.78,
|
|
1791
|
+
"scp": 8.25831,
|
|
1792
|
+
"intercompanyPrice": 9.817773,
|
|
1793
|
+
"delta": 1.559463,
|
|
1794
|
+
"deltaPercentage": 18.883561,
|
|
1795
|
+
"productCostBreakdowns": [
|
|
1796
|
+
{
|
|
1797
|
+
"label": "Coût d'entrée",
|
|
1798
|
+
"value": 0.063889,
|
|
1799
|
+
"purchasePricePercentage": null,
|
|
1800
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1801
|
+
"type": "Prix avant provision"
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
"label": "Coût de sortie",
|
|
1805
|
+
"value": 0.136905,
|
|
1806
|
+
"purchasePricePercentage": null,
|
|
1807
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1808
|
+
"type": "Prix avant provision"
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"label": "Frais Gestion",
|
|
1812
|
+
"value": 0.098988,
|
|
1813
|
+
"purchasePricePercentage": null,
|
|
1814
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1815
|
+
"type": "Prix avant provision"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"label": "Provisions pour risques",
|
|
1819
|
+
"value": 0.060171,
|
|
1820
|
+
"purchasePricePercentage": null,
|
|
1821
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1822
|
+
"type": "Prix revient entrepôt"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"label": "Provisions pour soldes",
|
|
1826
|
+
"value": 0.157948,
|
|
1827
|
+
"purchasePricePercentage": null,
|
|
1828
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1829
|
+
"type": "Prix revient entrepôt"
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"label": "Margin",
|
|
1833
|
+
"value": 2.0,
|
|
1834
|
+
"purchasePricePercentage": null,
|
|
1835
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1836
|
+
"type": "Coûts additionnels"
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"label": "Prix fournisseur",
|
|
1840
|
+
"value": 6.78,
|
|
1841
|
+
"purchasePricePercentage": null,
|
|
1842
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1843
|
+
"type": "Prix rendu entrepôt"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"label": "Coût de stockage",
|
|
1847
|
+
"value": 0.339872,
|
|
1848
|
+
"purchasePricePercentage": null,
|
|
1849
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1850
|
+
"type": "Prix avant provision"
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"label": "Coût transport aval",
|
|
1854
|
+
"value": 0.18,
|
|
1855
|
+
"purchasePricePercentage": null,
|
|
1856
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1857
|
+
"type": "Prix avant coûts additionnels"
|
|
1858
|
+
}
|
|
1859
|
+
]
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"refLm": 70595756,
|
|
1863
|
+
"supplierId": 203757,
|
|
1864
|
+
"buId": 1,
|
|
1865
|
+
"label": "ENROULEUR CHAN 30M HO7RNF 3G1.5MM² LEXMA",
|
|
1866
|
+
"department": "3",
|
|
1867
|
+
"ean": 3276005595927,
|
|
1868
|
+
"spp": 22.06,
|
|
1869
|
+
"scp": 25.957872,
|
|
1870
|
+
"intercompanyPrice": 27.085156,
|
|
1871
|
+
"delta": 1.127284,
|
|
1872
|
+
"deltaPercentage": 4.342745,
|
|
1873
|
+
"productCostBreakdowns": [
|
|
1874
|
+
{
|
|
1875
|
+
"label": "Margin",
|
|
1876
|
+
"value": 2.0,
|
|
1877
|
+
"purchasePricePercentage": null,
|
|
1878
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1879
|
+
"type": "Coûts additionnels"
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"label": "Coût de sortie",
|
|
1883
|
+
"value": 0.638889,
|
|
1884
|
+
"purchasePricePercentage": null,
|
|
1885
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1886
|
+
"type": "Prix avant provision"
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"label": "Provisions pour soldes",
|
|
1890
|
+
"value": 0.135971,
|
|
1891
|
+
"purchasePricePercentage": null,
|
|
1892
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1893
|
+
"type": "Prix revient entrepôt"
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
"label": "Prix fournisseur",
|
|
1897
|
+
"value": 22.06,
|
|
1898
|
+
"purchasePricePercentage": null,
|
|
1899
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1900
|
+
"type": "Prix rendu entrepôt"
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"label": "Provisions pour risques",
|
|
1904
|
+
"value": 0.194244,
|
|
1905
|
+
"purchasePricePercentage": null,
|
|
1906
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1907
|
+
"type": "Prix revient entrepôt"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"label": "Coût de stockage",
|
|
1911
|
+
"value": 0.780643,
|
|
1912
|
+
"purchasePricePercentage": null,
|
|
1913
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1914
|
+
"type": "Prix avant provision"
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"label": "Frais Gestion",
|
|
1918
|
+
"value": 0.322076,
|
|
1919
|
+
"purchasePricePercentage": null,
|
|
1920
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1921
|
+
"type": "Prix avant provision"
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"label": "Coût transport aval",
|
|
1925
|
+
"value": 0.57,
|
|
1926
|
+
"purchasePricePercentage": null,
|
|
1927
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1928
|
+
"type": "Prix avant coûts additionnels"
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"label": "Coût d'entrée",
|
|
1932
|
+
"value": 0.383333,
|
|
1933
|
+
"purchasePricePercentage": null,
|
|
1934
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1935
|
+
"type": "Prix avant provision"
|
|
1936
|
+
}
|
|
1937
|
+
]
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"refLm": 70524440,
|
|
1941
|
+
"supplierId": 203490,
|
|
1942
|
+
"buId": 1,
|
|
1943
|
+
"label": "POUBELLE 5L STEPPY GRIS ZINGUE 1",
|
|
1944
|
+
"department": "7",
|
|
1945
|
+
"ean": 3276005475472,
|
|
1946
|
+
"spp": 2.84,
|
|
1947
|
+
"scp": 3.719977,
|
|
1948
|
+
"intercompanyPrice": 5.587791,
|
|
1949
|
+
"delta": 1.867814,
|
|
1950
|
+
"deltaPercentage": 50.210365,
|
|
1951
|
+
"productCostBreakdowns": [
|
|
1952
|
+
{
|
|
1953
|
+
"label": "Prix fournisseur",
|
|
1954
|
+
"value": 2.84,
|
|
1955
|
+
"purchasePricePercentage": null,
|
|
1956
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1957
|
+
"type": "Prix rendu entrepôt"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"label": "Coût de sortie",
|
|
1961
|
+
"value": 0.176923,
|
|
1962
|
+
"purchasePricePercentage": null,
|
|
1963
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1964
|
+
"type": "Prix avant provision"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"label": "Coût d'entrée",
|
|
1968
|
+
"value": 0.095833,
|
|
1969
|
+
"purchasePricePercentage": null,
|
|
1970
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1971
|
+
"type": "Prix avant provision"
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"label": "Margin",
|
|
1975
|
+
"value": 2.0,
|
|
1976
|
+
"purchasePricePercentage": null,
|
|
1977
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1978
|
+
"type": "Coûts additionnels"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"label": "Coût de stockage",
|
|
1982
|
+
"value": 0.198335,
|
|
1983
|
+
"purchasePricePercentage": null,
|
|
1984
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1985
|
+
"type": "Prix avant provision"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"label": "Provisions pour risques",
|
|
1989
|
+
"value": 0.027078,
|
|
1990
|
+
"purchasePricePercentage": null,
|
|
1991
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1992
|
+
"type": "Prix revient entrepôt"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"label": "Coût transport aval",
|
|
1996
|
+
"value": 0.11,
|
|
1997
|
+
"purchasePricePercentage": null,
|
|
1998
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
1999
|
+
"type": "Prix avant coûts additionnels"
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
"label": "Provisions pour soldes",
|
|
2003
|
+
"value": 0.098158,
|
|
2004
|
+
"purchasePricePercentage": null,
|
|
2005
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
2006
|
+
"type": "Prix revient entrepôt"
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"label": "Frais Gestion",
|
|
2010
|
+
"value": 0.041464,
|
|
2011
|
+
"purchasePricePercentage": null,
|
|
2012
|
+
"priceBeforeAdditionalCostPercentage": null,
|
|
2013
|
+
"type": "Prix avant provision"
|
|
2014
|
+
}
|
|
2015
|
+
]
|
|
2016
|
+
}
|
|
2017
|
+
]
|
|
2018
|
+
}
|