contentoh-components-library 21.4.4 → 21.4.5

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.
Files changed (99) hide show
  1. package/dist/components/atoms/Avatar/index.js +3 -2
  2. package/dist/components/atoms/CheckBox/index.js +4 -1
  3. package/dist/components/atoms/CheckBox/styles.js +1 -1
  4. package/dist/components/atoms/ImageCarousel/ImgeSlider.stories.js +90 -0
  5. package/dist/components/atoms/ImageCarousel/index.js +120 -0
  6. package/dist/components/atoms/ImageCarousel/styles.js +18 -0
  7. package/dist/components/atoms/PercentTag/PercentTag.stories.js +31 -0
  8. package/dist/components/atoms/PercentTag/index.js +23 -0
  9. package/dist/components/atoms/PercentTag/styles.js +22 -0
  10. package/dist/components/atoms/RatingStars/RatingStars.stories.js +30 -0
  11. package/dist/components/atoms/RatingStars/index.js +53 -0
  12. package/dist/components/atoms/RatingStars/styles.js +18 -0
  13. package/dist/components/atoms/RetailerCatalog/RetailerCatalog.stories.js +48 -0
  14. package/dist/components/atoms/RetailerCatalog/index.js +69 -0
  15. package/dist/components/atoms/RetailerCatalog/styles.js +20 -0
  16. package/dist/components/atoms/RetailerOption/RetailerOption.stories.js +33 -0
  17. package/dist/components/atoms/RetailerOption/index.js +62 -0
  18. package/dist/components/atoms/RetailerOption/styles.js +20 -0
  19. package/dist/components/atoms/RetailersList/RetailersList.stories.js +45 -0
  20. package/dist/components/atoms/RetailersList/index.js +46 -0
  21. package/dist/components/atoms/RetailersList/styles.js +18 -0
  22. package/dist/components/atoms/UserCatalog/UserCatalog.stories.js +73 -0
  23. package/dist/components/atoms/UserCatalog/index.js +101 -0
  24. package/dist/components/atoms/UserCatalog/styles.js +18 -0
  25. package/dist/components/atoms/UserOption/UserOption.stories.js +40 -0
  26. package/dist/components/atoms/UserOption/index.js +130 -0
  27. package/dist/components/atoms/UserOption/styles.js +20 -0
  28. package/dist/components/atoms/UserSelector/UserSelector.stories.js +40 -0
  29. package/dist/components/atoms/UserSelector/index.js +98 -0
  30. package/dist/components/atoms/UserSelector/styles.js +32 -0
  31. package/dist/components/molecules/GridItem/GridItem.stories.js +123 -0
  32. package/dist/components/molecules/GridItem/index.js +143 -0
  33. package/dist/components/molecules/GridItem/styles.js +20 -0
  34. package/dist/components/molecules/HeaderItem/ColumnItem.js +23 -0
  35. package/dist/components/molecules/HeaderItem/HeaderItem.stories.js +70 -0
  36. package/dist/components/molecules/HeaderItem/index.js +42 -0
  37. package/dist/components/molecules/HeaderItem/styles.js +30 -0
  38. package/dist/components/molecules/RowItem/ColumnItem.js +23 -0
  39. package/dist/components/molecules/RowItem/RowItem.stories.js +5242 -0
  40. package/dist/components/molecules/RowItem/index.js +58 -0
  41. package/dist/components/molecules/RowItem/styles.js +30 -0
  42. package/dist/components/organisms/GridProducts/GridProducts.stories.js +5097 -0
  43. package/dist/components/organisms/GridProducts/index.js +63 -0
  44. package/dist/components/organisms/GridProducts/styles.js +18 -0
  45. package/dist/components/organisms/GridProducts/utils.js +149 -0
  46. package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +41 -28
  47. package/dist/components/pages/RetailerProductEdition/index.js +23 -0
  48. package/dist/index.js +201 -58
  49. package/package.json +2 -1
  50. package/src/components/atoms/Avatar/index.js +8 -2
  51. package/src/components/atoms/CheckBox/index.js +2 -1
  52. package/src/components/atoms/CheckBox/styles.js +2 -0
  53. package/src/components/atoms/ImageCarousel/ImgeSlider.stories.js +76 -0
  54. package/src/components/atoms/ImageCarousel/index.js +103 -0
  55. package/src/components/atoms/ImageCarousel/styles.js +79 -0
  56. package/src/components/atoms/PercentTag/PercentTag.stories.js +7 -0
  57. package/src/components/atoms/PercentTag/index.js +9 -0
  58. package/src/components/atoms/PercentTag/styles.js +69 -0
  59. package/src/components/atoms/RatingStars/RatingStars.stories.js +10 -0
  60. package/src/components/atoms/RatingStars/index.js +31 -0
  61. package/src/components/atoms/RatingStars/styles.js +28 -0
  62. package/src/components/atoms/RetailerCatalog/RetailerCatalog.stories.js +36 -0
  63. package/src/components/atoms/RetailerCatalog/index.js +49 -0
  64. package/src/components/atoms/RetailerCatalog/styles.js +30 -0
  65. package/src/components/atoms/RetailerOption/RetailerOption.stories.js +15 -0
  66. package/src/components/atoms/RetailerOption/index.js +53 -0
  67. package/src/components/atoms/RetailerOption/styles.js +41 -0
  68. package/src/components/atoms/RetailersList/RetailersList.stories.js +33 -0
  69. package/src/components/atoms/RetailersList/index.js +20 -0
  70. package/src/components/atoms/RetailersList/styles.js +19 -0
  71. package/src/components/atoms/UserCatalog/UserCatalog.stories.js +67 -0
  72. package/src/components/atoms/UserCatalog/index.js +94 -0
  73. package/src/components/atoms/UserCatalog/styles.js +24 -0
  74. package/src/components/atoms/UserOption/UserOption.stories.js +25 -0
  75. package/src/components/atoms/UserOption/index.js +95 -0
  76. package/src/components/atoms/UserOption/styles.js +61 -0
  77. package/src/components/atoms/UserSelector/UserSelector.stories.js +25 -0
  78. package/src/components/atoms/UserSelector/index.js +86 -0
  79. package/src/components/atoms/UserSelector/styles.js +55 -0
  80. package/src/components/molecules/GridItem/GridItem.stories.js +126 -0
  81. package/src/components/molecules/GridItem/index.js +97 -0
  82. package/src/components/molecules/GridItem/styles.js +104 -0
  83. package/src/components/molecules/HeaderItem/ColumnItem.js +9 -0
  84. package/src/components/molecules/HeaderItem/HeaderItem.stories.js +24 -0
  85. package/src/components/molecules/HeaderItem/index.js +26 -0
  86. package/src/components/molecules/HeaderItem/styles.js +27 -0
  87. package/src/components/molecules/RowItem/ColumnItem.js +9 -0
  88. package/src/components/molecules/RowItem/RowItem.stories.js +5660 -0
  89. package/src/components/molecules/RowItem/index.js +45 -0
  90. package/src/components/molecules/RowItem/styles.js +40 -0
  91. package/src/components/organisms/GridProducts/GridProducts.stories.js +5485 -0
  92. package/src/components/organisms/GridProducts/index.js +50 -0
  93. package/src/components/organisms/GridProducts/styles.js +15 -0
  94. package/src/components/organisms/GridProducts/utils.js +111 -0
  95. package/src/components/organisms/OrderDetail/utils/Table/utils.js +6 -16
  96. package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +39 -21
  97. package/src/components/pages/RetailerProductEdition/index.js +12 -0
  98. package/src/index.js +12 -0
  99. package/dist/assets/fonts/roboto/LICENSE.txt +0 -202
@@ -0,0 +1,5097 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = exports.GridProductsDefault = void 0;
9
+
10
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectSpread2"));
11
+
12
+ var _ = require(".");
13
+
14
+ var _utils = require("./utils");
15
+
16
+ var _react = require("react");
17
+
18
+ var _jsxRuntime = require("react/jsx-runtime");
19
+
20
+ var _default = {
21
+ title: "Components/organisms/GridProducts",
22
+ component: _.GridProducts
23
+ };
24
+ exports.default = _default;
25
+
26
+ var Template = function Template(args) {
27
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_.GridProducts, (0, _objectSpread2.default)({}, args));
28
+ };
29
+
30
+ var GridProductsDefault = Template.bind([]);
31
+ exports.GridProductsDefault = GridProductsDefault;
32
+ var products = [{
33
+ services: {
34
+ datasheets: 1,
35
+ descriptions: 1,
36
+ images: 1
37
+ },
38
+ orderId: 15270,
39
+ status: "PA",
40
+ datasheet_status: "PA",
41
+ prio: "none",
42
+ version: 3,
43
+ description_status: "PA",
44
+ images_status: "PA",
45
+ statusByRetailer: {
46
+ 68: {
47
+ datasheet: "PA",
48
+ description: "PA",
49
+ images: "PA"
50
+ }
51
+ },
52
+ article: {
53
+ id_article: 39474,
54
+ id_category: "2433",
55
+ name: "TST DPS 1",
56
+ upc: "9384324023",
57
+ timestamp: "2023-07-03T20:30:50.000Z",
58
+ id_user: 273,
59
+ status: "NULL",
60
+ active: 1,
61
+ company_id: 312,
62
+ company_name: "GRUPO BRAHMA",
63
+ country: "México",
64
+ id_order: 15270,
65
+ id_datasheet_especialist: null,
66
+ id_datasheet_facilitator: null,
67
+ id_description_especialist: null,
68
+ id_description_facilitator: null,
69
+ id_images_especialist: null,
70
+ id_images_facilitator: null,
71
+ id_auditor: null,
72
+ id_recepcionist: null,
73
+ category: "Ferretería|Abrepuertas Automáticos|Abrepuertas Automáticos",
74
+ missingAttributes: 0,
75
+ missingDescriptions: 0,
76
+ missingImages: 0
77
+ },
78
+ retailers: [{
79
+ id: 58,
80
+ name: "The Home Depot Golden"
81
+ }, {
82
+ id: 59,
83
+ name: "The Home Depot Platinum"
84
+ }, {
85
+ id: 60,
86
+ name: "The Home Depot Resizing"
87
+ }, {
88
+ id: 61,
89
+ name: "Home Depot TAB"
90
+ }, {
91
+ id: 68,
92
+ name: "The Home Depot Dropship"
93
+ }],
94
+ country: "México",
95
+ upc: "9384324023"
96
+ }, {
97
+ services: {
98
+ datasheets: 1,
99
+ descriptions: 1,
100
+ images: 1
101
+ },
102
+ orderId: 15270,
103
+ status: "PA",
104
+ datasheet_status: "PA",
105
+ prio: "none",
106
+ version: 3,
107
+ description_status: "PA",
108
+ images_status: "PA",
109
+ statusByRetailer: {
110
+ 68: {
111
+ datasheet: "PA",
112
+ description: "PA",
113
+ images: "PA"
114
+ }
115
+ },
116
+ article: {
117
+ id_article: 39475,
118
+ id_category: "2901",
119
+ name: "TST DPS 2",
120
+ upc: "3424234232",
121
+ timestamp: "2023-07-03T20:30:50.000Z",
122
+ id_user: 273,
123
+ status: "NULL",
124
+ active: 1,
125
+ company_id: 300,
126
+ company_name: "GRUPO BRAHMA",
127
+ country: "México",
128
+ id_order: 15270,
129
+ id_datasheet_especialist: null,
130
+ id_datasheet_facilitator: null,
131
+ id_description_especialist: null,
132
+ id_description_facilitator: null,
133
+ id_images_especialist: null,
134
+ id_images_facilitator: null,
135
+ id_auditor: null,
136
+ id_recepcionist: null,
137
+ category: "Navidad|Decoración Interior|Accesorios Navideños",
138
+ missingAttributes: 0,
139
+ missingDescriptions: 0,
140
+ missingImages: 0
141
+ },
142
+ retailers: [{
143
+ id: 58,
144
+ name: "The Home Depot Golden"
145
+ }, {
146
+ id: 59,
147
+ name: "The Home Depot Platinum"
148
+ }, {
149
+ id: 60,
150
+ name: "The Home Depot Resizing"
151
+ }, {
152
+ id: 61,
153
+ name: "Home Depot TAB"
154
+ }, {
155
+ id: 68,
156
+ name: "The Home Depot Dropship"
157
+ }],
158
+ country: "México",
159
+ upc: "3424234232"
160
+ }, {
161
+ services: {
162
+ datasheets: 1,
163
+ descriptions: 1,
164
+ images: 1
165
+ },
166
+ orderId: 15270,
167
+ status: "PA",
168
+ datasheet_status: "PA",
169
+ prio: "none",
170
+ version: 3,
171
+ description_status: "PA",
172
+ images_status: "PA",
173
+ statusByRetailer: {
174
+ 68: {
175
+ images: "PA",
176
+ datasheet: "PA",
177
+ description: "PA"
178
+ }
179
+ },
180
+ article: {
181
+ id_article: 39476,
182
+ id_category: "2004",
183
+ name: "TST DPS 3",
184
+ upc: "39494022",
185
+ timestamp: "2023-07-03T20:30:50.000Z",
186
+ id_user: 273,
187
+ status: "NULL",
188
+ active: 1,
189
+ company_id: 313,
190
+ company_name: "GRUPO BRAHMA",
191
+ country: "México",
192
+ id_order: 15270,
193
+ id_datasheet_especialist: null,
194
+ id_datasheet_facilitator: null,
195
+ id_description_especialist: null,
196
+ id_description_facilitator: null,
197
+ id_images_especialist: null,
198
+ id_images_facilitator: null,
199
+ id_auditor: null,
200
+ id_recepcionist: null,
201
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
202
+ missingAttributes: 0,
203
+ missingDescriptions: 0,
204
+ missingImages: 0
205
+ },
206
+ retailers: [{
207
+ id: 58,
208
+ name: "The Home Depot Golden"
209
+ }, {
210
+ id: 59,
211
+ name: "The Home Depot Platinum"
212
+ }, {
213
+ id: 60,
214
+ name: "The Home Depot Resizing"
215
+ }, {
216
+ id: 61,
217
+ name: "Home Depot TAB"
218
+ }, {
219
+ id: 68,
220
+ name: "The Home Depot Dropship"
221
+ }],
222
+ country: "México",
223
+ upc: "39494022"
224
+ }, {
225
+ services: {
226
+ datasheets: 1,
227
+ descriptions: 1,
228
+ images: 1
229
+ },
230
+ orderId: 15269,
231
+ status: "PA",
232
+ datasheet_status: "PA",
233
+ prio: "none",
234
+ version: 3,
235
+ description_status: "PA",
236
+ images_status: "PA",
237
+ statusByRetailer: {
238
+ 68: {
239
+ description: "PA",
240
+ images: "PA",
241
+ datasheet: "PA"
242
+ }
243
+ },
244
+ article: {
245
+ id_article: 39471,
246
+ id_category: "2301",
247
+ name: "Test DPS 1",
248
+ upc: "323123",
249
+ timestamp: "2023-07-03T18:12:42.000Z",
250
+ id_user: 272,
251
+ status: "NULL",
252
+ active: 1,
253
+ company_id: 306,
254
+ company_name: "GRUPO BRAHMA",
255
+ country: "México",
256
+ id_order: 15269,
257
+ id_datasheet_especialist: null,
258
+ id_datasheet_facilitator: null,
259
+ id_description_especialist: null,
260
+ id_description_facilitator: null,
261
+ id_images_especialist: null,
262
+ id_images_facilitator: null,
263
+ id_auditor: null,
264
+ id_recepcionist: null,
265
+ category: "Pisos|Adhesivos y Boquillas|Adhesivos",
266
+ missingAttributes: 0,
267
+ missingDescriptions: 0,
268
+ missingImages: 0
269
+ },
270
+ retailers: [{
271
+ id: 58,
272
+ name: "The Home Depot Golden"
273
+ }, {
274
+ id: 59,
275
+ name: "The Home Depot Platinum"
276
+ }, {
277
+ id: 60,
278
+ name: "The Home Depot Resizing"
279
+ }, {
280
+ id: 61,
281
+ name: "Home Depot TAB"
282
+ }, {
283
+ id: 68,
284
+ name: "The Home Depot Dropship"
285
+ }],
286
+ country: "México",
287
+ upc: "323123"
288
+ }, {
289
+ services: {
290
+ datasheets: 1,
291
+ descriptions: 1,
292
+ images: 1
293
+ },
294
+ orderId: 15269,
295
+ status: "PA",
296
+ datasheet_status: "PA",
297
+ prio: "none",
298
+ version: 3,
299
+ description_status: "PA",
300
+ images_status: "PA",
301
+ statusByRetailer: {
302
+ 68: {
303
+ datasheet: "PA",
304
+ description: "PA",
305
+ images: "PA"
306
+ }
307
+ },
308
+ article: {
309
+ id_article: 39472,
310
+ id_category: "2334",
311
+ name: "Test DPS 2",
312
+ upc: "756453",
313
+ timestamp: "2023-07-03T18:12:42.000Z",
314
+ id_user: 272,
315
+ status: "NULL",
316
+ active: 1,
317
+ company_id: 311,
318
+ company_name: "GRUPO BRAHMA",
319
+ country: "México",
320
+ id_order: 15269,
321
+ id_datasheet_especialist: null,
322
+ id_datasheet_facilitator: null,
323
+ id_description_especialist: null,
324
+ id_description_facilitator: null,
325
+ id_images_especialist: null,
326
+ id_images_facilitator: null,
327
+ id_auditor: null,
328
+ id_recepcionist: null,
329
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
330
+ missingAttributes: 0,
331
+ missingDescriptions: 0,
332
+ missingImages: 0
333
+ },
334
+ retailers: [{
335
+ id: 58,
336
+ name: "The Home Depot Golden"
337
+ }, {
338
+ id: 59,
339
+ name: "The Home Depot Platinum"
340
+ }, {
341
+ id: 60,
342
+ name: "The Home Depot Resizing"
343
+ }, {
344
+ id: 61,
345
+ name: "Home Depot TAB"
346
+ }, {
347
+ id: 68,
348
+ name: "The Home Depot Dropship"
349
+ }],
350
+ country: "México",
351
+ upc: "756453"
352
+ }, {
353
+ services: {
354
+ datasheets: 1,
355
+ descriptions: 1,
356
+ images: 1
357
+ },
358
+ orderId: 15269,
359
+ status: "PA",
360
+ datasheet_status: "PA",
361
+ prio: "none",
362
+ version: 3,
363
+ description_status: "PA",
364
+ images_status: "PA",
365
+ statusByRetailer: {
366
+ 68: {
367
+ datasheet: "PA",
368
+ description: "PA",
369
+ images: "PA"
370
+ }
371
+ },
372
+ article: {
373
+ id_article: 39473,
374
+ id_category: "2560",
375
+ name: "Test DPS 3",
376
+ upc: "805034503",
377
+ timestamp: "2023-07-03T18:12:42.000Z",
378
+ id_user: 272,
379
+ status: "NULL",
380
+ active: 1,
381
+ company_id: 322,
382
+ company_name: "GRUPO BRAHMA",
383
+ country: "México",
384
+ id_order: 15269,
385
+ id_datasheet_especialist: null,
386
+ id_datasheet_facilitator: null,
387
+ id_description_especialist: null,
388
+ id_description_facilitator: null,
389
+ id_images_especialist: null,
390
+ id_images_facilitator: null,
391
+ id_auditor: null,
392
+ id_recepcionist: null,
393
+ category: "Puertas y Ventanas|Paneles Decorativos|Paneles Decorativos",
394
+ missingAttributes: 0,
395
+ missingDescriptions: 0,
396
+ missingImages: 0
397
+ },
398
+ retailers: [{
399
+ id: 58,
400
+ name: "The Home Depot Golden"
401
+ }, {
402
+ id: 59,
403
+ name: "The Home Depot Platinum"
404
+ }, {
405
+ id: 60,
406
+ name: "The Home Depot Resizing"
407
+ }, {
408
+ id: 61,
409
+ name: "Home Depot TAB"
410
+ }, {
411
+ id: 68,
412
+ name: "The Home Depot Dropship"
413
+ }],
414
+ country: "México",
415
+ upc: "805034503"
416
+ }, {
417
+ services: {
418
+ datasheets: 1,
419
+ descriptions: 1,
420
+ images: 1
421
+ },
422
+ orderId: 15268,
423
+ status: "CA",
424
+ datasheet_status: "CA",
425
+ prio: "none",
426
+ version: 5,
427
+ description_status: "CA",
428
+ images_status: "CA",
429
+ statusByRetailer: {
430
+ 9: {
431
+ datasheet: "CA",
432
+ description: "CA",
433
+ images: "CA"
434
+ }
435
+ },
436
+ article: {
437
+ id_article: 39470,
438
+ id_category: "684",
439
+ name: "Pasta Dental Freska-ra Fortident 132 g",
440
+ upc: "7501035911062",
441
+ timestamp: "2023-06-29T01:05:37.000Z",
442
+ id_user: 28,
443
+ status: "NULL",
444
+ active: 1,
445
+ company_id: 1,
446
+ company_name: "GRUPO BRAHMA",
447
+ country: "México",
448
+ id_order: 15268,
449
+ id_datasheet_especialist: 54,
450
+ id_datasheet_facilitator: 52,
451
+ id_description_especialist: 54,
452
+ id_description_facilitator: 52,
453
+ id_images_especialist: 55,
454
+ id_images_facilitator: 53,
455
+ id_auditor: 37,
456
+ id_recepcionist: null,
457
+ category: "Salud y Belleza|Cuidado Bucal|Pastas Dentales y Aseo Bucal",
458
+ missingAttributes: 0,
459
+ missingDescriptions: 0,
460
+ missingImages: 0
461
+ },
462
+ retailers: [{
463
+ id: 2,
464
+ name: "Walmart Mercancías Generales"
465
+ }, {
466
+ id: 6,
467
+ name: "HEB"
468
+ }, {
469
+ id: 9,
470
+ name: "Amazon"
471
+ }],
472
+ country: "México",
473
+ upc: "7501035911062"
474
+ }, {
475
+ services: {
476
+ datasheets: 1,
477
+ descriptions: 1,
478
+ images: 1
479
+ },
480
+ orderId: 15267,
481
+ status: "CA",
482
+ datasheet_status: "CA",
483
+ prio: "none",
484
+ version: 3,
485
+ description_status: "CA",
486
+ images_status: "CA",
487
+ statusByRetailer: {
488
+ 2: {
489
+ images: "AC",
490
+ datasheet: "CA",
491
+ description: "CA"
492
+ },
493
+ 6: {
494
+ datasheet: "AC",
495
+ description: "AC",
496
+ images: "CA"
497
+ }
498
+ },
499
+ article: {
500
+ id_article: 39470,
501
+ id_category: "684",
502
+ name: "Pasta Dental Freska-ra Fortident 132 g",
503
+ upc: "7501035911062",
504
+ timestamp: "2023-06-29T01:05:37.000Z",
505
+ id_user: 28,
506
+ status: "NULL",
507
+ active: 1,
508
+ company_id: 1,
509
+ company_name: "GRUPO BRAHMA",
510
+ country: "México",
511
+ id_order: 15267,
512
+ id_datasheet_especialist: 54,
513
+ id_datasheet_facilitator: 52,
514
+ id_description_especialist: 54,
515
+ id_description_facilitator: 52,
516
+ id_images_especialist: 55,
517
+ id_images_facilitator: 53,
518
+ id_auditor: 37,
519
+ id_recepcionist: null,
520
+ category: "Salud y Belleza|Cuidado Bucal|Pastas Dentales y Aseo Bucal",
521
+ missingAttributes: 0,
522
+ missingDescriptions: 0,
523
+ missingImages: 0
524
+ },
525
+ retailers: [{
526
+ id: 2,
527
+ name: "Walmart Mercancías Generales"
528
+ }, {
529
+ id: 6,
530
+ name: "HEB"
531
+ }],
532
+ country: "México",
533
+ upc: "7501035911062"
534
+ }, {
535
+ services: {
536
+ datasheets: 0,
537
+ descriptions: 0,
538
+ images: 1
539
+ },
540
+ orderId: 15256,
541
+ status: "PA",
542
+ datasheet_status: "NS",
543
+ prio: "none",
544
+ version: 3,
545
+ description_status: "NS",
546
+ images_status: "PA",
547
+ statusByRetailer: {
548
+ 60: {
549
+ images: "PA"
550
+ }
551
+ },
552
+ article: {
553
+ id_article: 39459,
554
+ id_category: "2999",
555
+ name: "prod 1 test 220623",
556
+ upc: "24234234234",
557
+ timestamp: "2023-06-22T22:54:29.000Z",
558
+ id_user: 269,
559
+ status: "NULL",
560
+ active: 1,
561
+ company_id: 819,
562
+ company_name: "GRUPO BRAHMA",
563
+ country: "México",
564
+ id_order: 15256,
565
+ id_datasheet_especialist: null,
566
+ id_datasheet_facilitator: null,
567
+ id_description_especialist: null,
568
+ id_description_facilitator: null,
569
+ id_images_especialist: null,
570
+ id_images_facilitator: null,
571
+ id_auditor: null,
572
+ id_recepcionist: null,
573
+ category: "Resizing|Resizing|Resizing",
574
+ missingAttributes: 0,
575
+ missingDescriptions: 0,
576
+ missingImages: 0
577
+ },
578
+ retailers: [{
579
+ id: 60,
580
+ name: "The Home Depot Resizing"
581
+ }],
582
+ country: "México",
583
+ upc: "24234234234"
584
+ }, {
585
+ services: {
586
+ datasheets: 1,
587
+ descriptions: 1,
588
+ images: 1
589
+ },
590
+ orderId: 15255,
591
+ status: "AA",
592
+ datasheet_status: "AA",
593
+ prio: "none",
594
+ version: 3,
595
+ description_status: "AA",
596
+ images_status: "AA",
597
+ statusByRetailer: {
598
+ 72: {
599
+ description: "AA",
600
+ images: "AA",
601
+ datasheet: "AA"
602
+ }
603
+ },
604
+ article: {
605
+ id_article: 39431,
606
+ id_category: "684",
607
+ name: "prod 1 STB",
608
+ upc: "23131212323",
609
+ timestamp: "2023-06-01T15:38:34.000Z",
610
+ id_user: 28,
611
+ status: "NULL",
612
+ active: 1,
613
+ company_id: 1,
614
+ company_name: "GRUPO BRAHMA",
615
+ country: "México",
616
+ id_order: 15255,
617
+ id_datasheet_especialist: 54,
618
+ id_datasheet_facilitator: 52,
619
+ id_description_especialist: 54,
620
+ id_description_facilitator: 52,
621
+ id_images_especialist: 55,
622
+ id_images_facilitator: 53,
623
+ id_auditor: 37,
624
+ id_recepcionist: null,
625
+ category: "Salud y Belleza|Cuidado Bucal|Pastas Dentales y Aseo Bucal",
626
+ missingAttributes: 0,
627
+ missingDescriptions: 0,
628
+ missingImages: 0
629
+ },
630
+ retailers: [{
631
+ id: 72,
632
+ name: "Stibo"
633
+ }],
634
+ country: "México",
635
+ upc: "23131212323"
636
+ }, {
637
+ services: {
638
+ datasheets: 1,
639
+ descriptions: 1,
640
+ images: 1
641
+ },
642
+ orderId: 15255,
643
+ status: "AA",
644
+ datasheet_status: "AA",
645
+ prio: "none",
646
+ version: 3,
647
+ description_status: "AA",
648
+ images_status: "AA",
649
+ statusByRetailer: {
650
+ 72: {
651
+ datasheet: "AA",
652
+ description: "AA",
653
+ images: "AA"
654
+ }
655
+ },
656
+ article: {
657
+ id_article: 39432,
658
+ id_category: "157",
659
+ name: "prod 2 STB",
660
+ upc: "54523324231",
661
+ timestamp: "2023-06-01T15:38:34.000Z",
662
+ id_user: 28,
663
+ status: "NULL",
664
+ active: 1,
665
+ company_id: 1,
666
+ company_name: "GRUPO BRAHMA",
667
+ country: "México",
668
+ id_order: 15255,
669
+ id_datasheet_especialist: 54,
670
+ id_datasheet_facilitator: 52,
671
+ id_description_especialist: 54,
672
+ id_description_facilitator: 52,
673
+ id_images_especialist: 55,
674
+ id_images_facilitator: 53,
675
+ id_auditor: 37,
676
+ id_recepcionist: null,
677
+ category: "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
678
+ missingAttributes: 0,
679
+ missingDescriptions: 0,
680
+ missingImages: 0
681
+ },
682
+ retailers: [{
683
+ id: 72,
684
+ name: "Stibo"
685
+ }],
686
+ country: "México",
687
+ upc: "54523324231"
688
+ }, {
689
+ services: {
690
+ datasheets: 1,
691
+ descriptions: 1,
692
+ images: 1
693
+ },
694
+ orderId: 15254,
695
+ status: "Ex",
696
+ datasheet_status: "Ex",
697
+ prio: "none",
698
+ version: 15,
699
+ description_status: "Ex",
700
+ images_status: "Ex",
701
+ statusByRetailer: {
702
+ 70: {
703
+ images: "Ex",
704
+ datasheet: "Ex",
705
+ description: "Ex"
706
+ }
707
+ },
708
+ article: {
709
+ id_article: 38443,
710
+ id_category: "4319",
711
+ name: "Im Polvo Compacto Natural 2",
712
+ upc: "7501611823017",
713
+ timestamp: "2023-03-15T05:54:54.000Z",
714
+ id_user: 133,
715
+ status: "Ex",
716
+ active: 1,
717
+ company_id: 912,
718
+ company_name: "GRUPO BRAHMA",
719
+ country: "México",
720
+ id_order: 15254,
721
+ id_datasheet_especialist: 1841,
722
+ id_datasheet_facilitator: null,
723
+ id_description_especialist: 509,
724
+ id_description_facilitator: null,
725
+ id_images_especialist: 289,
726
+ id_images_facilitator: 160,
727
+ id_auditor: 493,
728
+ id_recepcionist: null,
729
+ category: "Salud y Belleza|Cosméticos|Cosméticos",
730
+ missingAttributes: 0,
731
+ missingDescriptions: 0,
732
+ missingImages: 0
733
+ },
734
+ retailers: [{
735
+ id: 70,
736
+ name: "Bodega Aurrera"
737
+ }],
738
+ country: "México",
739
+ upc: "7501611823017"
740
+ }, {
741
+ services: {
742
+ datasheets: 1,
743
+ descriptions: 1,
744
+ images: 1
745
+ },
746
+ orderId: 15254,
747
+ status: "Ex",
748
+ datasheet_status: "Ex",
749
+ prio: "none",
750
+ version: 15,
751
+ description_status: "Ex",
752
+ images_status: "Ex",
753
+ statusByRetailer: {
754
+ 70: {
755
+ datasheet: "Ex",
756
+ description: "Ex",
757
+ images: "Ex"
758
+ }
759
+ },
760
+ article: {
761
+ id_article: 38444,
762
+ id_category: "4319",
763
+ name: "Maq Facial Con Agua De Coco Claro",
764
+ upc: "7501611817269",
765
+ timestamp: "2023-03-15T05:54:54.000Z",
766
+ id_user: 133,
767
+ status: "Ex",
768
+ active: 1,
769
+ company_id: 912,
770
+ company_name: "GRUPO BRAHMA",
771
+ country: "México",
772
+ id_order: 15254,
773
+ id_datasheet_especialist: 1841,
774
+ id_datasheet_facilitator: null,
775
+ id_description_especialist: 509,
776
+ id_description_facilitator: null,
777
+ id_images_especialist: 289,
778
+ id_images_facilitator: 160,
779
+ id_auditor: 493,
780
+ id_recepcionist: null,
781
+ category: "Salud y Belleza|Cosméticos|Cosméticos",
782
+ missingAttributes: 0,
783
+ missingDescriptions: 0,
784
+ missingImages: 0
785
+ },
786
+ retailers: [{
787
+ id: 70,
788
+ name: "Bodega Aurrera"
789
+ }],
790
+ country: "México",
791
+ upc: "7501611817269"
792
+ }, {
793
+ services: {
794
+ datasheets: 1,
795
+ descriptions: 1,
796
+ images: 1
797
+ },
798
+ orderId: 15254,
799
+ status: "Ex",
800
+ datasheet_status: "Ex",
801
+ prio: "none",
802
+ version: 15,
803
+ description_status: "Ex",
804
+ images_status: "Ex",
805
+ statusByRetailer: {
806
+ 70: {
807
+ datasheet: "Ex",
808
+ description: "Ex",
809
+ images: "Ex"
810
+ }
811
+ },
812
+ article: {
813
+ id_article: 38445,
814
+ id_category: "4319",
815
+ name: "Mascara Ultra Negro Kajal",
816
+ upc: "7501611821525",
817
+ timestamp: "2023-03-15T05:54:54.000Z",
818
+ id_user: 133,
819
+ status: "Ex",
820
+ active: 1,
821
+ company_id: 912,
822
+ company_name: "GRUPO BRAHMA",
823
+ country: "México",
824
+ id_order: 15254,
825
+ id_datasheet_especialist: 1841,
826
+ id_datasheet_facilitator: null,
827
+ id_description_especialist: 509,
828
+ id_description_facilitator: null,
829
+ id_images_especialist: 1253,
830
+ id_images_facilitator: 500,
831
+ id_auditor: 493,
832
+ id_recepcionist: null,
833
+ category: "Salud y Belleza|Cosméticos|Cosméticos",
834
+ missingAttributes: 0,
835
+ missingDescriptions: 0,
836
+ missingImages: 0
837
+ },
838
+ retailers: [{
839
+ id: 70,
840
+ name: "Bodega Aurrera"
841
+ }],
842
+ country: "México",
843
+ upc: "7501611821525"
844
+ }, {
845
+ services: {
846
+ datasheets: 1,
847
+ descriptions: 1,
848
+ images: 1
849
+ },
850
+ orderId: 15249,
851
+ status: "PA",
852
+ datasheet_status: "AS",
853
+ prio: "none",
854
+ version: 5,
855
+ description_status: "AS",
856
+ images_status: "PA",
857
+ statusByRetailer: {
858
+ 58: {
859
+ datasheet: "AS",
860
+ description: "AS",
861
+ images: "PA"
862
+ }
863
+ },
864
+ article: {
865
+ id_article: 39317,
866
+ id_category: "2575",
867
+ name: "COJÍN CUADRADO AZUL 45.7 X 45.7 X 13.9 CM DE POLIÉSTER",
868
+ upc: "170563",
869
+ timestamp: "2023-04-20T16:20:45.000Z",
870
+ id_user: 191,
871
+ status: "NULL",
872
+ active: 1,
873
+ company_id: 923,
874
+ company_name: "GRUPO BRAHMA",
875
+ country: "México",
876
+ id_order: 15249,
877
+ id_datasheet_especialist: 54,
878
+ id_datasheet_facilitator: 52,
879
+ id_description_especialist: 54,
880
+ id_description_facilitator: 52,
881
+ id_images_especialist: null,
882
+ id_images_facilitator: null,
883
+ id_auditor: null,
884
+ id_recepcionist: null,
885
+ category: "Jardín|Muebles de Jardín y Accesorios|Accesorios de Jardín",
886
+ missingAttributes: 0,
887
+ missingDescriptions: 0,
888
+ missingImages: 0
889
+ },
890
+ retailers: [{
891
+ id: 58,
892
+ name: "The Home Depot Golden"
893
+ }, {
894
+ id: 68,
895
+ name: "The Home Depot Dropship"
896
+ }],
897
+ country: "México",
898
+ upc: "170563"
899
+ }, {
900
+ services: {
901
+ datasheets: 1,
902
+ descriptions: 1,
903
+ images: 1
904
+ },
905
+ orderId: 15249,
906
+ status: "PA",
907
+ datasheet_status: "PA",
908
+ prio: "none",
909
+ version: 3,
910
+ description_status: "PA",
911
+ images_status: "PA",
912
+ statusByRetailer: {
913
+ 58: {
914
+ images: "PA",
915
+ datasheet: "PA",
916
+ description: "PA"
917
+ }
918
+ },
919
+ article: {
920
+ id_article: 39420,
921
+ id_category: "2020",
922
+ name: "test 1 masivo",
923
+ upc: "3211231",
924
+ timestamp: "2023-05-25T22:13:48.000Z",
925
+ id_user: 191,
926
+ status: "NULL",
927
+ active: 1,
928
+ company_id: 923,
929
+ company_name: "GRUPO BRAHMA",
930
+ country: "México",
931
+ id_order: 15249,
932
+ id_datasheet_especialist: null,
933
+ id_datasheet_facilitator: null,
934
+ id_description_especialist: null,
935
+ id_description_facilitator: null,
936
+ id_images_especialist: null,
937
+ id_images_facilitator: null,
938
+ id_auditor: null,
939
+ id_recepcionist: null,
940
+ category: "Baños|Sanitarios|Asientos para Sanitario",
941
+ missingAttributes: 0,
942
+ missingDescriptions: 0,
943
+ missingImages: 0
944
+ },
945
+ retailers: [{
946
+ id: 58,
947
+ name: "The Home Depot Golden"
948
+ }, {
949
+ id: 68,
950
+ name: "The Home Depot Dropship"
951
+ }],
952
+ country: "México",
953
+ upc: "3211231"
954
+ }, {
955
+ services: {
956
+ datasheets: 1,
957
+ descriptions: 1,
958
+ images: 1
959
+ },
960
+ orderId: 15249,
961
+ status: "PA",
962
+ datasheet_status: "PA",
963
+ prio: "none",
964
+ version: 3,
965
+ description_status: "PA",
966
+ images_status: "PA",
967
+ statusByRetailer: {
968
+ 58: {
969
+ datasheet: "PA",
970
+ description: "PA",
971
+ images: "PA"
972
+ }
973
+ },
974
+ article: {
975
+ id_article: 39422,
976
+ id_category: "2116",
977
+ name: "test 3 masivo",
978
+ upc: "1223311",
979
+ timestamp: "2023-05-25T22:13:48.000Z",
980
+ id_user: 191,
981
+ status: "NULL",
982
+ active: 1,
983
+ company_id: 923,
984
+ company_name: "GRUPO BRAHMA",
985
+ country: "México",
986
+ id_order: 15249,
987
+ id_datasheet_especialist: null,
988
+ id_datasheet_facilitator: null,
989
+ id_description_especialist: null,
990
+ id_description_facilitator: null,
991
+ id_images_especialist: null,
992
+ id_images_facilitator: null,
993
+ id_auditor: null,
994
+ id_recepcionist: null,
995
+ category: "Herramientas|Herramientas Eléctricas Portátiles|Lijadoras",
996
+ missingAttributes: 0,
997
+ missingDescriptions: 0,
998
+ missingImages: 0
999
+ },
1000
+ retailers: [{
1001
+ id: 58,
1002
+ name: "The Home Depot Golden"
1003
+ }, {
1004
+ id: 68,
1005
+ name: "The Home Depot Dropship"
1006
+ }],
1007
+ country: "México",
1008
+ upc: "1223311"
1009
+ }, {
1010
+ services: {
1011
+ datasheets: 1,
1012
+ descriptions: 1,
1013
+ images: 1
1014
+ },
1015
+ orderId: 15249,
1016
+ status: "PA",
1017
+ datasheet_status: "PA",
1018
+ prio: "none",
1019
+ version: 3,
1020
+ description_status: "PA",
1021
+ images_status: "PA",
1022
+ statusByRetailer: {
1023
+ 58: {
1024
+ datasheet: "PA",
1025
+ description: "PA",
1026
+ images: "PA"
1027
+ }
1028
+ },
1029
+ article: {
1030
+ id_article: 39423,
1031
+ id_category: "2570",
1032
+ name: "test 4 masivo",
1033
+ upc: "4545150",
1034
+ timestamp: "2023-05-25T22:13:48.000Z",
1035
+ id_user: 191,
1036
+ status: "NULL",
1037
+ active: 1,
1038
+ company_id: 923,
1039
+ company_name: "GRUPO BRAHMA",
1040
+ country: "México",
1041
+ id_order: 15249,
1042
+ id_datasheet_especialist: null,
1043
+ id_datasheet_facilitator: null,
1044
+ id_description_especialist: null,
1045
+ id_description_facilitator: null,
1046
+ id_images_especialist: null,
1047
+ id_images_facilitator: null,
1048
+ id_auditor: null,
1049
+ id_recepcionist: null,
1050
+ category: "Seguridad|Protección para Niños|Protección para Niños",
1051
+ missingAttributes: 0,
1052
+ missingDescriptions: 0,
1053
+ missingImages: 0
1054
+ },
1055
+ retailers: [{
1056
+ id: 58,
1057
+ name: "The Home Depot Golden"
1058
+ }, {
1059
+ id: 68,
1060
+ name: "The Home Depot Dropship"
1061
+ }],
1062
+ country: "México",
1063
+ upc: "4545150"
1064
+ }, {
1065
+ services: {
1066
+ datasheets: 1,
1067
+ descriptions: 1,
1068
+ images: 1
1069
+ },
1070
+ orderId: 15248,
1071
+ status: "PA",
1072
+ datasheet_status: "PA",
1073
+ prio: "none",
1074
+ version: 5,
1075
+ description_status: "PA",
1076
+ images_status: "PA",
1077
+ statusByRetailer: {
1078
+ 58: {
1079
+ datasheet: "PA",
1080
+ description: "PA",
1081
+ images: "PA"
1082
+ }
1083
+ },
1084
+ article: {
1085
+ id_article: 17162,
1086
+ id_category: "2028",
1087
+ name: "VELA AROMA 18 OZ MAN/CAN",
1088
+ upc: "102852",
1089
+ timestamp: "2023-02-24T18:17:37.000Z",
1090
+ id_user: 191,
1091
+ status: "NULL",
1092
+ active: 1,
1093
+ company_id: 923,
1094
+ company_name: "GRUPO BRAHMA",
1095
+ country: "México",
1096
+ id_order: 15248,
1097
+ id_datasheet_especialist: null,
1098
+ id_datasheet_facilitator: null,
1099
+ id_description_especialist: null,
1100
+ id_description_facilitator: null,
1101
+ id_images_especialist: null,
1102
+ id_images_facilitator: null,
1103
+ id_auditor: null,
1104
+ id_recepcionist: null,
1105
+ category: "Decoración|Accesorios Decorativos|Accesorios Decorativos",
1106
+ missingAttributes: 0,
1107
+ missingDescriptions: 0,
1108
+ missingImages: 0
1109
+ },
1110
+ retailers: [{
1111
+ id: 58,
1112
+ name: "The Home Depot Golden"
1113
+ }, {
1114
+ id: 68,
1115
+ name: "The Home Depot Dropship"
1116
+ }],
1117
+ country: "México",
1118
+ upc: "102852"
1119
+ }, {
1120
+ services: {
1121
+ datasheets: 1,
1122
+ descriptions: 1,
1123
+ images: 1
1124
+ },
1125
+ orderId: 15247,
1126
+ status: "CA",
1127
+ datasheet_status: "CA",
1128
+ prio: "none",
1129
+ version: 3,
1130
+ description_status: "AC",
1131
+ images_status: "AC",
1132
+ statusByRetailer: {
1133
+ 16: {
1134
+ datasheet: "CA",
1135
+ description: "AC",
1136
+ images: "AC"
1137
+ },
1138
+ 24: {
1139
+ images: "AC",
1140
+ description: "AC"
1141
+ }
1142
+ },
1143
+ article: {
1144
+ id_article: 39415,
1145
+ id_category: "684",
1146
+ name: "crema dental 90 gr",
1147
+ upc: "231231231",
1148
+ timestamp: "2023-05-24T01:56:01.000Z",
1149
+ id_user: 28,
1150
+ status: "NULL",
1151
+ active: 1,
1152
+ company_id: 1,
1153
+ company_name: "GRUPO BRAHMA",
1154
+ country: "México",
1155
+ id_order: 15247,
1156
+ id_datasheet_especialist: 54,
1157
+ id_datasheet_facilitator: 52,
1158
+ id_description_especialist: 54,
1159
+ id_description_facilitator: 52,
1160
+ id_images_especialist: 55,
1161
+ id_images_facilitator: 53,
1162
+ id_auditor: 37,
1163
+ id_recepcionist: null,
1164
+ category: "Salud y Belleza|Cuidado Bucal|Pastas Dentales y Aseo Bucal",
1165
+ missingAttributes: 0,
1166
+ missingDescriptions: 0,
1167
+ missingImages: 0
1168
+ },
1169
+ retailers: [{
1170
+ id: 16,
1171
+ name: "Rappi"
1172
+ }, {
1173
+ id: 24,
1174
+ name: "Alsuper"
1175
+ }],
1176
+ country: "México",
1177
+ upc: "231231231"
1178
+ }, {
1179
+ services: {
1180
+ datasheets: 1,
1181
+ descriptions: 1,
1182
+ images: 1
1183
+ },
1184
+ orderId: 15247,
1185
+ status: "RA",
1186
+ datasheet_status: "AC",
1187
+ prio: "none",
1188
+ version: 3,
1189
+ description_status: "RA",
1190
+ images_status: "AC",
1191
+ statusByRetailer: {
1192
+ 16: {
1193
+ datasheet: "AC",
1194
+ description: "RA/AS",
1195
+ images: "AC"
1196
+ },
1197
+ 24: {
1198
+ datasheet: "AC",
1199
+ description: "AC",
1200
+ images: "AC"
1201
+ }
1202
+ },
1203
+ article: {
1204
+ id_article: 39416,
1205
+ id_category: "697",
1206
+ name: "Shampoo anticaída ",
1207
+ upc: "25458116",
1208
+ timestamp: "2023-05-24T01:56:01.000Z",
1209
+ id_user: 28,
1210
+ status: "NULL",
1211
+ active: 1,
1212
+ company_id: 1,
1213
+ company_name: "GRUPO BRAHMA",
1214
+ country: "México",
1215
+ id_order: 15247,
1216
+ id_datasheet_especialist: 54,
1217
+ id_datasheet_facilitator: 52,
1218
+ id_description_especialist: 54,
1219
+ id_description_facilitator: 52,
1220
+ id_images_especialist: 55,
1221
+ id_images_facilitator: 53,
1222
+ id_auditor: 37,
1223
+ id_recepcionist: null,
1224
+ category: "Salud y Belleza|Cuidado del Cabello|Shampoos y Acondicionadores",
1225
+ missingAttributes: 0,
1226
+ missingDescriptions: 0,
1227
+ missingImages: 0
1228
+ },
1229
+ retailers: [{
1230
+ id: 16,
1231
+ name: "Rappi"
1232
+ }, {
1233
+ id: 24,
1234
+ name: "Alsuper"
1235
+ }],
1236
+ country: "México",
1237
+ upc: "25458116"
1238
+ }, {
1239
+ services: {
1240
+ datasheets: 1,
1241
+ descriptions: 1,
1242
+ images: 1
1243
+ },
1244
+ orderId: 15247,
1245
+ status: "AC",
1246
+ datasheet_status: "AC",
1247
+ prio: "none",
1248
+ version: 3,
1249
+ description_status: "AC",
1250
+ images_status: "AC",
1251
+ statusByRetailer: {
1252
+ 16: {
1253
+ description: "AC",
1254
+ images: "AC",
1255
+ datasheet: "AC"
1256
+ },
1257
+ 24: {
1258
+ datasheet: "AC",
1259
+ description: "AC",
1260
+ images: "AC"
1261
+ }
1262
+ },
1263
+ article: {
1264
+ id_article: 39417,
1265
+ id_category: "165",
1266
+ name: "Suavizantes para tela",
1267
+ upc: "54342342",
1268
+ timestamp: "2023-05-24T01:56:01.000Z",
1269
+ id_user: 28,
1270
+ status: "NULL",
1271
+ active: 1,
1272
+ company_id: 1,
1273
+ company_name: "GRUPO BRAHMA",
1274
+ country: "México",
1275
+ id_order: 15247,
1276
+ id_datasheet_especialist: 54,
1277
+ id_datasheet_facilitator: 52,
1278
+ id_description_especialist: 54,
1279
+ id_description_facilitator: 52,
1280
+ id_images_especialist: 55,
1281
+ id_images_facilitator: 53,
1282
+ id_auditor: 37,
1283
+ id_recepcionist: null,
1284
+ category: "Consumibles|Productos de Limpieza y Lavandería|Suavizantes",
1285
+ missingAttributes: 0,
1286
+ missingDescriptions: 0,
1287
+ missingImages: 0
1288
+ },
1289
+ retailers: [{
1290
+ id: 16,
1291
+ name: "Rappi"
1292
+ }, {
1293
+ id: 24,
1294
+ name: "Alsuper"
1295
+ }],
1296
+ country: "México",
1297
+ upc: "54342342"
1298
+ }, {
1299
+ services: {
1300
+ datasheets: 1,
1301
+ descriptions: 1,
1302
+ images: 1
1303
+ },
1304
+ orderId: 15247,
1305
+ status: "AC",
1306
+ datasheet_status: "AC",
1307
+ prio: "none",
1308
+ version: 3,
1309
+ description_status: "AC",
1310
+ images_status: "AC",
1311
+ statusByRetailer: {
1312
+ 16: {
1313
+ datasheet: "AC",
1314
+ description: "AC",
1315
+ images: "AC"
1316
+ }
1317
+ },
1318
+ article: {
1319
+ id_article: 39418,
1320
+ id_category: "112",
1321
+ name: "Pañales etapa 2",
1322
+ upc: "48481516",
1323
+ timestamp: "2023-05-24T01:56:01.000Z",
1324
+ id_user: 28,
1325
+ status: "NULL",
1326
+ active: 1,
1327
+ company_id: 1,
1328
+ company_name: "GRUPO BRAHMA",
1329
+ country: "México",
1330
+ id_order: 15247,
1331
+ id_datasheet_especialist: 54,
1332
+ id_datasheet_facilitator: 52,
1333
+ id_description_especialist: 54,
1334
+ id_description_facilitator: 52,
1335
+ id_images_especialist: 55,
1336
+ id_images_facilitator: 53,
1337
+ id_auditor: 37,
1338
+ id_recepcionist: null,
1339
+ category: "Bebés|Pañales|Pañales",
1340
+ missingAttributes: 0,
1341
+ missingDescriptions: 0,
1342
+ missingImages: 0
1343
+ },
1344
+ retailers: [{
1345
+ id: 16,
1346
+ name: "Rappi"
1347
+ }],
1348
+ country: "México",
1349
+ upc: "48481516"
1350
+ }, {
1351
+ services: {
1352
+ datasheets: 1,
1353
+ descriptions: 1,
1354
+ images: 1
1355
+ },
1356
+ orderId: 15247,
1357
+ status: "AC",
1358
+ datasheet_status: "AC",
1359
+ prio: "none",
1360
+ version: 3,
1361
+ description_status: "AC",
1362
+ images_status: "AC",
1363
+ statusByRetailer: {
1364
+ 16: {
1365
+ datasheet: "AC",
1366
+ description: "AC",
1367
+ images: "AC"
1368
+ },
1369
+ 24: {
1370
+ datasheet: "AC",
1371
+ description: "AC",
1372
+ images: "AC"
1373
+ }
1374
+ },
1375
+ article: {
1376
+ id_article: 39419,
1377
+ id_category: "153",
1378
+ name: "Lavatrastes axion",
1379
+ upc: "284961",
1380
+ timestamp: "2023-05-24T01:56:01.000Z",
1381
+ id_user: 28,
1382
+ status: "NULL",
1383
+ active: 1,
1384
+ company_id: 1,
1385
+ company_name: "GRUPO BRAHMA",
1386
+ country: "México",
1387
+ id_order: 15247,
1388
+ id_datasheet_especialist: 54,
1389
+ id_datasheet_facilitator: 52,
1390
+ id_description_especialist: 54,
1391
+ id_description_facilitator: 52,
1392
+ id_images_especialist: 55,
1393
+ id_images_facilitator: 53,
1394
+ id_auditor: 37,
1395
+ id_recepcionist: null,
1396
+ category: "Consumibles|Productos de Limpieza y Lavandería|Detergentes",
1397
+ missingAttributes: 0,
1398
+ missingDescriptions: 0,
1399
+ missingImages: 0
1400
+ },
1401
+ retailers: [{
1402
+ id: 16,
1403
+ name: "Rappi"
1404
+ }, {
1405
+ id: 24,
1406
+ name: "Alsuper"
1407
+ }],
1408
+ country: "México",
1409
+ upc: "284961"
1410
+ }, {
1411
+ services: {
1412
+ datasheets: 1,
1413
+ descriptions: 1,
1414
+ images: 1
1415
+ },
1416
+ orderId: 15246,
1417
+ status: "RA",
1418
+ datasheet_status: "RA",
1419
+ prio: "none",
1420
+ version: 3,
1421
+ description_status: "AA",
1422
+ images_status: "RA",
1423
+ statusByRetailer: {
1424
+ 58: {
1425
+ images: "RA/AS",
1426
+ datasheet: "RA/AS",
1427
+ description: "AA"
1428
+ }
1429
+ },
1430
+ article: {
1431
+ id_article: 39410,
1432
+ id_category: "3046",
1433
+ name: "prueba thd 1",
1434
+ upc: "3234234",
1435
+ timestamp: "2023-05-22T17:37:39.000Z",
1436
+ id_user: 28,
1437
+ status: "NULL",
1438
+ active: 1,
1439
+ company_id: 1,
1440
+ company_name: "GRUPO BRAHMA",
1441
+ country: "México",
1442
+ id_order: 15246,
1443
+ id_datasheet_especialist: 54,
1444
+ id_datasheet_facilitator: 52,
1445
+ id_description_especialist: 54,
1446
+ id_description_facilitator: 52,
1447
+ id_images_especialist: 55,
1448
+ id_images_facilitator: 53,
1449
+ id_auditor: 37,
1450
+ id_recepcionist: null,
1451
+ category: "Cocina|Baterías de cocina y sartenes|Sartenes",
1452
+ missingAttributes: 0,
1453
+ missingDescriptions: 0,
1454
+ missingImages: 0
1455
+ },
1456
+ retailers: [{
1457
+ id: 58,
1458
+ name: "The Home Depot Golden"
1459
+ }],
1460
+ country: "México",
1461
+ upc: "3234234"
1462
+ }, {
1463
+ services: {
1464
+ datasheets: 1,
1465
+ descriptions: 1,
1466
+ images: 1
1467
+ },
1468
+ orderId: 15246,
1469
+ status: "AA",
1470
+ datasheet_status: "AA",
1471
+ prio: "none",
1472
+ version: 3,
1473
+ description_status: "AA",
1474
+ images_status: "AA",
1475
+ statusByRetailer: {
1476
+ 58: {
1477
+ datasheet: "AA",
1478
+ description: "AA",
1479
+ images: "AA"
1480
+ }
1481
+ },
1482
+ article: {
1483
+ id_article: 39411,
1484
+ id_category: "3054",
1485
+ name: "prueba thd 2",
1486
+ upc: "4846156121",
1487
+ timestamp: "2023-05-22T17:37:39.000Z",
1488
+ id_user: 28,
1489
+ status: "NULL",
1490
+ active: 1,
1491
+ company_id: 1,
1492
+ company_name: "GRUPO BRAHMA",
1493
+ country: "México",
1494
+ id_order: 15246,
1495
+ id_datasheet_especialist: 54,
1496
+ id_datasheet_facilitator: 52,
1497
+ id_description_especialist: 54,
1498
+ id_description_facilitator: 52,
1499
+ id_images_especialist: 55,
1500
+ id_images_facilitator: 53,
1501
+ id_auditor: 37,
1502
+ id_recepcionist: null,
1503
+ category: "Muebles|Muebles para recámara|Burós",
1504
+ missingAttributes: 0,
1505
+ missingDescriptions: 0,
1506
+ missingImages: 0
1507
+ },
1508
+ retailers: [{
1509
+ id: 58,
1510
+ name: "The Home Depot Golden"
1511
+ }],
1512
+ country: "México",
1513
+ upc: "4846156121"
1514
+ }, {
1515
+ services: {
1516
+ datasheets: 1,
1517
+ descriptions: 1,
1518
+ images: 1
1519
+ },
1520
+ orderId: 15246,
1521
+ status: "AA",
1522
+ datasheet_status: "AA",
1523
+ prio: "none",
1524
+ version: 3,
1525
+ description_status: "AA",
1526
+ images_status: "AA",
1527
+ statusByRetailer: {
1528
+ 58: {
1529
+ datasheet: "AA",
1530
+ description: "AA",
1531
+ images: "AA"
1532
+ }
1533
+ },
1534
+ article: {
1535
+ id_article: 39412,
1536
+ id_category: "3058",
1537
+ name: "prueba thd 3",
1538
+ upc: "5435345345",
1539
+ timestamp: "2023-05-22T17:37:39.000Z",
1540
+ id_user: 28,
1541
+ status: "NULL",
1542
+ active: 1,
1543
+ company_id: 1,
1544
+ company_name: "GRUPO BRAHMA",
1545
+ country: "México",
1546
+ id_order: 15246,
1547
+ id_datasheet_especialist: 54,
1548
+ id_datasheet_facilitator: 52,
1549
+ id_description_especialist: 54,
1550
+ id_description_facilitator: 52,
1551
+ id_images_especialist: 55,
1552
+ id_images_facilitator: 53,
1553
+ id_auditor: 37,
1554
+ id_recepcionist: null,
1555
+ category: "Decoración y hogar|Blancos|Frazadas",
1556
+ missingAttributes: 0,
1557
+ missingDescriptions: 0,
1558
+ missingImages: 0
1559
+ },
1560
+ retailers: [{
1561
+ id: 58,
1562
+ name: "The Home Depot Golden"
1563
+ }],
1564
+ country: "México",
1565
+ upc: "5435345345"
1566
+ }, {
1567
+ services: {
1568
+ datasheets: 1,
1569
+ descriptions: 1,
1570
+ images: 1
1571
+ },
1572
+ orderId: 15246,
1573
+ status: "AA",
1574
+ datasheet_status: "AA",
1575
+ prio: "none",
1576
+ version: 3,
1577
+ description_status: "AA",
1578
+ images_status: "AA",
1579
+ statusByRetailer: {
1580
+ 58: {
1581
+ description: "AA",
1582
+ images: "AA",
1583
+ datasheet: "AA"
1584
+ }
1585
+ },
1586
+ article: {
1587
+ id_article: 39413,
1588
+ id_category: "3067",
1589
+ name: "prueba thd 4",
1590
+ upc: "64543423234",
1591
+ timestamp: "2023-05-22T17:37:39.000Z",
1592
+ id_user: 28,
1593
+ status: "NULL",
1594
+ active: 1,
1595
+ company_id: 1,
1596
+ company_name: "GRUPO BRAHMA",
1597
+ country: "México",
1598
+ id_order: 15246,
1599
+ id_datasheet_especialist: 54,
1600
+ id_datasheet_facilitator: 52,
1601
+ id_description_especialist: 54,
1602
+ id_description_facilitator: 52,
1603
+ id_images_especialist: 55,
1604
+ id_images_facilitator: 53,
1605
+ id_auditor: 37,
1606
+ id_recepcionist: null,
1607
+ category: "Organizadores y Closets|Repisas|Repisas",
1608
+ missingAttributes: 0,
1609
+ missingDescriptions: 0,
1610
+ missingImages: 0
1611
+ },
1612
+ retailers: [{
1613
+ id: 58,
1614
+ name: "The Home Depot Golden"
1615
+ }],
1616
+ country: "México",
1617
+ upc: "64543423234"
1618
+ }, {
1619
+ services: {
1620
+ datasheets: 1,
1621
+ descriptions: 1,
1622
+ images: 1
1623
+ },
1624
+ orderId: 15246,
1625
+ status: "AA",
1626
+ datasheet_status: "AA",
1627
+ prio: "none",
1628
+ version: 3,
1629
+ description_status: "AA",
1630
+ images_status: "AA",
1631
+ statusByRetailer: {
1632
+ 58: {
1633
+ datasheet: "AA",
1634
+ description: "AA",
1635
+ images: "AA"
1636
+ }
1637
+ },
1638
+ article: {
1639
+ id_article: 39414,
1640
+ id_category: "3053",
1641
+ name: "prueba thd 5",
1642
+ upc: "12342342342",
1643
+ timestamp: "2023-05-22T17:37:39.000Z",
1644
+ id_user: 28,
1645
+ status: "NULL",
1646
+ active: 1,
1647
+ company_id: 1,
1648
+ company_name: "GRUPO BRAHMA",
1649
+ country: "México",
1650
+ id_order: 15246,
1651
+ id_datasheet_especialist: 54,
1652
+ id_datasheet_facilitator: 52,
1653
+ id_description_especialist: 54,
1654
+ id_description_facilitator: 52,
1655
+ id_images_especialist: 55,
1656
+ id_images_facilitator: 53,
1657
+ id_auditor: 37,
1658
+ id_recepcionist: null,
1659
+ category: "Iluminación|Lámparas|Lámparas de escritorio",
1660
+ missingAttributes: 0,
1661
+ missingDescriptions: 0,
1662
+ missingImages: 0
1663
+ },
1664
+ retailers: [{
1665
+ id: 58,
1666
+ name: "The Home Depot Golden"
1667
+ }],
1668
+ country: "México",
1669
+ upc: "12342342342"
1670
+ }, {
1671
+ services: {
1672
+ datasheets: 1,
1673
+ descriptions: 1,
1674
+ images: 1
1675
+ },
1676
+ orderId: 15244,
1677
+ status: "AA",
1678
+ datasheet_status: "AA",
1679
+ prio: "none",
1680
+ version: 3,
1681
+ description_status: "AA",
1682
+ images_status: "AA",
1683
+ statusByRetailer: {
1684
+ 72: {
1685
+ datasheet: "AA",
1686
+ description: "AA",
1687
+ images: "AA"
1688
+ }
1689
+ },
1690
+ article: {
1691
+ id_article: 39405,
1692
+ id_category: "684",
1693
+ name: "prueba 1 STB",
1694
+ upc: "765323233423",
1695
+ timestamp: "2023-05-22T15:40:58.000Z",
1696
+ id_user: 28,
1697
+ status: "NULL",
1698
+ active: 1,
1699
+ company_id: 1,
1700
+ company_name: "GRUPO BRAHMA",
1701
+ country: "México",
1702
+ id_order: 15244,
1703
+ id_datasheet_especialist: 54,
1704
+ id_datasheet_facilitator: 52,
1705
+ id_description_especialist: 54,
1706
+ id_description_facilitator: 52,
1707
+ id_images_especialist: 55,
1708
+ id_images_facilitator: 53,
1709
+ id_auditor: 37,
1710
+ id_recepcionist: null,
1711
+ category: "Salud y Belleza|Cuidado Bucal|Pastas Dentales y Aseo Bucal",
1712
+ missingAttributes: 0,
1713
+ missingDescriptions: 0,
1714
+ missingImages: 0
1715
+ },
1716
+ retailers: [{
1717
+ id: 72,
1718
+ name: "Stibo"
1719
+ }],
1720
+ country: "México",
1721
+ upc: "765323233423"
1722
+ }, {
1723
+ services: {
1724
+ datasheets: 1,
1725
+ descriptions: 1,
1726
+ images: 1
1727
+ },
1728
+ orderId: 15244,
1729
+ status: "AC",
1730
+ datasheet_status: "AC",
1731
+ prio: "none",
1732
+ version: 3,
1733
+ description_status: "AC",
1734
+ images_status: "AC",
1735
+ statusByRetailer: {
1736
+ 72: {
1737
+ datasheet: "AC",
1738
+ description: "AC",
1739
+ images: "AC"
1740
+ }
1741
+ },
1742
+ article: {
1743
+ id_article: 39406,
1744
+ id_category: "100",
1745
+ name: "prueba 2 STB",
1746
+ upc: "1541123213",
1747
+ timestamp: "2023-05-22T15:40:58.000Z",
1748
+ id_user: 28,
1749
+ status: "NULL",
1750
+ active: 1,
1751
+ company_id: 1,
1752
+ company_name: "GRUPO BRAHMA",
1753
+ country: "México",
1754
+ id_order: 15244,
1755
+ id_datasheet_especialist: 54,
1756
+ id_datasheet_facilitator: 52,
1757
+ id_description_especialist: 54,
1758
+ id_description_facilitator: 52,
1759
+ id_images_especialist: 55,
1760
+ id_images_facilitator: 53,
1761
+ id_auditor: 37,
1762
+ id_recepcionist: null,
1763
+ category: "Bebés|Higiene y Cuidado del Bebé|Toallitas",
1764
+ missingAttributes: 0,
1765
+ missingDescriptions: 0,
1766
+ missingImages: 0
1767
+ },
1768
+ retailers: [{
1769
+ id: 72,
1770
+ name: "Stibo"
1771
+ }],
1772
+ country: "México",
1773
+ upc: "1541123213"
1774
+ }, {
1775
+ services: {
1776
+ datasheets: 1,
1777
+ descriptions: 1,
1778
+ images: 1
1779
+ },
1780
+ orderId: 15244,
1781
+ status: "AA",
1782
+ datasheet_status: "AA",
1783
+ prio: "none",
1784
+ version: 3,
1785
+ description_status: "AA",
1786
+ images_status: "AA",
1787
+ statusByRetailer: {
1788
+ 72: {
1789
+ datasheet: "AA",
1790
+ description: "AA",
1791
+ images: "AA"
1792
+ }
1793
+ },
1794
+ article: {
1795
+ id_article: 39407,
1796
+ id_category: "153",
1797
+ name: "prueba 3 STB",
1798
+ upc: "4523123123",
1799
+ timestamp: "2023-05-22T15:40:58.000Z",
1800
+ id_user: 28,
1801
+ status: "NULL",
1802
+ active: 1,
1803
+ company_id: 1,
1804
+ company_name: "GRUPO BRAHMA",
1805
+ country: "México",
1806
+ id_order: 15244,
1807
+ id_datasheet_especialist: 54,
1808
+ id_datasheet_facilitator: 52,
1809
+ id_description_especialist: 54,
1810
+ id_description_facilitator: 52,
1811
+ id_images_especialist: 55,
1812
+ id_images_facilitator: 53,
1813
+ id_auditor: 37,
1814
+ id_recepcionist: null,
1815
+ category: "Consumibles|Productos de Limpieza y Lavandería|Detergentes",
1816
+ missingAttributes: 0,
1817
+ missingDescriptions: 0,
1818
+ missingImages: 0
1819
+ },
1820
+ retailers: [{
1821
+ id: 72,
1822
+ name: "Stibo"
1823
+ }],
1824
+ country: "México",
1825
+ upc: "4523123123"
1826
+ }, {
1827
+ services: {
1828
+ datasheets: 1,
1829
+ descriptions: 1,
1830
+ images: 1
1831
+ },
1832
+ orderId: 15243,
1833
+ status: "AA",
1834
+ datasheet_status: "AA",
1835
+ prio: "none",
1836
+ version: 7,
1837
+ description_status: "AA",
1838
+ images_status: "AA",
1839
+ statusByRetailer: {
1840
+ 3: {
1841
+ datasheet: "AA",
1842
+ description: "AA",
1843
+ images: "AA"
1844
+ },
1845
+ 4: {
1846
+ description: "AA",
1847
+ images: "AA",
1848
+ datasheet: "AA"
1849
+ },
1850
+ 5: {
1851
+ datasheet: "AA",
1852
+ description: "AA",
1853
+ images: "AA"
1854
+ },
1855
+ 6: {
1856
+ datasheet: "AA",
1857
+ description: "AA",
1858
+ images: "AA"
1859
+ },
1860
+ 13: {
1861
+ datasheet: "AA",
1862
+ description: "AA",
1863
+ images: "AA"
1864
+ }
1865
+ },
1866
+ article: {
1867
+ id_article: 109,
1868
+ id_category: "6",
1869
+ name: "JAVON PALMOLIVE NATURAL",
1870
+ upc: "7509546676203",
1871
+ timestamp: "2022-11-15T15:37:53.000Z",
1872
+ id_user: 70,
1873
+ status: "NULL",
1874
+ active: 1,
1875
+ company_id: 810,
1876
+ company_name: "GRUPO BRAHMA",
1877
+ country: "México",
1878
+ id_order: 15243,
1879
+ id_datasheet_especialist: 54,
1880
+ id_datasheet_facilitator: null,
1881
+ id_description_especialist: 54,
1882
+ id_description_facilitator: 52,
1883
+ id_images_especialist: 55,
1884
+ id_images_facilitator: null,
1885
+ id_auditor: 37,
1886
+ id_recepcionist: null,
1887
+ category: "Abarrotes|Abarrotes Secos|Azúcar, Endulzantes y Sustitutos",
1888
+ missingAttributes: 0,
1889
+ missingDescriptions: 0,
1890
+ missingImages: 0
1891
+ },
1892
+ retailers: [{
1893
+ id: 3,
1894
+ name: "Sam´s Club"
1895
+ }, {
1896
+ id: 4,
1897
+ name: "Walmart Super y Superama"
1898
+ }, {
1899
+ id: 5,
1900
+ name: "Chedraui"
1901
+ }, {
1902
+ id: 6,
1903
+ name: "HEB"
1904
+ }, {
1905
+ id: 13,
1906
+ name: "Soriana"
1907
+ }],
1908
+ country: "México",
1909
+ upc: "7509546676203"
1910
+ }, {
1911
+ services: {
1912
+ datasheets: 1,
1913
+ descriptions: 1,
1914
+ images: 1
1915
+ },
1916
+ orderId: 15242,
1917
+ status: "PA",
1918
+ datasheet_status: "PA",
1919
+ prio: "none",
1920
+ version: 12,
1921
+ description_status: "PA",
1922
+ images_status: "PA",
1923
+ statusByRetailer: {
1924
+ 6: {
1925
+ datasheet: "PA",
1926
+ description: "PA",
1927
+ images: "PA"
1928
+ },
1929
+ 43: {
1930
+ images: "PA",
1931
+ datasheet: "PA",
1932
+ description: "PA"
1933
+ },
1934
+ 58: {
1935
+ datasheet: "PA",
1936
+ description: "PA",
1937
+ images: "PA"
1938
+ }
1939
+ },
1940
+ article: {
1941
+ id_article: 2,
1942
+ id_category: "2066",
1943
+ name: "Version con THD",
1944
+ upc: "1642",
1945
+ timestamp: "2022-11-13T00:23:23.000Z",
1946
+ id_user: 70,
1947
+ status: "NULL",
1948
+ active: 1,
1949
+ company_id: 810,
1950
+ company_name: "GRUPO BRAHMA",
1951
+ country: "México",
1952
+ id_order: 15242,
1953
+ id_datasheet_especialist: null,
1954
+ id_datasheet_facilitator: null,
1955
+ id_description_especialist: null,
1956
+ id_description_facilitator: null,
1957
+ id_images_especialist: null,
1958
+ id_images_facilitator: null,
1959
+ id_auditor: null,
1960
+ id_recepcionist: null,
1961
+ category: "Ferretería|Abrepuertas Automáticos|Equipos",
1962
+ missingAttributes: 0,
1963
+ missingDescriptions: 0,
1964
+ missingImages: 0
1965
+ },
1966
+ retailers: [{
1967
+ id: 5,
1968
+ name: "Chedraui"
1969
+ }, {
1970
+ id: 6,
1971
+ name: "HEB"
1972
+ }, {
1973
+ id: 9,
1974
+ name: "Amazon"
1975
+ }, {
1976
+ id: 18,
1977
+ name: "Google"
1978
+ }, {
1979
+ id: 43,
1980
+ name: "City Club"
1981
+ }, {
1982
+ id: 44,
1983
+ name: "Calimax"
1984
+ }, {
1985
+ id: 45,
1986
+ name: "Casa Ley"
1987
+ }, {
1988
+ id: 56,
1989
+ name: "JOKR"
1990
+ }, {
1991
+ id: 58,
1992
+ name: "The Home Depot Golden"
1993
+ }],
1994
+ country: "México",
1995
+ upc: "1642"
1996
+ }, {
1997
+ services: {
1998
+ datasheets: 1,
1999
+ descriptions: 1,
2000
+ images: 1
2001
+ },
2002
+ orderId: 15240,
2003
+ status: "PA",
2004
+ datasheet_status: "PA",
2005
+ prio: "none",
2006
+ version: 15,
2007
+ description_status: "PA",
2008
+ images_status: "PA",
2009
+ statusByRetailer: {
2010
+ 58: {
2011
+ datasheet: "PA",
2012
+ description: "PA",
2013
+ images: "PA"
2014
+ },
2015
+ 59: {
2016
+ images: "PA"
2017
+ }
2018
+ },
2019
+ article: {
2020
+ id_article: 39395,
2021
+ id_category: "2334",
2022
+ name: "Validando cuentas",
2023
+ upc: "94872",
2024
+ timestamp: "2023-05-17T15:22:37.000Z",
2025
+ id_user: 70,
2026
+ status: "NULL",
2027
+ active: 1,
2028
+ company_id: 810,
2029
+ company_name: "GRUPO BRAHMA",
2030
+ country: "México",
2031
+ id_order: 15240,
2032
+ id_datasheet_especialist: null,
2033
+ id_datasheet_facilitator: null,
2034
+ id_description_especialist: null,
2035
+ id_description_facilitator: null,
2036
+ id_images_especialist: null,
2037
+ id_images_facilitator: null,
2038
+ id_auditor: null,
2039
+ id_recepcionist: null,
2040
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2041
+ missingAttributes: 0,
2042
+ missingDescriptions: 0,
2043
+ missingImages: 0
2044
+ },
2045
+ retailers: [{
2046
+ id: 58,
2047
+ name: "The Home Depot Golden"
2048
+ }, {
2049
+ id: 59,
2050
+ name: "The Home Depot Platinum"
2051
+ }],
2052
+ country: "México",
2053
+ upc: "94872"
2054
+ }, {
2055
+ services: {
2056
+ datasheets: 0,
2057
+ descriptions: 0,
2058
+ images: 1
2059
+ },
2060
+ orderId: 15240,
2061
+ status: "PA",
2062
+ datasheet_status: "NS",
2063
+ prio: "none",
2064
+ version: 15,
2065
+ description_status: "NS",
2066
+ images_status: "PA",
2067
+ statusByRetailer: {
2068
+ 59: {
2069
+ images: "PA"
2070
+ }
2071
+ },
2072
+ article: {
2073
+ id_article: 39396,
2074
+ id_category: "2004",
2075
+ name: "Validando cuenta dos",
2076
+ upc: "93827276",
2077
+ timestamp: "2023-05-17T15:22:37.000Z",
2078
+ id_user: 70,
2079
+ status: "NULL",
2080
+ active: 1,
2081
+ company_id: 810,
2082
+ company_name: "GRUPO BRAHMA",
2083
+ country: "México",
2084
+ id_order: 15240,
2085
+ id_datasheet_especialist: null,
2086
+ id_datasheet_facilitator: null,
2087
+ id_description_especialist: null,
2088
+ id_description_facilitator: null,
2089
+ id_images_especialist: null,
2090
+ id_images_facilitator: null,
2091
+ id_auditor: null,
2092
+ id_recepcionist: null,
2093
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
2094
+ missingAttributes: 0,
2095
+ missingDescriptions: 0,
2096
+ missingImages: 0
2097
+ },
2098
+ retailers: [{
2099
+ id: 59,
2100
+ name: "The Home Depot Platinum"
2101
+ }],
2102
+ country: "México",
2103
+ upc: "93827276"
2104
+ }, {
2105
+ services: {
2106
+ datasheets: 1,
2107
+ descriptions: 1,
2108
+ images: 1
2109
+ },
2110
+ orderId: 15239,
2111
+ status: "PA",
2112
+ datasheet_status: "PA",
2113
+ prio: "none",
2114
+ version: 13,
2115
+ description_status: "PA",
2116
+ images_status: "PA",
2117
+ statusByRetailer: {
2118
+ 58: {
2119
+ datasheet: "PA",
2120
+ description: "PA",
2121
+ images: "PA"
2122
+ },
2123
+ 59: {
2124
+ images: "PA"
2125
+ }
2126
+ },
2127
+ article: {
2128
+ id_article: 39395,
2129
+ id_category: "2334",
2130
+ name: "Validando cuentas",
2131
+ upc: "94872",
2132
+ timestamp: "2023-05-17T15:22:37.000Z",
2133
+ id_user: 70,
2134
+ status: "NULL",
2135
+ active: 1,
2136
+ company_id: 810,
2137
+ company_name: "GRUPO BRAHMA",
2138
+ country: "México",
2139
+ id_order: 15239,
2140
+ id_datasheet_especialist: null,
2141
+ id_datasheet_facilitator: null,
2142
+ id_description_especialist: null,
2143
+ id_description_facilitator: null,
2144
+ id_images_especialist: null,
2145
+ id_images_facilitator: null,
2146
+ id_auditor: null,
2147
+ id_recepcionist: null,
2148
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2149
+ missingAttributes: 0,
2150
+ missingDescriptions: 0,
2151
+ missingImages: 0
2152
+ },
2153
+ retailers: [{
2154
+ id: 58,
2155
+ name: "The Home Depot Golden"
2156
+ }, {
2157
+ id: 59,
2158
+ name: "The Home Depot Platinum"
2159
+ }],
2160
+ country: "México",
2161
+ upc: "94872"
2162
+ }, {
2163
+ services: {
2164
+ datasheets: 0,
2165
+ descriptions: 0,
2166
+ images: 1
2167
+ },
2168
+ orderId: 15239,
2169
+ status: "PA",
2170
+ datasheet_status: "NS",
2171
+ prio: "none",
2172
+ version: 13,
2173
+ description_status: "NS",
2174
+ images_status: "PA",
2175
+ statusByRetailer: {
2176
+ 59: {
2177
+ images: "PA"
2178
+ }
2179
+ },
2180
+ article: {
2181
+ id_article: 39396,
2182
+ id_category: "2004",
2183
+ name: "Validando cuenta dos",
2184
+ upc: "93827276",
2185
+ timestamp: "2023-05-17T15:22:37.000Z",
2186
+ id_user: 70,
2187
+ status: "NULL",
2188
+ active: 1,
2189
+ company_id: 810,
2190
+ company_name: "GRUPO BRAHMA",
2191
+ country: "México",
2192
+ id_order: 15239,
2193
+ id_datasheet_especialist: null,
2194
+ id_datasheet_facilitator: null,
2195
+ id_description_especialist: null,
2196
+ id_description_facilitator: null,
2197
+ id_images_especialist: null,
2198
+ id_images_facilitator: null,
2199
+ id_auditor: null,
2200
+ id_recepcionist: null,
2201
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
2202
+ missingAttributes: 0,
2203
+ missingDescriptions: 0,
2204
+ missingImages: 0
2205
+ },
2206
+ retailers: [{
2207
+ id: 59,
2208
+ name: "The Home Depot Platinum"
2209
+ }],
2210
+ country: "México",
2211
+ upc: "93827276"
2212
+ }, {
2213
+ services: {
2214
+ datasheets: 1,
2215
+ descriptions: 1,
2216
+ images: 1
2217
+ },
2218
+ orderId: 15237,
2219
+ status: "PA",
2220
+ datasheet_status: "PA",
2221
+ prio: "none",
2222
+ version: 11,
2223
+ description_status: "PA",
2224
+ images_status: "PA",
2225
+ statusByRetailer: {
2226
+ 58: {
2227
+ datasheet: "PA",
2228
+ description: "PA",
2229
+ images: "PA"
2230
+ },
2231
+ 59: {
2232
+ images: "PA"
2233
+ }
2234
+ },
2235
+ article: {
2236
+ id_article: 39395,
2237
+ id_category: "2334",
2238
+ name: "Validando cuentas",
2239
+ upc: "94872",
2240
+ timestamp: "2023-05-17T15:22:37.000Z",
2241
+ id_user: 70,
2242
+ status: "NULL",
2243
+ active: 1,
2244
+ company_id: 810,
2245
+ company_name: "GRUPO BRAHMA",
2246
+ country: "México",
2247
+ id_order: 15237,
2248
+ id_datasheet_especialist: null,
2249
+ id_datasheet_facilitator: null,
2250
+ id_description_especialist: null,
2251
+ id_description_facilitator: null,
2252
+ id_images_especialist: null,
2253
+ id_images_facilitator: null,
2254
+ id_auditor: null,
2255
+ id_recepcionist: null,
2256
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2257
+ missingAttributes: 0,
2258
+ missingDescriptions: 0,
2259
+ missingImages: 0
2260
+ },
2261
+ retailers: [{
2262
+ id: 58,
2263
+ name: "The Home Depot Golden"
2264
+ }, {
2265
+ id: 59,
2266
+ name: "The Home Depot Platinum"
2267
+ }],
2268
+ country: "México",
2269
+ upc: "94872"
2270
+ }, {
2271
+ services: {
2272
+ datasheets: 0,
2273
+ descriptions: 0,
2274
+ images: 1
2275
+ },
2276
+ orderId: 15237,
2277
+ status: "PA",
2278
+ datasheet_status: "NS",
2279
+ prio: "none",
2280
+ version: 11,
2281
+ description_status: "NS",
2282
+ images_status: "PA",
2283
+ statusByRetailer: {
2284
+ 59: {
2285
+ images: "PA"
2286
+ }
2287
+ },
2288
+ article: {
2289
+ id_article: 39396,
2290
+ id_category: "2004",
2291
+ name: "Validando cuenta dos",
2292
+ upc: "93827276",
2293
+ timestamp: "2023-05-17T15:22:37.000Z",
2294
+ id_user: 70,
2295
+ status: "NULL",
2296
+ active: 1,
2297
+ company_id: 810,
2298
+ company_name: "GRUPO BRAHMA",
2299
+ country: "México",
2300
+ id_order: 15237,
2301
+ id_datasheet_especialist: null,
2302
+ id_datasheet_facilitator: null,
2303
+ id_description_especialist: null,
2304
+ id_description_facilitator: null,
2305
+ id_images_especialist: null,
2306
+ id_images_facilitator: null,
2307
+ id_auditor: null,
2308
+ id_recepcionist: null,
2309
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
2310
+ missingAttributes: 0,
2311
+ missingDescriptions: 0,
2312
+ missingImages: 0
2313
+ },
2314
+ retailers: [{
2315
+ id: 59,
2316
+ name: "The Home Depot Platinum"
2317
+ }],
2318
+ country: "México",
2319
+ upc: "93827276"
2320
+ }, {
2321
+ services: {
2322
+ datasheets: 1,
2323
+ descriptions: 1,
2324
+ images: 1
2325
+ },
2326
+ orderId: 15236,
2327
+ status: "PA",
2328
+ datasheet_status: "PA",
2329
+ prio: "none",
2330
+ version: 9,
2331
+ description_status: "PA",
2332
+ images_status: "PA",
2333
+ statusByRetailer: {
2334
+ 58: {
2335
+ datasheet: "PA",
2336
+ description: "PA"
2337
+ },
2338
+ 59: {
2339
+ images: "PA"
2340
+ }
2341
+ },
2342
+ article: {
2343
+ id_article: 39395,
2344
+ id_category: "2334",
2345
+ name: "Validando cuentas",
2346
+ upc: "94872",
2347
+ timestamp: "2023-05-17T15:22:37.000Z",
2348
+ id_user: 70,
2349
+ status: "NULL",
2350
+ active: 1,
2351
+ company_id: 810,
2352
+ company_name: "GRUPO BRAHMA",
2353
+ country: "México",
2354
+ id_order: 15236,
2355
+ id_datasheet_especialist: null,
2356
+ id_datasheet_facilitator: null,
2357
+ id_description_especialist: null,
2358
+ id_description_facilitator: null,
2359
+ id_images_especialist: null,
2360
+ id_images_facilitator: null,
2361
+ id_auditor: null,
2362
+ id_recepcionist: null,
2363
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2364
+ missingAttributes: 0,
2365
+ missingDescriptions: 0,
2366
+ missingImages: 0
2367
+ },
2368
+ retailers: [{
2369
+ id: 58,
2370
+ name: "The Home Depot Golden"
2371
+ }, {
2372
+ id: 59,
2373
+ name: "The Home Depot Platinum"
2374
+ }],
2375
+ country: "México",
2376
+ upc: "94872"
2377
+ }, {
2378
+ services: {
2379
+ datasheets: 0,
2380
+ descriptions: 0,
2381
+ images: 1
2382
+ },
2383
+ orderId: 15236,
2384
+ status: "PA",
2385
+ datasheet_status: "NS",
2386
+ prio: "none",
2387
+ version: 9,
2388
+ description_status: "NS",
2389
+ images_status: "PA",
2390
+ statusByRetailer: {
2391
+ 59: {
2392
+ images: "PA"
2393
+ }
2394
+ },
2395
+ article: {
2396
+ id_article: 39396,
2397
+ id_category: "2004",
2398
+ name: "Validando cuenta dos",
2399
+ upc: "93827276",
2400
+ timestamp: "2023-05-17T15:22:37.000Z",
2401
+ id_user: 70,
2402
+ status: "NULL",
2403
+ active: 1,
2404
+ company_id: 810,
2405
+ company_name: "GRUPO BRAHMA",
2406
+ country: "México",
2407
+ id_order: 15236,
2408
+ id_datasheet_especialist: null,
2409
+ id_datasheet_facilitator: null,
2410
+ id_description_especialist: null,
2411
+ id_description_facilitator: null,
2412
+ id_images_especialist: null,
2413
+ id_images_facilitator: null,
2414
+ id_auditor: null,
2415
+ id_recepcionist: null,
2416
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
2417
+ missingAttributes: 0,
2418
+ missingDescriptions: 0,
2419
+ missingImages: 0
2420
+ },
2421
+ retailers: [{
2422
+ id: 59,
2423
+ name: "The Home Depot Platinum"
2424
+ }],
2425
+ country: "México",
2426
+ upc: "93827276"
2427
+ }, {
2428
+ services: {
2429
+ datasheets: 1,
2430
+ descriptions: 1,
2431
+ images: 1
2432
+ },
2433
+ orderId: 15235,
2434
+ status: "PA",
2435
+ datasheet_status: "PA",
2436
+ prio: "none",
2437
+ version: 7,
2438
+ description_status: "PA",
2439
+ images_status: "PA",
2440
+ statusByRetailer: {
2441
+ 58: {
2442
+ datasheet: "PA",
2443
+ description: "PA",
2444
+ images: "PA"
2445
+ },
2446
+ 59: {}
2447
+ },
2448
+ article: {
2449
+ id_article: 39395,
2450
+ id_category: "2334",
2451
+ name: "Validando cuentas",
2452
+ upc: "94872",
2453
+ timestamp: "2023-05-17T15:22:37.000Z",
2454
+ id_user: 70,
2455
+ status: "NULL",
2456
+ active: 1,
2457
+ company_id: 810,
2458
+ company_name: "GRUPO BRAHMA",
2459
+ country: "México",
2460
+ id_order: 15235,
2461
+ id_datasheet_especialist: null,
2462
+ id_datasheet_facilitator: null,
2463
+ id_description_especialist: null,
2464
+ id_description_facilitator: null,
2465
+ id_images_especialist: null,
2466
+ id_images_facilitator: null,
2467
+ id_auditor: null,
2468
+ id_recepcionist: null,
2469
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2470
+ missingAttributes: 0,
2471
+ missingDescriptions: 0,
2472
+ missingImages: 0
2473
+ },
2474
+ retailers: [{
2475
+ id: 58,
2476
+ name: "The Home Depot Golden"
2477
+ }, {
2478
+ id: 59,
2479
+ name: "The Home Depot Platinum"
2480
+ }],
2481
+ country: "México",
2482
+ upc: "94872"
2483
+ }, {
2484
+ services: {
2485
+ datasheets: 0,
2486
+ descriptions: 0,
2487
+ images: 1
2488
+ },
2489
+ orderId: 15235,
2490
+ status: "PA",
2491
+ datasheet_status: "NS",
2492
+ prio: "none",
2493
+ version: 7,
2494
+ description_status: "NS",
2495
+ images_status: "PA",
2496
+ statusByRetailer: {
2497
+ 59: {
2498
+ images: "PA"
2499
+ }
2500
+ },
2501
+ article: {
2502
+ id_article: 39396,
2503
+ id_category: "2004",
2504
+ name: "Validando cuenta dos",
2505
+ upc: "93827276",
2506
+ timestamp: "2023-05-17T15:22:37.000Z",
2507
+ id_user: 70,
2508
+ status: "NULL",
2509
+ active: 1,
2510
+ company_id: 810,
2511
+ company_name: "GRUPO BRAHMA",
2512
+ country: "México",
2513
+ id_order: 15235,
2514
+ id_datasheet_especialist: null,
2515
+ id_datasheet_facilitator: null,
2516
+ id_description_especialist: null,
2517
+ id_description_facilitator: null,
2518
+ id_images_especialist: null,
2519
+ id_images_facilitator: null,
2520
+ id_auditor: null,
2521
+ id_recepcionist: null,
2522
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
2523
+ missingAttributes: 0,
2524
+ missingDescriptions: 0,
2525
+ missingImages: 0
2526
+ },
2527
+ retailers: [{
2528
+ id: 59,
2529
+ name: "The Home Depot Platinum"
2530
+ }],
2531
+ country: "México",
2532
+ upc: "93827276"
2533
+ }, {
2534
+ services: {
2535
+ datasheets: 1,
2536
+ descriptions: 1,
2537
+ images: 1
2538
+ },
2539
+ orderId: 15234,
2540
+ status: "PA",
2541
+ datasheet_status: "PA",
2542
+ prio: "none",
2543
+ version: 5,
2544
+ description_status: "PA",
2545
+ images_status: "PA",
2546
+ statusByRetailer: {
2547
+ 58: {
2548
+ datasheet: "PA",
2549
+ description: "PA"
2550
+ },
2551
+ 59: {
2552
+ images: "PA"
2553
+ }
2554
+ },
2555
+ article: {
2556
+ id_article: 39395,
2557
+ id_category: "2334",
2558
+ name: "Validando cuentas",
2559
+ upc: "94872",
2560
+ timestamp: "2023-05-17T15:22:37.000Z",
2561
+ id_user: 70,
2562
+ status: "NULL",
2563
+ active: 1,
2564
+ company_id: 810,
2565
+ company_name: "GRUPO BRAHMA",
2566
+ country: "México",
2567
+ id_order: 15234,
2568
+ id_datasheet_especialist: null,
2569
+ id_datasheet_facilitator: null,
2570
+ id_description_especialist: null,
2571
+ id_description_facilitator: null,
2572
+ id_images_especialist: null,
2573
+ id_images_facilitator: null,
2574
+ id_auditor: null,
2575
+ id_recepcionist: null,
2576
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2577
+ missingAttributes: 0,
2578
+ missingDescriptions: 0,
2579
+ missingImages: 0
2580
+ },
2581
+ retailers: [{
2582
+ id: 58,
2583
+ name: "The Home Depot Golden"
2584
+ }, {
2585
+ id: 59,
2586
+ name: "The Home Depot Platinum"
2587
+ }],
2588
+ country: "México",
2589
+ upc: "94872"
2590
+ }, {
2591
+ services: {
2592
+ datasheets: 0,
2593
+ descriptions: 0,
2594
+ images: 1
2595
+ },
2596
+ orderId: 15234,
2597
+ status: "PA",
2598
+ datasheet_status: "NS",
2599
+ prio: "none",
2600
+ version: 5,
2601
+ description_status: "NS",
2602
+ images_status: "PA",
2603
+ statusByRetailer: {
2604
+ 59: {
2605
+ images: "PA"
2606
+ }
2607
+ },
2608
+ article: {
2609
+ id_article: 39396,
2610
+ id_category: "2004",
2611
+ name: "Validando cuenta dos",
2612
+ upc: "93827276",
2613
+ timestamp: "2023-05-17T15:22:37.000Z",
2614
+ id_user: 70,
2615
+ status: "NULL",
2616
+ active: 1,
2617
+ company_id: 810,
2618
+ company_name: "GRUPO BRAHMA",
2619
+ country: "México",
2620
+ id_order: 15234,
2621
+ id_datasheet_especialist: null,
2622
+ id_datasheet_facilitator: null,
2623
+ id_description_especialist: null,
2624
+ id_description_facilitator: null,
2625
+ id_images_especialist: null,
2626
+ id_images_facilitator: null,
2627
+ id_auditor: null,
2628
+ id_recepcionist: null,
2629
+ category: "Baños|Accesorios para Baño|Accesorios Individuales",
2630
+ missingAttributes: 0,
2631
+ missingDescriptions: 0,
2632
+ missingImages: 0
2633
+ },
2634
+ retailers: [{
2635
+ id: 59,
2636
+ name: "The Home Depot Platinum"
2637
+ }],
2638
+ country: "México",
2639
+ upc: "93827276"
2640
+ }, {
2641
+ services: {
2642
+ datasheets: 1,
2643
+ descriptions: 1,
2644
+ images: 1
2645
+ },
2646
+ orderId: 15231,
2647
+ status: "AP",
2648
+ datasheet_status: "AP",
2649
+ prio: "none",
2650
+ version: 3,
2651
+ description_status: "AP",
2652
+ images_status: "AP",
2653
+ statusByRetailer: {
2654
+ 70: {
2655
+ datasheet: "AP",
2656
+ description: "AP",
2657
+ images: "AP"
2658
+ }
2659
+ },
2660
+ article: {
2661
+ id_article: 39398,
2662
+ id_category: "4012",
2663
+ name: "BEBBYTO CHUPON 1 PZA",
2664
+ upc: "75017916079950",
2665
+ timestamp: "2023-05-17T22:51:38.000Z",
2666
+ id_user: 133,
2667
+ status: "NULL",
2668
+ active: 1,
2669
+ company_id: 912,
2670
+ company_name: "GRUPO BRAHMA",
2671
+ country: "México",
2672
+ id_order: 15231,
2673
+ id_datasheet_especialist: 232,
2674
+ id_datasheet_facilitator: 52,
2675
+ id_description_especialist: 232,
2676
+ id_description_facilitator: 52,
2677
+ id_images_especialist: 196,
2678
+ id_images_facilitator: 53,
2679
+ id_auditor: 195,
2680
+ id_recepcionist: null,
2681
+ category: "Accesorios de Bebés|Cuidado e Higiene Bebés|Cuidado e Higiene Bebés",
2682
+ missingAttributes: 0,
2683
+ missingDescriptions: 0,
2684
+ missingImages: 0
2685
+ },
2686
+ retailers: [{
2687
+ id: 70,
2688
+ name: "Bodega Aurrera"
2689
+ }],
2690
+ country: "México",
2691
+ upc: "75017916079950"
2692
+ }, {
2693
+ services: {
2694
+ datasheets: 1,
2695
+ descriptions: 1,
2696
+ images: 1
2697
+ },
2698
+ orderId: 15231,
2699
+ status: "AS",
2700
+ datasheet_status: "AS",
2701
+ prio: "none",
2702
+ version: 3,
2703
+ description_status: "AS",
2704
+ images_status: "AS",
2705
+ statusByRetailer: {
2706
+ 70: {
2707
+ description: "AS",
2708
+ images: "AS",
2709
+ datasheet: "AS"
2710
+ }
2711
+ },
2712
+ article: {
2713
+ id_article: 39399,
2714
+ id_category: "4004",
2715
+ name: "Aurrera Bebida Fresa 200ml ",
2716
+ upc: "75017916066080",
2717
+ timestamp: "2023-05-17T22:51:38.000Z",
2718
+ id_user: 133,
2719
+ status: "NULL",
2720
+ active: 1,
2721
+ company_id: 912,
2722
+ company_name: "GRUPO BRAHMA",
2723
+ country: "México",
2724
+ id_order: 15231,
2725
+ id_datasheet_especialist: 232,
2726
+ id_datasheet_facilitator: 52,
2727
+ id_description_especialist: 232,
2728
+ id_description_facilitator: 52,
2729
+ id_images_especialist: 196,
2730
+ id_images_facilitator: 53,
2731
+ id_auditor: 195,
2732
+ id_recepcionist: null,
2733
+ category: "Abarrotes Básicos|Abarrotes Básicos y Procesados|Abarrotes Básicos y Procesados",
2734
+ missingAttributes: 0,
2735
+ missingDescriptions: 0,
2736
+ missingImages: 0
2737
+ },
2738
+ retailers: [{
2739
+ id: 70,
2740
+ name: "Bodega Aurrera"
2741
+ }],
2742
+ country: "México",
2743
+ upc: "75017916066080"
2744
+ }, {
2745
+ services: {
2746
+ datasheets: 1,
2747
+ descriptions: 1,
2748
+ images: 1
2749
+ },
2750
+ orderId: 15231,
2751
+ status: "AS",
2752
+ datasheet_status: "AS",
2753
+ prio: "none",
2754
+ version: 3,
2755
+ description_status: "AS",
2756
+ images_status: "AS",
2757
+ statusByRetailer: {
2758
+ 70: {
2759
+ datasheet: "AS",
2760
+ description: "AS",
2761
+ images: "AS"
2762
+ }
2763
+ },
2764
+ article: {
2765
+ id_article: 39400,
2766
+ id_category: "4208",
2767
+ name: "BLOQUES INGENIERIA ",
2768
+ upc: "69280819718010",
2769
+ timestamp: "2023-05-17T22:51:38.000Z",
2770
+ id_user: 133,
2771
+ status: "NULL",
2772
+ active: 1,
2773
+ company_id: 912,
2774
+ company_name: "GRUPO BRAHMA",
2775
+ country: "México",
2776
+ id_order: 15231,
2777
+ id_datasheet_especialist: 232,
2778
+ id_datasheet_facilitator: 52,
2779
+ id_description_especialist: 232,
2780
+ id_description_facilitator: 52,
2781
+ id_images_especialist: 196,
2782
+ id_images_facilitator: 53,
2783
+ id_auditor: 195,
2784
+ id_recepcionist: null,
2785
+ category: "Juguetes|Juguetes|Juguetes",
2786
+ missingAttributes: 0,
2787
+ missingDescriptions: 0,
2788
+ missingImages: 0
2789
+ },
2790
+ retailers: [{
2791
+ id: 70,
2792
+ name: "Bodega Aurrera"
2793
+ }],
2794
+ country: "México",
2795
+ upc: "69280819718010"
2796
+ }, {
2797
+ services: {
2798
+ datasheets: 1,
2799
+ descriptions: 1,
2800
+ images: 1
2801
+ },
2802
+ orderId: 15229,
2803
+ status: "PA",
2804
+ datasheet_status: "PA",
2805
+ prio: "none",
2806
+ version: 3,
2807
+ description_status: "PA",
2808
+ images_status: "PA",
2809
+ statusByRetailer: {
2810
+ 58: {
2811
+ datasheet: "PA",
2812
+ description: "PA",
2813
+ images: "PA"
2814
+ },
2815
+ 59: {
2816
+ images: "PA"
2817
+ }
2818
+ },
2819
+ article: {
2820
+ id_article: 39395,
2821
+ id_category: "2334",
2822
+ name: "Validando cuentas",
2823
+ upc: "94872",
2824
+ timestamp: "2023-05-17T15:22:37.000Z",
2825
+ id_user: 70,
2826
+ status: "NULL",
2827
+ active: 1,
2828
+ company_id: 810,
2829
+ company_name: "GRUPO BRAHMA",
2830
+ country: "México",
2831
+ id_order: 15229,
2832
+ id_datasheet_especialist: null,
2833
+ id_datasheet_facilitator: null,
2834
+ id_description_especialist: null,
2835
+ id_description_facilitator: null,
2836
+ id_images_especialist: null,
2837
+ id_images_facilitator: null,
2838
+ id_auditor: null,
2839
+ id_recepcionist: null,
2840
+ category: "Plomería|Bombas y Equipo Hidroneumático|Accesorios para Bombas e Irrigación",
2841
+ missingAttributes: 0,
2842
+ missingDescriptions: 0,
2843
+ missingImages: 0
2844
+ },
2845
+ retailers: [{
2846
+ id: 58,
2847
+ name: "The Home Depot Golden"
2848
+ }, {
2849
+ id: 59,
2850
+ name: "The Home Depot Platinum"
2851
+ }],
2852
+ country: "México",
2853
+ upc: "94872"
2854
+ }];
2855
+ var images = {
2856
+ "2-3": [{
2857
+ id: 5,
2858
+ status: null,
2859
+ image_id: 1,
2860
+ packing_type: "2",
2861
+ image_type: "1",
2862
+ article_id: "2",
2863
+ src: "id-2/3/1-ec4d2017-12cf-40ed-9061-1967e5cac728.jpeg",
2864
+ timestamp: "2022-11-13T00:27:35.000Z",
2865
+ id_version: 3,
2866
+ width: 1200,
2867
+ height: 625,
2868
+ scene_type: null,
2869
+ image_shot_type: null,
2870
+ last_modified: "2023-06-05T23:49:49.000Z"
2871
+ }],
2872
+ "38443-3": [{
2873
+ id: 23704,
2874
+ status: null,
2875
+ image_id: 1,
2876
+ packing_type: "3",
2877
+ image_type: "1",
2878
+ article_id: "38443",
2879
+ src: "id-38443/3/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
2880
+ timestamp: "2023-03-15T06:31:07.000Z",
2881
+ id_version: 3,
2882
+ width: 1500,
2883
+ height: 1500,
2884
+ scene_type: null,
2885
+ image_shot_type: null,
2886
+ last_modified: "2023-06-05T23:49:49.000Z"
2887
+ }, {
2888
+ id: 23705,
2889
+ status: null,
2890
+ image_id: 3,
2891
+ packing_type: "3",
2892
+ image_type: "1",
2893
+ article_id: "38443",
2894
+ src: "id-38443/3/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
2895
+ timestamp: "2023-03-15T06:31:08.000Z",
2896
+ id_version: 3,
2897
+ width: 1500,
2898
+ height: 1500,
2899
+ scene_type: null,
2900
+ image_shot_type: null,
2901
+ last_modified: "2023-06-05T23:49:49.000Z"
2902
+ }, {
2903
+ id: 23706,
2904
+ status: null,
2905
+ image_id: 16,
2906
+ packing_type: "3",
2907
+ image_type: "1",
2908
+ article_id: "38443",
2909
+ src: "id-38443/3/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
2910
+ timestamp: "2023-03-15T06:31:09.000Z",
2911
+ id_version: 3,
2912
+ width: 1500,
2913
+ height: 1500,
2914
+ scene_type: null,
2915
+ image_shot_type: null,
2916
+ last_modified: "2023-06-05T23:49:49.000Z"
2917
+ }],
2918
+ "38444-3": [{
2919
+ id: 23707,
2920
+ status: null,
2921
+ image_id: 1,
2922
+ packing_type: "3",
2923
+ image_type: "1",
2924
+ article_id: "38444",
2925
+ src: "id-38444/3/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
2926
+ timestamp: "2023-03-15T06:31:09.000Z",
2927
+ id_version: 3,
2928
+ width: 1500,
2929
+ height: 1500,
2930
+ scene_type: null,
2931
+ image_shot_type: null,
2932
+ last_modified: "2023-06-05T23:49:49.000Z"
2933
+ }, {
2934
+ id: 23708,
2935
+ status: null,
2936
+ image_id: 3,
2937
+ packing_type: "3",
2938
+ image_type: "1",
2939
+ article_id: "38444",
2940
+ src: "id-38444/3/3-499ed708-8944-4271-aafa-ab88677d441a.png",
2941
+ timestamp: "2023-03-15T06:31:10.000Z",
2942
+ id_version: 3,
2943
+ width: 1500,
2944
+ height: 1500,
2945
+ scene_type: null,
2946
+ image_shot_type: null,
2947
+ last_modified: "2023-06-05T23:49:49.000Z"
2948
+ }, {
2949
+ id: 23709,
2950
+ status: null,
2951
+ image_id: 16,
2952
+ packing_type: "3",
2953
+ image_type: "1",
2954
+ article_id: "38444",
2955
+ src: "id-38444/3/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
2956
+ timestamp: "2023-03-15T06:31:10.000Z",
2957
+ id_version: 3,
2958
+ width: 1500,
2959
+ height: 1500,
2960
+ scene_type: null,
2961
+ image_shot_type: null,
2962
+ last_modified: "2023-06-05T23:49:49.000Z"
2963
+ }],
2964
+ "38445-3": [{
2965
+ id: 23710,
2966
+ status: null,
2967
+ image_id: 1,
2968
+ packing_type: "3",
2969
+ image_type: "1",
2970
+ article_id: "38445",
2971
+ src: "id-38445/3/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
2972
+ timestamp: "2023-03-15T06:31:10.000Z",
2973
+ id_version: 3,
2974
+ width: 1500,
2975
+ height: 1500,
2976
+ scene_type: null,
2977
+ image_shot_type: null,
2978
+ last_modified: "2023-06-05T23:49:49.000Z"
2979
+ }, {
2980
+ id: 23711,
2981
+ status: null,
2982
+ image_id: 3,
2983
+ packing_type: "3",
2984
+ image_type: "1",
2985
+ article_id: "38445",
2986
+ src: "id-38445/3/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
2987
+ timestamp: "2023-03-15T06:31:11.000Z",
2988
+ id_version: 3,
2989
+ width: 1500,
2990
+ height: 1500,
2991
+ scene_type: null,
2992
+ image_shot_type: null,
2993
+ last_modified: "2023-06-05T23:49:49.000Z"
2994
+ }, {
2995
+ id: 23712,
2996
+ status: null,
2997
+ image_id: 15,
2998
+ packing_type: "3",
2999
+ image_type: "1",
3000
+ article_id: "38445",
3001
+ src: "id-38445/3/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
3002
+ timestamp: "2023-03-15T06:31:11.000Z",
3003
+ id_version: 3,
3004
+ width: 1500,
3005
+ height: 1500,
3006
+ scene_type: null,
3007
+ image_shot_type: null,
3008
+ last_modified: "2023-06-05T23:49:49.000Z"
3009
+ }],
3010
+ "17162-3": [{
3011
+ id: 29408,
3012
+ status: null,
3013
+ image_id: 1,
3014
+ packing_type: "2",
3015
+ image_type: "1",
3016
+ article_id: "17162",
3017
+ src: "id-17162/3/1-118d8064-b130-42fd-bfd0-a996abe3221d.png",
3018
+ timestamp: "2023-04-20T16:24:41.000Z",
3019
+ id_version: 3,
3020
+ width: null,
3021
+ height: null,
3022
+ scene_type: null,
3023
+ image_shot_type: null,
3024
+ last_modified: "2023-06-05T23:49:49.000Z"
3025
+ }],
3026
+ "38443-5": [{
3027
+ id: 34947,
3028
+ status: null,
3029
+ image_id: 1,
3030
+ packing_type: "3",
3031
+ image_type: "1",
3032
+ article_id: "38443",
3033
+ src: "id-38443/5/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
3034
+ timestamp: "2023-04-24T07:01:36.000Z",
3035
+ id_version: 5,
3036
+ width: null,
3037
+ height: null,
3038
+ scene_type: null,
3039
+ image_shot_type: null,
3040
+ last_modified: "2023-06-05T23:49:49.000Z"
3041
+ }, {
3042
+ id: 34948,
3043
+ status: null,
3044
+ image_id: 3,
3045
+ packing_type: "3",
3046
+ image_type: "1",
3047
+ article_id: "38443",
3048
+ src: "id-38443/5/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
3049
+ timestamp: "2023-04-24T07:01:36.000Z",
3050
+ id_version: 5,
3051
+ width: null,
3052
+ height: null,
3053
+ scene_type: null,
3054
+ image_shot_type: null,
3055
+ last_modified: "2023-06-05T23:49:49.000Z"
3056
+ }, {
3057
+ id: 34949,
3058
+ status: null,
3059
+ image_id: 16,
3060
+ packing_type: "3",
3061
+ image_type: "1",
3062
+ article_id: "38443",
3063
+ src: "id-38443/5/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
3064
+ timestamp: "2023-04-24T07:01:36.000Z",
3065
+ id_version: 5,
3066
+ width: null,
3067
+ height: null,
3068
+ scene_type: null,
3069
+ image_shot_type: null,
3070
+ last_modified: "2023-06-05T23:49:49.000Z"
3071
+ }],
3072
+ "38444-5": [{
3073
+ id: 34953,
3074
+ status: null,
3075
+ image_id: 1,
3076
+ packing_type: "3",
3077
+ image_type: "1",
3078
+ article_id: "38444",
3079
+ src: "id-38444/5/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
3080
+ timestamp: "2023-04-24T07:01:42.000Z",
3081
+ id_version: 5,
3082
+ width: null,
3083
+ height: null,
3084
+ scene_type: null,
3085
+ image_shot_type: null,
3086
+ last_modified: "2023-06-05T23:49:49.000Z"
3087
+ }, {
3088
+ id: 34954,
3089
+ status: null,
3090
+ image_id: 3,
3091
+ packing_type: "3",
3092
+ image_type: "1",
3093
+ article_id: "38444",
3094
+ src: "id-38444/5/3-499ed708-8944-4271-aafa-ab88677d441a.png",
3095
+ timestamp: "2023-04-24T07:01:42.000Z",
3096
+ id_version: 5,
3097
+ width: null,
3098
+ height: null,
3099
+ scene_type: null,
3100
+ image_shot_type: null,
3101
+ last_modified: "2023-06-05T23:49:49.000Z"
3102
+ }, {
3103
+ id: 34955,
3104
+ status: null,
3105
+ image_id: 16,
3106
+ packing_type: "3",
3107
+ image_type: "1",
3108
+ article_id: "38444",
3109
+ src: "id-38444/5/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
3110
+ timestamp: "2023-04-24T07:01:42.000Z",
3111
+ id_version: 5,
3112
+ width: null,
3113
+ height: null,
3114
+ scene_type: null,
3115
+ image_shot_type: null,
3116
+ last_modified: "2023-06-05T23:49:49.000Z"
3117
+ }],
3118
+ "38445-5": [{
3119
+ id: 34959,
3120
+ status: null,
3121
+ image_id: 1,
3122
+ packing_type: "3",
3123
+ image_type: "1",
3124
+ article_id: "38445",
3125
+ src: "id-38445/5/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
3126
+ timestamp: "2023-04-24T07:01:48.000Z",
3127
+ id_version: 5,
3128
+ width: null,
3129
+ height: null,
3130
+ scene_type: null,
3131
+ image_shot_type: null,
3132
+ last_modified: "2023-06-05T23:49:49.000Z"
3133
+ }, {
3134
+ id: 34960,
3135
+ status: null,
3136
+ image_id: 3,
3137
+ packing_type: "3",
3138
+ image_type: "1",
3139
+ article_id: "38445",
3140
+ src: "id-38445/5/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
3141
+ timestamp: "2023-04-24T07:01:48.000Z",
3142
+ id_version: 5,
3143
+ width: null,
3144
+ height: null,
3145
+ scene_type: null,
3146
+ image_shot_type: null,
3147
+ last_modified: "2023-06-05T23:49:49.000Z"
3148
+ }, {
3149
+ id: 34961,
3150
+ status: null,
3151
+ image_id: 15,
3152
+ packing_type: "3",
3153
+ image_type: "1",
3154
+ article_id: "38445",
3155
+ src: "id-38445/5/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
3156
+ timestamp: "2023-04-24T07:01:48.000Z",
3157
+ id_version: 5,
3158
+ width: null,
3159
+ height: null,
3160
+ scene_type: null,
3161
+ image_shot_type: null,
3162
+ last_modified: "2023-06-05T23:49:49.000Z"
3163
+ }],
3164
+ "2-5": [{
3165
+ id: 35325,
3166
+ status: null,
3167
+ image_id: 1,
3168
+ packing_type: "2",
3169
+ image_type: "1",
3170
+ article_id: "2",
3171
+ src: "id-2/5/1-ec4d2017-12cf-40ed-9061-1967e5cac728.jpeg",
3172
+ timestamp: "2023-05-10T02:20:27.000Z",
3173
+ id_version: 5,
3174
+ width: null,
3175
+ height: null,
3176
+ scene_type: null,
3177
+ image_shot_type: null,
3178
+ last_modified: "2023-06-05T23:49:49.000Z"
3179
+ }],
3180
+ "2-7": [{
3181
+ id: 35327,
3182
+ status: null,
3183
+ image_id: 1,
3184
+ packing_type: "2",
3185
+ image_type: "1",
3186
+ article_id: "2",
3187
+ src: "id-2/7/1-ec4d2017-12cf-40ed-9061-1967e5cac728.jpeg",
3188
+ timestamp: "2023-05-10T02:21:23.000Z",
3189
+ id_version: 7,
3190
+ width: null,
3191
+ height: null,
3192
+ scene_type: null,
3193
+ image_shot_type: null,
3194
+ last_modified: "2023-06-05T23:49:49.000Z"
3195
+ }],
3196
+ "2-9": [{
3197
+ id: 35349,
3198
+ status: null,
3199
+ image_id: 1,
3200
+ packing_type: "2",
3201
+ image_type: "1",
3202
+ article_id: "2",
3203
+ src: "id-2/9/1-ec4d2017-12cf-40ed-9061-1967e5cac728.jpeg",
3204
+ timestamp: "2023-05-11T15:57:19.000Z",
3205
+ id_version: 9,
3206
+ width: null,
3207
+ height: null,
3208
+ scene_type: null,
3209
+ image_shot_type: null,
3210
+ last_modified: "2023-06-05T23:49:49.000Z"
3211
+ }],
3212
+ "39398-3": [{
3213
+ id: 35438,
3214
+ status: null,
3215
+ image_id: 1,
3216
+ packing_type: "2",
3217
+ image_type: "1",
3218
+ article_id: "39398",
3219
+ src: "id-39398/3/1-456d590c-c52d-4811-ace8-be719688f200.png",
3220
+ timestamp: "2023-05-18T17:36:36.000Z",
3221
+ id_version: 3,
3222
+ width: 1500,
3223
+ height: 1500,
3224
+ scene_type: null,
3225
+ image_shot_type: null,
3226
+ last_modified: "2023-06-05T23:49:49.000Z"
3227
+ }, {
3228
+ id: 35439,
3229
+ status: null,
3230
+ image_id: 3,
3231
+ packing_type: "2",
3232
+ image_type: "1",
3233
+ article_id: "39398",
3234
+ src: "id-39398/3/3-21e7c31c-6f53-4abd-bad0-3543213a4f59.png",
3235
+ timestamp: "2023-05-18T17:36:36.000Z",
3236
+ id_version: 3,
3237
+ width: 1500,
3238
+ height: 1500,
3239
+ scene_type: null,
3240
+ image_shot_type: null,
3241
+ last_modified: "2023-06-05T23:49:49.000Z"
3242
+ }, {
3243
+ id: 35440,
3244
+ status: null,
3245
+ image_id: 16,
3246
+ packing_type: "2",
3247
+ image_type: "1",
3248
+ article_id: "39398",
3249
+ src: "id-39398/3/16-cf31e1e5-c924-447a-9ab2-39313cee3d39.png",
3250
+ timestamp: "2023-05-18T17:36:36.000Z",
3251
+ id_version: 3,
3252
+ width: 1500,
3253
+ height: 1500,
3254
+ scene_type: null,
3255
+ image_shot_type: null,
3256
+ last_modified: "2023-06-05T23:49:49.000Z"
3257
+ }],
3258
+ "2-12": [{
3259
+ id: 35443,
3260
+ status: null,
3261
+ image_id: 1,
3262
+ packing_type: "2",
3263
+ image_type: "1",
3264
+ article_id: "2",
3265
+ src: "id-2/12/1-ec4d2017-12cf-40ed-9061-1967e5cac728.jpeg",
3266
+ timestamp: "2023-05-20T00:17:47.000Z",
3267
+ id_version: 12,
3268
+ width: null,
3269
+ height: null,
3270
+ scene_type: null,
3271
+ image_shot_type: null,
3272
+ last_modified: "2023-06-05T23:49:49.000Z"
3273
+ }],
3274
+ "2-11": [{
3275
+ id: 35444,
3276
+ status: null,
3277
+ image_id: 1,
3278
+ packing_type: "2",
3279
+ image_type: "1",
3280
+ article_id: "2",
3281
+ src: "id-2/11/1-ec4d2017-12cf-40ed-9061-1967e5cac728.jpeg",
3282
+ timestamp: "2023-05-20T00:17:47.000Z",
3283
+ id_version: 11,
3284
+ width: null,
3285
+ height: null,
3286
+ scene_type: null,
3287
+ image_shot_type: null,
3288
+ last_modified: "2023-06-05T23:49:49.000Z"
3289
+ }],
3290
+ "39405-3": [{
3291
+ id: 35445,
3292
+ status: null,
3293
+ image_id: 3,
3294
+ packing_type: "2",
3295
+ image_type: "1",
3296
+ article_id: "39405",
3297
+ src: "id-39405/3/3-d0e95b37-aafd-407c-8f83-a7c1b4e0a484.jpg",
3298
+ timestamp: "2023-05-22T16:24:07.000Z",
3299
+ id_version: 3,
3300
+ width: 1024,
3301
+ height: 1024,
3302
+ scene_type: null,
3303
+ image_shot_type: null,
3304
+ last_modified: "2023-06-05T23:49:49.000Z"
3305
+ }, {
3306
+ id: 35446,
3307
+ status: null,
3308
+ image_id: 11,
3309
+ packing_type: "5",
3310
+ image_type: "2",
3311
+ article_id: "39405",
3312
+ src: "id-39405/3/11-863e220f-9ee0-441b-a6b8-791dd924228f.jpg",
3313
+ timestamp: "2023-05-22T16:24:07.000Z",
3314
+ id_version: 3,
3315
+ width: 1024,
3316
+ height: 1024,
3317
+ scene_type: null,
3318
+ image_shot_type: null,
3319
+ last_modified: "2023-06-05T23:49:49.000Z"
3320
+ }, {
3321
+ id: 35447,
3322
+ status: null,
3323
+ image_id: 1,
3324
+ packing_type: "2",
3325
+ image_type: "1",
3326
+ article_id: "39405",
3327
+ src: "id-39405/3/1-5a552821-9c82-456e-9940-c2d58a205437.jpg",
3328
+ timestamp: "2023-05-22T16:24:07.000Z",
3329
+ id_version: 3,
3330
+ width: 1024,
3331
+ height: 1024,
3332
+ scene_type: null,
3333
+ image_shot_type: null,
3334
+ last_modified: "2023-06-05T23:49:49.000Z"
3335
+ }, {
3336
+ id: 35448,
3337
+ status: null,
3338
+ image_id: 21,
3339
+ packing_type: "5",
3340
+ image_type: "2",
3341
+ article_id: "39405",
3342
+ src: "id-39405/3/21-8fc11212-0f75-4a4e-b1b2-7863b8a1bca4.jpg",
3343
+ timestamp: "2023-05-22T16:24:07.000Z",
3344
+ id_version: 3,
3345
+ width: 1024,
3346
+ height: 1024,
3347
+ scene_type: null,
3348
+ image_shot_type: null,
3349
+ last_modified: "2023-06-05T23:49:49.000Z"
3350
+ }, {
3351
+ id: 35449,
3352
+ status: null,
3353
+ image_id: 23,
3354
+ packing_type: "5",
3355
+ image_type: "2",
3356
+ article_id: "39405",
3357
+ src: "id-39405/3/23-4748bacf-f9ed-401c-95ed-59484901f1b9.jpg",
3358
+ timestamp: "2023-05-22T16:24:07.000Z",
3359
+ id_version: 3,
3360
+ width: 1024,
3361
+ height: 1024,
3362
+ scene_type: null,
3363
+ image_shot_type: null,
3364
+ last_modified: "2023-06-05T23:49:49.000Z"
3365
+ }],
3366
+ "39407-3": [{
3367
+ id: 35451,
3368
+ status: null,
3369
+ image_id: 1,
3370
+ packing_type: "1",
3371
+ image_type: "1",
3372
+ article_id: "39407",
3373
+ src: "id-39407/3/1-101d5997-c356-4c51-9559-6133049b559d.png",
3374
+ timestamp: "2023-05-22T17:18:10.000Z",
3375
+ id_version: 3,
3376
+ width: 480,
3377
+ height: 500,
3378
+ scene_type: null,
3379
+ image_shot_type: null,
3380
+ last_modified: "2023-06-05T23:49:49.000Z"
3381
+ }],
3382
+ "39406-3": [{
3383
+ id: 35452,
3384
+ status: null,
3385
+ image_id: 1,
3386
+ packing_type: "2",
3387
+ image_type: "1",
3388
+ article_id: "39406",
3389
+ src: "id-39406/3/1-aad24027-d6b6-4315-bcdf-6db10078c946.jpg",
3390
+ timestamp: "2023-05-22T17:18:46.000Z",
3391
+ id_version: 3,
3392
+ width: 1024,
3393
+ height: 1024,
3394
+ scene_type: null,
3395
+ image_shot_type: null,
3396
+ last_modified: "2023-06-05T23:49:49.000Z"
3397
+ }, {
3398
+ id: 35453,
3399
+ status: null,
3400
+ image_id: 38,
3401
+ packing_type: "5",
3402
+ image_type: "2",
3403
+ article_id: "39406",
3404
+ src: "id-39406/3/38-baa4279a-cf88-491e-8fde-901fb01c6267.jpg",
3405
+ timestamp: "2023-05-22T17:18:46.000Z",
3406
+ id_version: 3,
3407
+ width: 1024,
3408
+ height: 1024,
3409
+ scene_type: null,
3410
+ image_shot_type: null,
3411
+ last_modified: "2023-06-05T23:49:49.000Z"
3412
+ }, {
3413
+ id: 35454,
3414
+ status: null,
3415
+ image_id: 11,
3416
+ packing_type: "5",
3417
+ image_type: "2",
3418
+ article_id: "39406",
3419
+ src: "id-39406/3/11-c1f13762-9fd0-45b4-9525-97b614c3fa5e.jpg",
3420
+ timestamp: "2023-05-22T17:18:46.000Z",
3421
+ id_version: 3,
3422
+ width: 1024,
3423
+ height: 1024,
3424
+ scene_type: null,
3425
+ image_shot_type: null,
3426
+ last_modified: "2023-06-05T23:49:49.000Z"
3427
+ }, {
3428
+ id: 35455,
3429
+ status: null,
3430
+ image_id: 21,
3431
+ packing_type: "5",
3432
+ image_type: "2",
3433
+ article_id: "39406",
3434
+ src: "id-39406/3/21-564a2d41-599a-410a-9d2d-7c9c9b723591.jpg",
3435
+ timestamp: "2023-05-22T17:18:46.000Z",
3436
+ id_version: 3,
3437
+ width: 1024,
3438
+ height: 1024,
3439
+ scene_type: null,
3440
+ image_shot_type: null,
3441
+ last_modified: "2023-06-05T23:49:49.000Z"
3442
+ }],
3443
+ "109-7": [{
3444
+ id: 35456,
3445
+ status: null,
3446
+ image_id: 1,
3447
+ packing_type: "3",
3448
+ image_type: "1",
3449
+ article_id: "109",
3450
+ src: "id-109/7/1-1114d5ca-0abe-4c29-8e40-fb9231dff8bf.png",
3451
+ timestamp: "2023-05-22T17:40:59.000Z",
3452
+ id_version: 7,
3453
+ width: 3000,
3454
+ height: 3000,
3455
+ scene_type: null,
3456
+ image_shot_type: null,
3457
+ last_modified: "2023-06-05T23:49:49.000Z"
3458
+ }],
3459
+ "39410-3": [{
3460
+ id: 35457,
3461
+ status: null,
3462
+ image_id: 1,
3463
+ packing_type: "3",
3464
+ image_type: "1",
3465
+ article_id: "39410",
3466
+ src: "id-39410/3/1-4716cb68-e924-43cc-be5a-884309d6a8bd.jpg",
3467
+ timestamp: "2023-05-22T18:38:22.000Z",
3468
+ id_version: 3,
3469
+ width: 1200,
3470
+ height: 1200,
3471
+ scene_type: null,
3472
+ image_shot_type: null,
3473
+ last_modified: "2023-06-05T23:49:49.000Z"
3474
+ }, {
3475
+ id: 35458,
3476
+ status: null,
3477
+ image_id: 49,
3478
+ packing_type: "3",
3479
+ image_type: "1",
3480
+ article_id: "39410",
3481
+ src: "id-39410/3/49-08527369-2174-40a6-835c-7accd1992b7d.jpg",
3482
+ timestamp: "2023-05-22T18:38:22.000Z",
3483
+ id_version: 3,
3484
+ width: 1200,
3485
+ height: 1200,
3486
+ scene_type: null,
3487
+ image_shot_type: null,
3488
+ last_modified: "2023-06-05T23:49:49.000Z"
3489
+ }, {
3490
+ id: 35459,
3491
+ status: null,
3492
+ image_id: 50,
3493
+ packing_type: "3",
3494
+ image_type: "1",
3495
+ article_id: "39410",
3496
+ src: "id-39410/3/50-fe69ab11-81d3-459b-b6e7-da42c650e16a.jpg",
3497
+ timestamp: "2023-05-22T18:38:22.000Z",
3498
+ id_version: 3,
3499
+ width: 1200,
3500
+ height: 1200,
3501
+ scene_type: null,
3502
+ image_shot_type: null,
3503
+ last_modified: "2023-06-05T23:49:49.000Z"
3504
+ }],
3505
+ "39411-3": [{
3506
+ id: 35460,
3507
+ status: null,
3508
+ image_id: 3,
3509
+ packing_type: "3",
3510
+ image_type: "1",
3511
+ article_id: "39411",
3512
+ src: "id-39411/3/3-772aa7a0-a81f-4ea2-8e70-81e6f1d0e1a7.jpg",
3513
+ timestamp: "2023-05-22T18:39:28.000Z",
3514
+ id_version: 3,
3515
+ width: 1200,
3516
+ height: 1200,
3517
+ scene_type: null,
3518
+ image_shot_type: null,
3519
+ last_modified: "2023-06-05T23:49:49.000Z"
3520
+ }, {
3521
+ id: 35461,
3522
+ status: null,
3523
+ image_id: 9,
3524
+ packing_type: "3",
3525
+ image_type: "1",
3526
+ article_id: "39411",
3527
+ src: "id-39411/3/9-5e5f9230-7755-4df3-85dd-0c354a2e01c3.jpg",
3528
+ timestamp: "2023-05-22T18:39:28.000Z",
3529
+ id_version: 3,
3530
+ width: 1200,
3531
+ height: 1200,
3532
+ scene_type: null,
3533
+ image_shot_type: null,
3534
+ last_modified: "2023-06-05T23:49:49.000Z"
3535
+ }, {
3536
+ id: 35462,
3537
+ status: null,
3538
+ image_id: 8,
3539
+ packing_type: "3",
3540
+ image_type: "1",
3541
+ article_id: "39411",
3542
+ src: "id-39411/3/8-31b44f5e-ec96-4acd-8706-bff116eeacde.jpg",
3543
+ timestamp: "2023-05-22T18:39:28.000Z",
3544
+ id_version: 3,
3545
+ width: 1200,
3546
+ height: 1200,
3547
+ scene_type: null,
3548
+ image_shot_type: null,
3549
+ last_modified: "2023-06-05T23:49:49.000Z"
3550
+ }, {
3551
+ id: 35463,
3552
+ status: null,
3553
+ image_id: 1,
3554
+ packing_type: "3",
3555
+ image_type: "1",
3556
+ article_id: "39411",
3557
+ src: "id-39411/3/1-2e595558-4562-4689-a163-7e7a3b0c0ab2.jpg",
3558
+ timestamp: "2023-05-22T18:39:28.000Z",
3559
+ id_version: 3,
3560
+ width: 1200,
3561
+ height: 1200,
3562
+ scene_type: null,
3563
+ image_shot_type: null,
3564
+ last_modified: "2023-06-05T23:49:49.000Z"
3565
+ }],
3566
+ "39412-3": [{
3567
+ id: 35464,
3568
+ status: null,
3569
+ image_id: 1,
3570
+ packing_type: "3",
3571
+ image_type: "1",
3572
+ article_id: "39412",
3573
+ src: "id-39412/3/1-c1451493-2d01-4a35-b4c0-48df1da87fe0.jpg",
3574
+ timestamp: "2023-05-22T18:40:17.000Z",
3575
+ id_version: 3,
3576
+ width: 1200,
3577
+ height: 1200,
3578
+ scene_type: null,
3579
+ image_shot_type: null,
3580
+ last_modified: "2023-06-05T23:49:49.000Z"
3581
+ }, {
3582
+ id: 35465,
3583
+ status: null,
3584
+ image_id: 8,
3585
+ packing_type: "3",
3586
+ image_type: "1",
3587
+ article_id: "39412",
3588
+ src: "id-39412/3/8-dda0c969-4009-45b2-81a1-3f7471202fc9.jpg",
3589
+ timestamp: "2023-05-22T18:40:17.000Z",
3590
+ id_version: 3,
3591
+ width: 1200,
3592
+ height: 1200,
3593
+ scene_type: null,
3594
+ image_shot_type: null,
3595
+ last_modified: "2023-06-05T23:49:49.000Z"
3596
+ }, {
3597
+ id: 35466,
3598
+ status: null,
3599
+ image_id: 9,
3600
+ packing_type: "3",
3601
+ image_type: "1",
3602
+ article_id: "39412",
3603
+ src: "id-39412/3/9-17cf58b4-ced5-46c9-9fae-f809e2f90b02.jpg",
3604
+ timestamp: "2023-05-22T18:40:17.000Z",
3605
+ id_version: 3,
3606
+ width: 1200,
3607
+ height: 1200,
3608
+ scene_type: null,
3609
+ image_shot_type: null,
3610
+ last_modified: "2023-06-05T23:49:49.000Z"
3611
+ }, {
3612
+ id: 35467,
3613
+ status: null,
3614
+ image_id: 3,
3615
+ packing_type: "3",
3616
+ image_type: "1",
3617
+ article_id: "39412",
3618
+ src: "id-39412/3/3-bd5eadd1-21db-4347-bca6-504c87ec3fcb.jpg",
3619
+ timestamp: "2023-05-22T18:40:17.000Z",
3620
+ id_version: 3,
3621
+ width: 1200,
3622
+ height: 1200,
3623
+ scene_type: null,
3624
+ image_shot_type: null,
3625
+ last_modified: "2023-06-05T23:49:49.000Z"
3626
+ }],
3627
+ "39413-3": [{
3628
+ id: 35468,
3629
+ status: null,
3630
+ image_id: 1,
3631
+ packing_type: "3",
3632
+ image_type: "1",
3633
+ article_id: "39413",
3634
+ src: "id-39413/3/1-a5f15981-e581-4191-8358-eff4d7ff131a.jpg",
3635
+ timestamp: "2023-05-22T18:41:13.000Z",
3636
+ id_version: 3,
3637
+ width: 235,
3638
+ height: 235,
3639
+ scene_type: null,
3640
+ image_shot_type: null,
3641
+ last_modified: "2023-06-05T23:49:49.000Z"
3642
+ }, {
3643
+ id: 35469,
3644
+ status: null,
3645
+ image_id: 8,
3646
+ packing_type: "3",
3647
+ image_type: "1",
3648
+ article_id: "39413",
3649
+ src: "id-39413/3/8-7c9bdbca-6641-44e6-b267-9b74f3340acc.jpg",
3650
+ timestamp: "2023-05-22T18:41:13.000Z",
3651
+ id_version: 3,
3652
+ width: 1200,
3653
+ height: 1200,
3654
+ scene_type: null,
3655
+ image_shot_type: null,
3656
+ last_modified: "2023-06-05T23:49:49.000Z"
3657
+ }, {
3658
+ id: 35470,
3659
+ status: null,
3660
+ image_id: 16,
3661
+ packing_type: "3",
3662
+ image_type: "1",
3663
+ article_id: "39413",
3664
+ src: "id-39413/3/16-d372351a-5189-40ec-9e36-a2f4aec5dd4f.jpg",
3665
+ timestamp: "2023-05-22T18:41:13.000Z",
3666
+ id_version: 3,
3667
+ width: 1200,
3668
+ height: 1200,
3669
+ scene_type: null,
3670
+ image_shot_type: null,
3671
+ last_modified: "2023-06-05T23:49:49.000Z"
3672
+ }],
3673
+ "39414-3": [{
3674
+ id: 35471,
3675
+ status: null,
3676
+ image_id: 1,
3677
+ packing_type: "2",
3678
+ image_type: "1",
3679
+ article_id: "39414",
3680
+ src: "id-39414/3/1-b2f46101-add2-4dde-9826-25685a4cd66c.jpg",
3681
+ timestamp: "2023-05-22T18:42:30.000Z",
3682
+ id_version: 3,
3683
+ width: 1200,
3684
+ height: 1200,
3685
+ scene_type: null,
3686
+ image_shot_type: null,
3687
+ last_modified: "2023-06-05T23:49:49.000Z"
3688
+ }, {
3689
+ id: 35472,
3690
+ status: null,
3691
+ image_id: 3,
3692
+ packing_type: "2",
3693
+ image_type: "1",
3694
+ article_id: "39414",
3695
+ src: "id-39414/3/3-d354021b-c631-4d2c-8208-cdc9f9cb7c78.jpg",
3696
+ timestamp: "2023-05-22T18:42:30.000Z",
3697
+ id_version: 3,
3698
+ width: 1200,
3699
+ height: 1200,
3700
+ scene_type: null,
3701
+ image_shot_type: null,
3702
+ last_modified: "2023-06-05T23:49:49.000Z"
3703
+ }, {
3704
+ id: 35473,
3705
+ status: null,
3706
+ image_id: 16,
3707
+ packing_type: "2",
3708
+ image_type: "1",
3709
+ article_id: "39414",
3710
+ src: "id-39414/3/16-b2552a20-b41d-48c9-beff-242b4a1a6832.jpg",
3711
+ timestamp: "2023-05-22T18:42:30.000Z",
3712
+ id_version: 3,
3713
+ width: 1200,
3714
+ height: 1200,
3715
+ scene_type: null,
3716
+ image_shot_type: null,
3717
+ last_modified: "2023-06-05T23:49:49.000Z"
3718
+ }],
3719
+ "39417-3": [{
3720
+ id: 35474,
3721
+ status: null,
3722
+ image_id: 1,
3723
+ packing_type: "2",
3724
+ image_type: "1",
3725
+ article_id: "39417",
3726
+ src: "id-39417/3/1-f4401c9a-042f-4c59-abd1-2e948b8bdf0e.jpg",
3727
+ timestamp: "2023-05-24T03:08:52.000Z",
3728
+ id_version: 3,
3729
+ width: 2000,
3730
+ height: 2000,
3731
+ scene_type: null,
3732
+ image_shot_type: null,
3733
+ last_modified: "2023-06-05T23:49:49.000Z"
3734
+ }, {
3735
+ id: 35475,
3736
+ status: null,
3737
+ image_id: 3,
3738
+ packing_type: "2",
3739
+ image_type: "1",
3740
+ article_id: "39417",
3741
+ src: "id-39417/3/3-cac32f70-6b30-4c1c-b6b5-78aaab1bf809.jpg",
3742
+ timestamp: "2023-05-24T03:08:52.000Z",
3743
+ id_version: 3,
3744
+ width: 2000,
3745
+ height: 2000,
3746
+ scene_type: null,
3747
+ image_shot_type: null,
3748
+ last_modified: "2023-06-05T23:49:49.000Z"
3749
+ }, {
3750
+ id: 35476,
3751
+ status: null,
3752
+ image_id: 11,
3753
+ packing_type: "5",
3754
+ image_type: "2",
3755
+ article_id: "39417",
3756
+ src: "id-39417/3/11-bcc5954a-7582-4203-a820-21ee9d31b972.jpg",
3757
+ timestamp: "2023-05-24T03:08:52.000Z",
3758
+ id_version: 3,
3759
+ width: 2000,
3760
+ height: 2000,
3761
+ scene_type: null,
3762
+ image_shot_type: null,
3763
+ last_modified: "2023-06-05T23:49:49.000Z"
3764
+ }],
3765
+ "17162-5": [{
3766
+ id: 35478,
3767
+ status: null,
3768
+ image_id: 1,
3769
+ packing_type: "2",
3770
+ image_type: "1",
3771
+ article_id: "17162",
3772
+ src: "id-17162/5/1-118d8064-b130-42fd-bfd0-a996abe3221d.png",
3773
+ timestamp: "2023-05-24T15:47:19.000Z",
3774
+ id_version: 5,
3775
+ width: null,
3776
+ height: null,
3777
+ scene_type: null,
3778
+ image_shot_type: null,
3779
+ last_modified: "2023-06-05T23:49:49.000Z"
3780
+ }],
3781
+ "39415-3": [{
3782
+ id: 35479,
3783
+ status: null,
3784
+ image_id: 1,
3785
+ packing_type: "2",
3786
+ image_type: "1",
3787
+ article_id: "39415",
3788
+ src: "id-39415/3/1-d9f7a02b-ad0a-4682-ab64-b2e2af92d018.jpg",
3789
+ timestamp: "2023-05-24T16:10:55.000Z",
3790
+ id_version: 3,
3791
+ width: 1600,
3792
+ height: 1600,
3793
+ scene_type: null,
3794
+ image_shot_type: null,
3795
+ last_modified: "2023-06-05T23:49:49.000Z"
3796
+ }, {
3797
+ id: 35480,
3798
+ status: null,
3799
+ image_id: 3,
3800
+ packing_type: "2",
3801
+ image_type: "1",
3802
+ article_id: "39415",
3803
+ src: "id-39415/3/3-10dc6829-5242-4d43-afbd-6a4df659ed40.jpg",
3804
+ timestamp: "2023-05-24T16:10:55.000Z",
3805
+ id_version: 3,
3806
+ width: 1600,
3807
+ height: 1600,
3808
+ scene_type: null,
3809
+ image_shot_type: null,
3810
+ last_modified: "2023-06-05T23:49:49.000Z"
3811
+ }, {
3812
+ id: 35481,
3813
+ status: null,
3814
+ image_id: 9,
3815
+ packing_type: "2",
3816
+ image_type: "1",
3817
+ article_id: "39415",
3818
+ src: "id-39415/3/9-745054a1-8421-41e6-9db5-643a2528d4aa.jpg",
3819
+ timestamp: "2023-05-24T16:10:55.000Z",
3820
+ id_version: 3,
3821
+ width: 1600,
3822
+ height: 1600,
3823
+ scene_type: null,
3824
+ image_shot_type: null,
3825
+ last_modified: "2023-06-05T23:49:49.000Z"
3826
+ }],
3827
+ "39416-3": [{
3828
+ id: 35482,
3829
+ status: null,
3830
+ image_id: 3,
3831
+ packing_type: "2",
3832
+ image_type: "1",
3833
+ article_id: "39416",
3834
+ src: "id-39416/3/3-a4949657-e58a-46b7-a365-1d0f1cf81a02.jpg",
3835
+ timestamp: "2023-05-24T16:12:12.000Z",
3836
+ id_version: 3,
3837
+ width: 1200,
3838
+ height: 1200,
3839
+ scene_type: null,
3840
+ image_shot_type: null,
3841
+ last_modified: "2023-06-05T23:49:49.000Z"
3842
+ }, {
3843
+ id: 35483,
3844
+ status: null,
3845
+ image_id: 1,
3846
+ packing_type: "2",
3847
+ image_type: "1",
3848
+ article_id: "39416",
3849
+ src: "id-39416/3/1-243c2c3a-7858-42aa-923e-85d9e35ae991.jpg",
3850
+ timestamp: "2023-05-24T16:12:12.000Z",
3851
+ id_version: 3,
3852
+ width: 1200,
3853
+ height: 1200,
3854
+ scene_type: null,
3855
+ image_shot_type: null,
3856
+ last_modified: "2023-06-05T23:49:49.000Z"
3857
+ }],
3858
+ "39418-3": [{
3859
+ id: 35484,
3860
+ status: null,
3861
+ image_id: 1,
3862
+ packing_type: "2",
3863
+ image_type: "1",
3864
+ article_id: "39418",
3865
+ src: "id-39418/3/1-a9d6887d-697f-4a3c-86f7-34b8d2ec1e94.jpg",
3866
+ timestamp: "2023-05-24T16:19:51.000Z",
3867
+ id_version: 3,
3868
+ width: 1000,
3869
+ height: 1300,
3870
+ scene_type: null,
3871
+ image_shot_type: null,
3872
+ last_modified: "2023-06-05T23:49:49.000Z"
3873
+ }, {
3874
+ id: 35485,
3875
+ status: null,
3876
+ image_id: 11,
3877
+ packing_type: "2",
3878
+ image_type: "2",
3879
+ article_id: "39418",
3880
+ src: "id-39418/3/11-09008119-4376-4cd0-ad05-e3c451633ddb.jpg",
3881
+ timestamp: "2023-05-24T16:19:51.000Z",
3882
+ id_version: 3,
3883
+ width: 1000,
3884
+ height: 1300,
3885
+ scene_type: null,
3886
+ image_shot_type: null,
3887
+ last_modified: "2023-06-05T23:49:49.000Z"
3888
+ }, {
3889
+ id: 35486,
3890
+ status: null,
3891
+ image_id: 3,
3892
+ packing_type: "2",
3893
+ image_type: "1",
3894
+ article_id: "39418",
3895
+ src: "id-39418/3/3-c450641d-a8fa-4a4a-8f5e-7c210f56e2ea.jpg",
3896
+ timestamp: "2023-05-24T16:19:51.000Z",
3897
+ id_version: 3,
3898
+ width: 1000,
3899
+ height: 667,
3900
+ scene_type: null,
3901
+ image_shot_type: null,
3902
+ last_modified: "2023-06-05T23:49:49.000Z"
3903
+ }],
3904
+ "39419-3": [{
3905
+ id: 35487,
3906
+ status: null,
3907
+ image_id: 21,
3908
+ packing_type: "5",
3909
+ image_type: "2",
3910
+ article_id: "39419",
3911
+ src: "id-39419/3/21-142499b7-6e19-45f1-8f41-ae8b7077b401.jpg",
3912
+ timestamp: "2023-05-24T16:23:07.000Z",
3913
+ id_version: 3,
3914
+ width: 2000,
3915
+ height: 2000,
3916
+ scene_type: null,
3917
+ image_shot_type: null,
3918
+ last_modified: "2023-06-05T23:49:49.000Z"
3919
+ }, {
3920
+ id: 35488,
3921
+ status: null,
3922
+ image_id: 11,
3923
+ packing_type: "5",
3924
+ image_type: "2",
3925
+ article_id: "39419",
3926
+ src: "id-39419/3/11-e32e5dc2-d0d8-4378-b428-618baca0cb51.jpg",
3927
+ timestamp: "2023-05-24T16:23:07.000Z",
3928
+ id_version: 3,
3929
+ width: 2000,
3930
+ height: 2000,
3931
+ scene_type: null,
3932
+ image_shot_type: null,
3933
+ last_modified: "2023-06-05T23:49:49.000Z"
3934
+ }, {
3935
+ id: 35489,
3936
+ status: null,
3937
+ image_id: 1,
3938
+ packing_type: "2",
3939
+ image_type: "1",
3940
+ article_id: "39419",
3941
+ src: "id-39419/3/1-e3aeafac-48a7-4956-9519-31e2d129910e.jpg",
3942
+ timestamp: "2023-05-24T16:23:07.000Z",
3943
+ id_version: 3,
3944
+ width: 2000,
3945
+ height: 2000,
3946
+ scene_type: null,
3947
+ image_shot_type: null,
3948
+ last_modified: "2023-06-05T23:49:49.000Z"
3949
+ }, {
3950
+ id: 35490,
3951
+ status: null,
3952
+ image_id: 3,
3953
+ packing_type: "2",
3954
+ image_type: "1",
3955
+ article_id: "39419",
3956
+ src: "id-39419/3/3-a71f4027-9eaa-421c-8cd9-2c14798d08eb.jpg",
3957
+ timestamp: "2023-05-24T16:23:07.000Z",
3958
+ id_version: 3,
3959
+ width: 2000,
3960
+ height: 2000,
3961
+ scene_type: null,
3962
+ image_shot_type: null,
3963
+ last_modified: "2023-06-05T23:49:49.000Z"
3964
+ }],
3965
+ "39420-3": [{
3966
+ id: 35500,
3967
+ status: null,
3968
+ image_id: 1,
3969
+ packing_type: "2",
3970
+ image_type: "1",
3971
+ article_id: "39420",
3972
+ src: "id-39420/3/1-ee3c5a68-87ff-4ff7-9062-9442c06df4e5.jpg",
3973
+ timestamp: "2023-05-25T22:41:57.000Z",
3974
+ id_version: 3,
3975
+ width: 1200,
3976
+ height: 1200,
3977
+ scene_type: null,
3978
+ image_shot_type: null,
3979
+ last_modified: "2023-06-05T23:49:49.000Z"
3980
+ }],
3981
+ "39422-3": [{
3982
+ id: 35503,
3983
+ status: null,
3984
+ image_id: 1,
3985
+ packing_type: "3",
3986
+ image_type: "1",
3987
+ article_id: "39422",
3988
+ src: "id-39422/3/1-22fc2ddb-a69f-4a9e-9d42-304e9d86f6fa.jpg",
3989
+ timestamp: "2023-05-25T22:41:59.000Z",
3990
+ id_version: 3,
3991
+ width: 1000,
3992
+ height: 1000,
3993
+ scene_type: null,
3994
+ image_shot_type: null,
3995
+ last_modified: "2023-06-05T23:49:49.000Z"
3996
+ }],
3997
+ "39423-3": [{
3998
+ id: 35505,
3999
+ status: null,
4000
+ image_id: 1,
4001
+ packing_type: "3",
4002
+ image_type: "1",
4003
+ article_id: "39423",
4004
+ src: "id-39423/3/1-1e728569-f714-45de-9e8e-0f38b87334fe.jpg",
4005
+ timestamp: "2023-05-25T22:42:00.000Z",
4006
+ id_version: 3,
4007
+ width: 400,
4008
+ height: 400,
4009
+ scene_type: null,
4010
+ image_shot_type: null,
4011
+ last_modified: "2023-06-05T23:49:49.000Z"
4012
+ }],
4013
+ "38445-7": [{
4014
+ id: 35510,
4015
+ status: null,
4016
+ image_id: 1,
4017
+ packing_type: "3",
4018
+ image_type: "1",
4019
+ article_id: "38445",
4020
+ src: "id-38445/7/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
4021
+ timestamp: "2023-05-30T02:50:48.000Z",
4022
+ id_version: 7,
4023
+ width: null,
4024
+ height: null,
4025
+ scene_type: null,
4026
+ image_shot_type: null,
4027
+ last_modified: "2023-06-05T23:49:49.000Z"
4028
+ }, {
4029
+ id: 35512,
4030
+ status: null,
4031
+ image_id: 3,
4032
+ packing_type: "3",
4033
+ image_type: "1",
4034
+ article_id: "38445",
4035
+ src: "id-38445/7/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
4036
+ timestamp: "2023-05-30T02:50:48.000Z",
4037
+ id_version: 7,
4038
+ width: null,
4039
+ height: null,
4040
+ scene_type: null,
4041
+ image_shot_type: null,
4042
+ last_modified: "2023-06-05T23:49:49.000Z"
4043
+ }, {
4044
+ id: 35514,
4045
+ status: null,
4046
+ image_id: 15,
4047
+ packing_type: "3",
4048
+ image_type: "1",
4049
+ article_id: "38445",
4050
+ src: "id-38445/7/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
4051
+ timestamp: "2023-05-30T02:50:48.000Z",
4052
+ id_version: 7,
4053
+ width: null,
4054
+ height: null,
4055
+ scene_type: null,
4056
+ image_shot_type: null,
4057
+ last_modified: "2023-06-05T23:49:49.000Z"
4058
+ }],
4059
+ "38443-7": [{
4060
+ id: 35515,
4061
+ status: null,
4062
+ image_id: 1,
4063
+ packing_type: "3",
4064
+ image_type: "1",
4065
+ article_id: "38443",
4066
+ src: "id-38443/7/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
4067
+ timestamp: "2023-05-30T02:50:49.000Z",
4068
+ id_version: 7,
4069
+ width: null,
4070
+ height: null,
4071
+ scene_type: null,
4072
+ image_shot_type: null,
4073
+ last_modified: "2023-06-05T23:49:49.000Z"
4074
+ }, {
4075
+ id: 35516,
4076
+ status: null,
4077
+ image_id: 3,
4078
+ packing_type: "3",
4079
+ image_type: "1",
4080
+ article_id: "38443",
4081
+ src: "id-38443/7/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
4082
+ timestamp: "2023-05-30T02:50:49.000Z",
4083
+ id_version: 7,
4084
+ width: null,
4085
+ height: null,
4086
+ scene_type: null,
4087
+ image_shot_type: null,
4088
+ last_modified: "2023-06-05T23:49:49.000Z"
4089
+ }, {
4090
+ id: 35517,
4091
+ status: null,
4092
+ image_id: 16,
4093
+ packing_type: "3",
4094
+ image_type: "1",
4095
+ article_id: "38443",
4096
+ src: "id-38443/7/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
4097
+ timestamp: "2023-05-30T02:50:49.000Z",
4098
+ id_version: 7,
4099
+ width: null,
4100
+ height: null,
4101
+ scene_type: null,
4102
+ image_shot_type: null,
4103
+ last_modified: "2023-06-05T23:49:49.000Z"
4104
+ }],
4105
+ "38444-7": [{
4106
+ id: 35519,
4107
+ status: null,
4108
+ image_id: 1,
4109
+ packing_type: "3",
4110
+ image_type: "1",
4111
+ article_id: "38444",
4112
+ src: "id-38444/7/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
4113
+ timestamp: "2023-05-30T02:50:49.000Z",
4114
+ id_version: 7,
4115
+ width: null,
4116
+ height: null,
4117
+ scene_type: null,
4118
+ image_shot_type: null,
4119
+ last_modified: "2023-06-05T23:49:49.000Z"
4120
+ }, {
4121
+ id: 35521,
4122
+ status: null,
4123
+ image_id: 3,
4124
+ packing_type: "3",
4125
+ image_type: "1",
4126
+ article_id: "38444",
4127
+ src: "id-38444/7/3-499ed708-8944-4271-aafa-ab88677d441a.png",
4128
+ timestamp: "2023-05-30T02:50:49.000Z",
4129
+ id_version: 7,
4130
+ width: null,
4131
+ height: null,
4132
+ scene_type: null,
4133
+ image_shot_type: null,
4134
+ last_modified: "2023-06-05T23:49:49.000Z"
4135
+ }, {
4136
+ id: 35523,
4137
+ status: null,
4138
+ image_id: 16,
4139
+ packing_type: "3",
4140
+ image_type: "1",
4141
+ article_id: "38444",
4142
+ src: "id-38444/7/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
4143
+ timestamp: "2023-05-30T02:50:49.000Z",
4144
+ id_version: 7,
4145
+ width: null,
4146
+ height: null,
4147
+ scene_type: null,
4148
+ image_shot_type: null,
4149
+ last_modified: "2023-06-05T23:49:49.000Z"
4150
+ }],
4151
+ "38445-9": [{
4152
+ id: 35530,
4153
+ status: null,
4154
+ image_id: 1,
4155
+ packing_type: "3",
4156
+ image_type: "1",
4157
+ article_id: "38445",
4158
+ src: "id-38445/9/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
4159
+ timestamp: "2023-05-30T02:53:54.000Z",
4160
+ id_version: 9,
4161
+ width: null,
4162
+ height: null,
4163
+ scene_type: null,
4164
+ image_shot_type: null,
4165
+ last_modified: "2023-06-05T23:49:49.000Z"
4166
+ }, {
4167
+ id: 35531,
4168
+ status: null,
4169
+ image_id: 3,
4170
+ packing_type: "3",
4171
+ image_type: "1",
4172
+ article_id: "38445",
4173
+ src: "id-38445/9/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
4174
+ timestamp: "2023-05-30T02:53:54.000Z",
4175
+ id_version: 9,
4176
+ width: null,
4177
+ height: null,
4178
+ scene_type: null,
4179
+ image_shot_type: null,
4180
+ last_modified: "2023-06-05T23:49:49.000Z"
4181
+ }, {
4182
+ id: 35532,
4183
+ status: null,
4184
+ image_id: 15,
4185
+ packing_type: "3",
4186
+ image_type: "1",
4187
+ article_id: "38445",
4188
+ src: "id-38445/9/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
4189
+ timestamp: "2023-05-30T02:53:54.000Z",
4190
+ id_version: 9,
4191
+ width: null,
4192
+ height: null,
4193
+ scene_type: null,
4194
+ image_shot_type: null,
4195
+ last_modified: "2023-06-05T23:49:49.000Z"
4196
+ }],
4197
+ "38444-9": [{
4198
+ id: 35536,
4199
+ status: null,
4200
+ image_id: 1,
4201
+ packing_type: "3",
4202
+ image_type: "1",
4203
+ article_id: "38444",
4204
+ src: "id-38444/9/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
4205
+ timestamp: "2023-05-30T02:53:55.000Z",
4206
+ id_version: 9,
4207
+ width: null,
4208
+ height: null,
4209
+ scene_type: null,
4210
+ image_shot_type: null,
4211
+ last_modified: "2023-06-05T23:49:49.000Z"
4212
+ }, {
4213
+ id: 35537,
4214
+ status: null,
4215
+ image_id: 3,
4216
+ packing_type: "3",
4217
+ image_type: "1",
4218
+ article_id: "38444",
4219
+ src: "id-38444/9/3-499ed708-8944-4271-aafa-ab88677d441a.png",
4220
+ timestamp: "2023-05-30T02:53:55.000Z",
4221
+ id_version: 9,
4222
+ width: null,
4223
+ height: null,
4224
+ scene_type: null,
4225
+ image_shot_type: null,
4226
+ last_modified: "2023-06-05T23:49:49.000Z"
4227
+ }, {
4228
+ id: 35538,
4229
+ status: null,
4230
+ image_id: 16,
4231
+ packing_type: "3",
4232
+ image_type: "1",
4233
+ article_id: "38444",
4234
+ src: "id-38444/9/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
4235
+ timestamp: "2023-05-30T02:53:55.000Z",
4236
+ id_version: 9,
4237
+ width: null,
4238
+ height: null,
4239
+ scene_type: null,
4240
+ image_shot_type: null,
4241
+ last_modified: "2023-06-05T23:49:49.000Z"
4242
+ }],
4243
+ "38443-9": [{
4244
+ id: 35542,
4245
+ status: null,
4246
+ image_id: 1,
4247
+ packing_type: "3",
4248
+ image_type: "1",
4249
+ article_id: "38443",
4250
+ src: "id-38443/9/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
4251
+ timestamp: "2023-05-30T02:53:56.000Z",
4252
+ id_version: 9,
4253
+ width: null,
4254
+ height: null,
4255
+ scene_type: null,
4256
+ image_shot_type: null,
4257
+ last_modified: "2023-06-05T23:49:49.000Z"
4258
+ }, {
4259
+ id: 35543,
4260
+ status: null,
4261
+ image_id: 3,
4262
+ packing_type: "3",
4263
+ image_type: "1",
4264
+ article_id: "38443",
4265
+ src: "id-38443/9/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
4266
+ timestamp: "2023-05-30T02:53:56.000Z",
4267
+ id_version: 9,
4268
+ width: null,
4269
+ height: null,
4270
+ scene_type: null,
4271
+ image_shot_type: null,
4272
+ last_modified: "2023-06-05T23:49:49.000Z"
4273
+ }, {
4274
+ id: 35544,
4275
+ status: null,
4276
+ image_id: 16,
4277
+ packing_type: "3",
4278
+ image_type: "1",
4279
+ article_id: "38443",
4280
+ src: "id-38443/9/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
4281
+ timestamp: "2023-05-30T02:53:56.000Z",
4282
+ id_version: 9,
4283
+ width: null,
4284
+ height: null,
4285
+ scene_type: null,
4286
+ image_shot_type: null,
4287
+ last_modified: "2023-06-05T23:49:49.000Z"
4288
+ }],
4289
+ "38445-11": [{
4290
+ id: 35548,
4291
+ status: null,
4292
+ image_id: 1,
4293
+ packing_type: "3",
4294
+ image_type: "1",
4295
+ article_id: "38445",
4296
+ src: "id-38445/11/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
4297
+ timestamp: "2023-05-30T02:56:10.000Z",
4298
+ id_version: 11,
4299
+ width: null,
4300
+ height: null,
4301
+ scene_type: null,
4302
+ image_shot_type: null,
4303
+ last_modified: "2023-06-05T23:49:49.000Z"
4304
+ }, {
4305
+ id: 35549,
4306
+ status: null,
4307
+ image_id: 3,
4308
+ packing_type: "3",
4309
+ image_type: "1",
4310
+ article_id: "38445",
4311
+ src: "id-38445/11/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
4312
+ timestamp: "2023-05-30T02:56:10.000Z",
4313
+ id_version: 11,
4314
+ width: null,
4315
+ height: null,
4316
+ scene_type: null,
4317
+ image_shot_type: null,
4318
+ last_modified: "2023-06-05T23:49:49.000Z"
4319
+ }, {
4320
+ id: 35550,
4321
+ status: null,
4322
+ image_id: 15,
4323
+ packing_type: "3",
4324
+ image_type: "1",
4325
+ article_id: "38445",
4326
+ src: "id-38445/11/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
4327
+ timestamp: "2023-05-30T02:56:10.000Z",
4328
+ id_version: 11,
4329
+ width: null,
4330
+ height: null,
4331
+ scene_type: null,
4332
+ image_shot_type: null,
4333
+ last_modified: "2023-06-05T23:49:49.000Z"
4334
+ }],
4335
+ "38444-11": [{
4336
+ id: 35554,
4337
+ status: null,
4338
+ image_id: 1,
4339
+ packing_type: "3",
4340
+ image_type: "1",
4341
+ article_id: "38444",
4342
+ src: "id-38444/11/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
4343
+ timestamp: "2023-05-30T02:56:11.000Z",
4344
+ id_version: 11,
4345
+ width: null,
4346
+ height: null,
4347
+ scene_type: null,
4348
+ image_shot_type: null,
4349
+ last_modified: "2023-06-05T23:49:49.000Z"
4350
+ }, {
4351
+ id: 35555,
4352
+ status: null,
4353
+ image_id: 3,
4354
+ packing_type: "3",
4355
+ image_type: "1",
4356
+ article_id: "38444",
4357
+ src: "id-38444/11/3-499ed708-8944-4271-aafa-ab88677d441a.png",
4358
+ timestamp: "2023-05-30T02:56:11.000Z",
4359
+ id_version: 11,
4360
+ width: null,
4361
+ height: null,
4362
+ scene_type: null,
4363
+ image_shot_type: null,
4364
+ last_modified: "2023-06-05T23:49:49.000Z"
4365
+ }, {
4366
+ id: 35556,
4367
+ status: null,
4368
+ image_id: 16,
4369
+ packing_type: "3",
4370
+ image_type: "1",
4371
+ article_id: "38444",
4372
+ src: "id-38444/11/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
4373
+ timestamp: "2023-05-30T02:56:11.000Z",
4374
+ id_version: 11,
4375
+ width: null,
4376
+ height: null,
4377
+ scene_type: null,
4378
+ image_shot_type: null,
4379
+ last_modified: "2023-06-05T23:49:49.000Z"
4380
+ }],
4381
+ "38443-11": [{
4382
+ id: 35560,
4383
+ status: null,
4384
+ image_id: 1,
4385
+ packing_type: "3",
4386
+ image_type: "1",
4387
+ article_id: "38443",
4388
+ src: "id-38443/11/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
4389
+ timestamp: "2023-05-30T02:56:11.000Z",
4390
+ id_version: 11,
4391
+ width: null,
4392
+ height: null,
4393
+ scene_type: null,
4394
+ image_shot_type: null,
4395
+ last_modified: "2023-06-05T23:49:49.000Z"
4396
+ }, {
4397
+ id: 35561,
4398
+ status: null,
4399
+ image_id: 3,
4400
+ packing_type: "3",
4401
+ image_type: "1",
4402
+ article_id: "38443",
4403
+ src: "id-38443/11/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
4404
+ timestamp: "2023-05-30T02:56:11.000Z",
4405
+ id_version: 11,
4406
+ width: null,
4407
+ height: null,
4408
+ scene_type: null,
4409
+ image_shot_type: null,
4410
+ last_modified: "2023-06-05T23:49:49.000Z"
4411
+ }, {
4412
+ id: 35562,
4413
+ status: null,
4414
+ image_id: 16,
4415
+ packing_type: "3",
4416
+ image_type: "1",
4417
+ article_id: "38443",
4418
+ src: "id-38443/11/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
4419
+ timestamp: "2023-05-30T02:56:11.000Z",
4420
+ id_version: 11,
4421
+ width: null,
4422
+ height: null,
4423
+ scene_type: null,
4424
+ image_shot_type: null,
4425
+ last_modified: "2023-06-05T23:49:49.000Z"
4426
+ }],
4427
+ "38445-12": [{
4428
+ id: 35563,
4429
+ status: null,
4430
+ image_id: 1,
4431
+ packing_type: "3",
4432
+ image_type: "1",
4433
+ article_id: "38445",
4434
+ src: "id-38445/12/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
4435
+ timestamp: "2023-05-30T02:58:09.000Z",
4436
+ id_version: 12,
4437
+ width: null,
4438
+ height: null,
4439
+ scene_type: null,
4440
+ image_shot_type: null,
4441
+ last_modified: "2023-06-05T23:49:49.000Z"
4442
+ }, {
4443
+ id: 35564,
4444
+ status: null,
4445
+ image_id: 3,
4446
+ packing_type: "3",
4447
+ image_type: "1",
4448
+ article_id: "38445",
4449
+ src: "id-38445/12/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
4450
+ timestamp: "2023-05-30T02:58:09.000Z",
4451
+ id_version: 12,
4452
+ width: null,
4453
+ height: null,
4454
+ scene_type: null,
4455
+ image_shot_type: null,
4456
+ last_modified: "2023-06-05T23:49:49.000Z"
4457
+ }, {
4458
+ id: 35565,
4459
+ status: null,
4460
+ image_id: 15,
4461
+ packing_type: "3",
4462
+ image_type: "1",
4463
+ article_id: "38445",
4464
+ src: "id-38445/12/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
4465
+ timestamp: "2023-05-30T02:58:09.000Z",
4466
+ id_version: 12,
4467
+ width: null,
4468
+ height: null,
4469
+ scene_type: null,
4470
+ image_shot_type: null,
4471
+ last_modified: "2023-06-05T23:49:49.000Z"
4472
+ }],
4473
+ "38445-13": [{
4474
+ id: 35566,
4475
+ status: null,
4476
+ image_id: 1,
4477
+ packing_type: "3",
4478
+ image_type: "1",
4479
+ article_id: "38445",
4480
+ src: "id-38445/13/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
4481
+ timestamp: "2023-05-30T02:58:09.000Z",
4482
+ id_version: 13,
4483
+ width: null,
4484
+ height: null,
4485
+ scene_type: null,
4486
+ image_shot_type: null,
4487
+ last_modified: "2023-06-05T23:49:49.000Z"
4488
+ }, {
4489
+ id: 35567,
4490
+ status: null,
4491
+ image_id: 3,
4492
+ packing_type: "3",
4493
+ image_type: "1",
4494
+ article_id: "38445",
4495
+ src: "id-38445/13/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
4496
+ timestamp: "2023-05-30T02:58:09.000Z",
4497
+ id_version: 13,
4498
+ width: null,
4499
+ height: null,
4500
+ scene_type: null,
4501
+ image_shot_type: null,
4502
+ last_modified: "2023-06-05T23:49:49.000Z"
4503
+ }, {
4504
+ id: 35568,
4505
+ status: null,
4506
+ image_id: 15,
4507
+ packing_type: "3",
4508
+ image_type: "1",
4509
+ article_id: "38445",
4510
+ src: "id-38445/13/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
4511
+ timestamp: "2023-05-30T02:58:09.000Z",
4512
+ id_version: 13,
4513
+ width: null,
4514
+ height: null,
4515
+ scene_type: null,
4516
+ image_shot_type: null,
4517
+ last_modified: "2023-06-05T23:49:49.000Z"
4518
+ }],
4519
+ "38444-12": [{
4520
+ id: 35569,
4521
+ status: null,
4522
+ image_id: 1,
4523
+ packing_type: "3",
4524
+ image_type: "1",
4525
+ article_id: "38444",
4526
+ src: "id-38444/12/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
4527
+ timestamp: "2023-05-30T02:58:10.000Z",
4528
+ id_version: 12,
4529
+ width: null,
4530
+ height: null,
4531
+ scene_type: null,
4532
+ image_shot_type: null,
4533
+ last_modified: "2023-06-05T23:49:49.000Z"
4534
+ }, {
4535
+ id: 35570,
4536
+ status: null,
4537
+ image_id: 3,
4538
+ packing_type: "3",
4539
+ image_type: "1",
4540
+ article_id: "38444",
4541
+ src: "id-38444/12/3-499ed708-8944-4271-aafa-ab88677d441a.png",
4542
+ timestamp: "2023-05-30T02:58:10.000Z",
4543
+ id_version: 12,
4544
+ width: null,
4545
+ height: null,
4546
+ scene_type: null,
4547
+ image_shot_type: null,
4548
+ last_modified: "2023-06-05T23:49:49.000Z"
4549
+ }, {
4550
+ id: 35571,
4551
+ status: null,
4552
+ image_id: 16,
4553
+ packing_type: "3",
4554
+ image_type: "1",
4555
+ article_id: "38444",
4556
+ src: "id-38444/12/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
4557
+ timestamp: "2023-05-30T02:58:10.000Z",
4558
+ id_version: 12,
4559
+ width: null,
4560
+ height: null,
4561
+ scene_type: null,
4562
+ image_shot_type: null,
4563
+ last_modified: "2023-06-05T23:49:49.000Z"
4564
+ }],
4565
+ "38444-13": [{
4566
+ id: 35572,
4567
+ status: null,
4568
+ image_id: 1,
4569
+ packing_type: "3",
4570
+ image_type: "1",
4571
+ article_id: "38444",
4572
+ src: "id-38444/13/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
4573
+ timestamp: "2023-05-30T02:58:10.000Z",
4574
+ id_version: 13,
4575
+ width: null,
4576
+ height: null,
4577
+ scene_type: null,
4578
+ image_shot_type: null,
4579
+ last_modified: "2023-06-05T23:49:49.000Z"
4580
+ }, {
4581
+ id: 35573,
4582
+ status: null,
4583
+ image_id: 3,
4584
+ packing_type: "3",
4585
+ image_type: "1",
4586
+ article_id: "38444",
4587
+ src: "id-38444/13/3-499ed708-8944-4271-aafa-ab88677d441a.png",
4588
+ timestamp: "2023-05-30T02:58:10.000Z",
4589
+ id_version: 13,
4590
+ width: null,
4591
+ height: null,
4592
+ scene_type: null,
4593
+ image_shot_type: null,
4594
+ last_modified: "2023-06-05T23:49:49.000Z"
4595
+ }, {
4596
+ id: 35574,
4597
+ status: null,
4598
+ image_id: 16,
4599
+ packing_type: "3",
4600
+ image_type: "1",
4601
+ article_id: "38444",
4602
+ src: "id-38444/13/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
4603
+ timestamp: "2023-05-30T02:58:10.000Z",
4604
+ id_version: 13,
4605
+ width: null,
4606
+ height: null,
4607
+ scene_type: null,
4608
+ image_shot_type: null,
4609
+ last_modified: "2023-06-05T23:49:49.000Z"
4610
+ }],
4611
+ "38443-12": [{
4612
+ id: 35575,
4613
+ status: null,
4614
+ image_id: 1,
4615
+ packing_type: "3",
4616
+ image_type: "1",
4617
+ article_id: "38443",
4618
+ src: "id-38443/12/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
4619
+ timestamp: "2023-05-30T02:58:10.000Z",
4620
+ id_version: 12,
4621
+ width: null,
4622
+ height: null,
4623
+ scene_type: null,
4624
+ image_shot_type: null,
4625
+ last_modified: "2023-06-05T23:49:49.000Z"
4626
+ }, {
4627
+ id: 35576,
4628
+ status: null,
4629
+ image_id: 3,
4630
+ packing_type: "3",
4631
+ image_type: "1",
4632
+ article_id: "38443",
4633
+ src: "id-38443/12/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
4634
+ timestamp: "2023-05-30T02:58:10.000Z",
4635
+ id_version: 12,
4636
+ width: null,
4637
+ height: null,
4638
+ scene_type: null,
4639
+ image_shot_type: null,
4640
+ last_modified: "2023-06-05T23:49:49.000Z"
4641
+ }, {
4642
+ id: 35577,
4643
+ status: null,
4644
+ image_id: 16,
4645
+ packing_type: "3",
4646
+ image_type: "1",
4647
+ article_id: "38443",
4648
+ src: "id-38443/12/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
4649
+ timestamp: "2023-05-30T02:58:10.000Z",
4650
+ id_version: 12,
4651
+ width: null,
4652
+ height: null,
4653
+ scene_type: null,
4654
+ image_shot_type: null,
4655
+ last_modified: "2023-06-05T23:49:49.000Z"
4656
+ }],
4657
+ "38443-13": [{
4658
+ id: 35578,
4659
+ status: null,
4660
+ image_id: 1,
4661
+ packing_type: "3",
4662
+ image_type: "1",
4663
+ article_id: "38443",
4664
+ src: "id-38443/13/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
4665
+ timestamp: "2023-05-30T02:58:11.000Z",
4666
+ id_version: 13,
4667
+ width: null,
4668
+ height: null,
4669
+ scene_type: null,
4670
+ image_shot_type: null,
4671
+ last_modified: "2023-06-05T23:49:49.000Z"
4672
+ }, {
4673
+ id: 35579,
4674
+ status: null,
4675
+ image_id: 3,
4676
+ packing_type: "3",
4677
+ image_type: "1",
4678
+ article_id: "38443",
4679
+ src: "id-38443/13/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
4680
+ timestamp: "2023-05-30T02:58:11.000Z",
4681
+ id_version: 13,
4682
+ width: null,
4683
+ height: null,
4684
+ scene_type: null,
4685
+ image_shot_type: null,
4686
+ last_modified: "2023-06-05T23:49:49.000Z"
4687
+ }, {
4688
+ id: 35580,
4689
+ status: null,
4690
+ image_id: 16,
4691
+ packing_type: "3",
4692
+ image_type: "1",
4693
+ article_id: "38443",
4694
+ src: "id-38443/13/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
4695
+ timestamp: "2023-05-30T02:58:11.000Z",
4696
+ id_version: 13,
4697
+ width: null,
4698
+ height: null,
4699
+ scene_type: null,
4700
+ image_shot_type: null,
4701
+ last_modified: "2023-06-05T23:49:49.000Z"
4702
+ }],
4703
+ "38445-15": [{
4704
+ id: 35584,
4705
+ status: null,
4706
+ image_id: 1,
4707
+ packing_type: "3",
4708
+ image_type: "1",
4709
+ article_id: "38445",
4710
+ src: "id-38445/15/1-ea431302-60d1-456c-ae80-20aedf4ddffb.png",
4711
+ timestamp: "2023-05-30T03:01:10.000Z",
4712
+ id_version: 15,
4713
+ width: null,
4714
+ height: null,
4715
+ scene_type: null,
4716
+ image_shot_type: null,
4717
+ last_modified: "2023-06-05T23:49:49.000Z"
4718
+ }, {
4719
+ id: 35585,
4720
+ status: null,
4721
+ image_id: 3,
4722
+ packing_type: "3",
4723
+ image_type: "1",
4724
+ article_id: "38445",
4725
+ src: "id-38445/15/3-94e1e632-5833-4dbc-81bc-fe1c41547313.png",
4726
+ timestamp: "2023-05-30T03:01:10.000Z",
4727
+ id_version: 15,
4728
+ width: null,
4729
+ height: null,
4730
+ scene_type: null,
4731
+ image_shot_type: null,
4732
+ last_modified: "2023-06-05T23:49:49.000Z"
4733
+ }, {
4734
+ id: 35586,
4735
+ status: null,
4736
+ image_id: 15,
4737
+ packing_type: "3",
4738
+ image_type: "1",
4739
+ article_id: "38445",
4740
+ src: "id-38445/15/15-b448cb20-51c5-411a-a876-73a35a30dd53.png",
4741
+ timestamp: "2023-05-30T03:01:10.000Z",
4742
+ id_version: 15,
4743
+ width: null,
4744
+ height: null,
4745
+ scene_type: null,
4746
+ image_shot_type: null,
4747
+ last_modified: "2023-06-05T23:49:49.000Z"
4748
+ }],
4749
+ "38444-15": [{
4750
+ id: 35590,
4751
+ status: null,
4752
+ image_id: 1,
4753
+ packing_type: "3",
4754
+ image_type: "1",
4755
+ article_id: "38444",
4756
+ src: "id-38444/15/1-09357e12-86f5-4eb8-86c3-c9149e9fa5b2.png",
4757
+ timestamp: "2023-05-30T03:01:11.000Z",
4758
+ id_version: 15,
4759
+ width: null,
4760
+ height: null,
4761
+ scene_type: null,
4762
+ image_shot_type: null,
4763
+ last_modified: "2023-06-05T23:49:49.000Z"
4764
+ }, {
4765
+ id: 35591,
4766
+ status: null,
4767
+ image_id: 3,
4768
+ packing_type: "3",
4769
+ image_type: "1",
4770
+ article_id: "38444",
4771
+ src: "id-38444/15/3-499ed708-8944-4271-aafa-ab88677d441a.png",
4772
+ timestamp: "2023-05-30T03:01:11.000Z",
4773
+ id_version: 15,
4774
+ width: null,
4775
+ height: null,
4776
+ scene_type: null,
4777
+ image_shot_type: null,
4778
+ last_modified: "2023-06-05T23:49:49.000Z"
4779
+ }, {
4780
+ id: 35592,
4781
+ status: null,
4782
+ image_id: 16,
4783
+ packing_type: "3",
4784
+ image_type: "1",
4785
+ article_id: "38444",
4786
+ src: "id-38444/15/16-25d30eb9-65e8-49bf-bef5-ce7398305baa.png",
4787
+ timestamp: "2023-05-30T03:01:11.000Z",
4788
+ id_version: 15,
4789
+ width: null,
4790
+ height: null,
4791
+ scene_type: null,
4792
+ image_shot_type: null,
4793
+ last_modified: "2023-06-05T23:49:49.000Z"
4794
+ }],
4795
+ "38443-15": [{
4796
+ id: 35596,
4797
+ status: null,
4798
+ image_id: 1,
4799
+ packing_type: "3",
4800
+ image_type: "1",
4801
+ article_id: "38443",
4802
+ src: "id-38443/15/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
4803
+ timestamp: "2023-05-30T03:01:12.000Z",
4804
+ id_version: 15,
4805
+ width: null,
4806
+ height: null,
4807
+ scene_type: null,
4808
+ image_shot_type: null,
4809
+ last_modified: "2023-06-05T23:49:49.000Z"
4810
+ }, {
4811
+ id: 35597,
4812
+ status: null,
4813
+ image_id: 3,
4814
+ packing_type: "3",
4815
+ image_type: "1",
4816
+ article_id: "38443",
4817
+ src: "id-38443/15/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
4818
+ timestamp: "2023-05-30T03:01:12.000Z",
4819
+ id_version: 15,
4820
+ width: null,
4821
+ height: null,
4822
+ scene_type: null,
4823
+ image_shot_type: null,
4824
+ last_modified: "2023-06-05T23:49:49.000Z"
4825
+ }, {
4826
+ id: 35598,
4827
+ status: null,
4828
+ image_id: 16,
4829
+ packing_type: "3",
4830
+ image_type: "1",
4831
+ article_id: "38443",
4832
+ src: "id-38443/15/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
4833
+ timestamp: "2023-05-30T03:01:12.000Z",
4834
+ id_version: 15,
4835
+ width: null,
4836
+ height: null,
4837
+ scene_type: null,
4838
+ image_shot_type: null,
4839
+ last_modified: "2023-06-05T23:49:49.000Z"
4840
+ }],
4841
+ "39431-3": [{
4842
+ id: 35599,
4843
+ status: null,
4844
+ image_id: 1,
4845
+ packing_type: "2",
4846
+ image_type: "1",
4847
+ article_id: "39431",
4848
+ src: "id-39431/3/1-c3433ea3-1cdf-447b-b918-dfc4336f6540.jpg",
4849
+ timestamp: "2023-06-01T17:15:13.000Z",
4850
+ id_version: 3,
4851
+ width: 1200,
4852
+ height: 1200,
4853
+ scene_type: null,
4854
+ image_shot_type: null,
4855
+ last_modified: "2023-06-05T23:49:49.000Z"
4856
+ }, {
4857
+ id: 35600,
4858
+ status: null,
4859
+ image_id: 3,
4860
+ packing_type: "2",
4861
+ image_type: "1",
4862
+ article_id: "39431",
4863
+ src: "id-39431/3/3-0d653ee6-520d-4aea-828c-a7b3bfcc5df0.jpg",
4864
+ timestamp: "2023-06-01T17:15:13.000Z",
4865
+ id_version: 3,
4866
+ width: 1200,
4867
+ height: 1200,
4868
+ scene_type: null,
4869
+ image_shot_type: null,
4870
+ last_modified: "2023-06-05T23:49:49.000Z"
4871
+ }],
4872
+ "39432-3": [{
4873
+ id: 35601,
4874
+ status: null,
4875
+ image_id: 1,
4876
+ packing_type: "2",
4877
+ image_type: "1",
4878
+ article_id: "39432",
4879
+ src: "id-39432/3/1-f9071ec5-b553-4a09-9b15-735536b7919d.jpg",
4880
+ timestamp: "2023-06-01T17:15:57.000Z",
4881
+ id_version: 3,
4882
+ width: 800,
4883
+ height: 800,
4884
+ scene_type: null,
4885
+ image_shot_type: null,
4886
+ last_modified: "2023-06-05T23:49:49.000Z"
4887
+ }, {
4888
+ id: 35602,
4889
+ status: null,
4890
+ image_id: 3,
4891
+ packing_type: "2",
4892
+ image_type: "1",
4893
+ article_id: "39432",
4894
+ src: "id-39432/3/3-80561c02-198d-4829-812b-2afd8683b174.jpg",
4895
+ timestamp: "2023-06-01T17:15:57.000Z",
4896
+ id_version: 3,
4897
+ width: 800,
4898
+ height: 800,
4899
+ scene_type: null,
4900
+ image_shot_type: null,
4901
+ last_modified: "2023-06-05T23:49:49.000Z"
4902
+ }],
4903
+ "39470-3": [{
4904
+ id: 35626,
4905
+ status: null,
4906
+ image_id: 21,
4907
+ packing_type: "3",
4908
+ image_type: "1",
4909
+ article_id: "39470",
4910
+ src: "id-39470/3/21-189ed79b-db11-4134-be8f-740d707176ba.png",
4911
+ timestamp: "2023-06-29T01:26:12.000Z",
4912
+ id_version: 3,
4913
+ width: 1030,
4914
+ height: 700,
4915
+ scene_type: null,
4916
+ image_shot_type: null,
4917
+ last_modified: "2023-06-29T01:26:12.000Z"
4918
+ }, {
4919
+ id: 35627,
4920
+ status: null,
4921
+ image_id: 1,
4922
+ packing_type: "2",
4923
+ image_type: "1",
4924
+ article_id: "39470",
4925
+ src: "id-39470/3/1-c1cd4d21-c7d3-4ae8-b82e-560be828449f.png",
4926
+ timestamp: "2023-06-29T01:26:12.000Z",
4927
+ id_version: 3,
4928
+ width: 1091,
4929
+ height: 353,
4930
+ scene_type: null,
4931
+ image_shot_type: null,
4932
+ last_modified: "2023-06-29T01:26:12.000Z"
4933
+ }],
4934
+ "39470-5": [{
4935
+ id: 35630,
4936
+ status: null,
4937
+ image_id: 21,
4938
+ packing_type: "3",
4939
+ image_type: "1",
4940
+ article_id: "39470",
4941
+ src: "id-39470/5/21-189ed79b-db11-4134-be8f-740d707176ba.png",
4942
+ timestamp: "2023-06-29T01:28:07.000Z",
4943
+ id_version: 5,
4944
+ width: 1030,
4945
+ height: 700,
4946
+ scene_type: null,
4947
+ image_shot_type: null,
4948
+ last_modified: "2023-06-29T01:28:07.000Z"
4949
+ }, {
4950
+ id: 35631,
4951
+ status: null,
4952
+ image_id: 1,
4953
+ packing_type: "2",
4954
+ image_type: "1",
4955
+ article_id: "39470",
4956
+ src: "id-39470/5/1-c1cd4d21-c7d3-4ae8-b82e-560be828449f.png",
4957
+ timestamp: "2023-06-29T01:28:07.000Z",
4958
+ id_version: 5,
4959
+ width: 1091,
4960
+ height: 353,
4961
+ scene_type: null,
4962
+ image_shot_type: null,
4963
+ last_modified: "2023-06-29T01:28:07.000Z"
4964
+ }]
4965
+ };
4966
+ var auditors = [{
4967
+ name: "José",
4968
+ last_name: "Castañeda",
4969
+ id_user: 37
4970
+ }, {
4971
+ name: "Eduardo ",
4972
+ last_name: " Reyes",
4973
+ id_user: 195
4974
+ }];
4975
+ var textSpecialists = [{
4976
+ name: "Especialista",
4977
+ last_name: "Textos",
4978
+ id_user: 36
4979
+ }, {
4980
+ name: "ESPECIALISTA TXTS PRUEBA",
4981
+ last_name: "",
4982
+ id_user: 54
4983
+ }, {
4984
+ name: "Gerson",
4985
+ last_name: "Martínez",
4986
+ id_user: 57
4987
+ }, {
4988
+ name: "Angel",
4989
+ last_name: "Perea",
4990
+ id_user: 232
4991
+ }];
4992
+ var imagesSpecialists = [{
4993
+ name: "Especialista",
4994
+ last_name: "Imágenes",
4995
+ id_user: 35
4996
+ }, {
4997
+ name: "ESPECIALISTA ED PRUEBA",
4998
+ last_name: "",
4999
+ id_user: 55
5000
+ }, {
5001
+ name: "Uriel",
5002
+ last_name: "Herrera",
5003
+ id_user: 196
5004
+ }];
5005
+ var selected = [];
5006
+
5007
+ var setSelected = function setSelected(arr) {
5008
+ selected = arr;
5009
+ };
5010
+
5011
+ var onAssign = function onAssign(productData, assigneeID, assignationTarget, concept, target) {
5012
+ console.log(productData, assigneeID, assignationTarget, concept, target);
5013
+ };
5014
+
5015
+ GridProductsDefault.args = {
5016
+ gridView: false,
5017
+ selected: selected,
5018
+ setSelected: setSelected,
5019
+ products: (0, _utils.getProductsToTable)(products, textSpecialists, imagesSpecialists, auditors, images, onAssign),
5020
+ images: images,
5021
+ auditors: auditors,
5022
+ textSpecialists: textSpecialists,
5023
+ imagesSpecialists: imagesSpecialists,
5024
+ columnsArray: [{
5025
+ name: "Reg",
5026
+ flex: 1,
5027
+ minWidth: 100
5028
+ }, {
5029
+ name: "Orden",
5030
+ flex: 1,
5031
+ minWidth: 100
5032
+ }, {
5033
+ name: "UPC",
5034
+ flex: 1,
5035
+ minWidth: 100
5036
+ }, {
5037
+ name: "Nombre",
5038
+ flex: 1,
5039
+ minWidth: 200
5040
+ }, {
5041
+ name: "Marca",
5042
+ flex: 1,
5043
+ minWidth: 100
5044
+ }, {
5045
+ name: "Estatus",
5046
+ flex: 1,
5047
+ minWidth: 100
5048
+ }, {
5049
+ name: "Cadenas",
5050
+ flex: 1,
5051
+ minWidth: 100
5052
+ }, {
5053
+ name: "Prio",
5054
+ flex: 1,
5055
+ minWidth: 100
5056
+ }, {
5057
+ name: "E.D",
5058
+ flex: 1,
5059
+ minWidth: 100
5060
+ }, {
5061
+ name: "Cont.",
5062
+ flex: 1,
5063
+ minWidth: 100
5064
+ }],
5065
+ chkOnChange: function chkOnChange(e, product) {
5066
+ var tempArray = selected.slice();
5067
+
5068
+ if (e.target.checked) {
5069
+ tempArray.push(product);
5070
+ setSelected(tempArray);
5071
+ } else {
5072
+ var filteredArray = tempArray.filter(function (item) {
5073
+ return !(item.orderId === product.orderId && item.article.id_article === product.article.id_article);
5074
+ });
5075
+ setSelected(filteredArray);
5076
+ }
5077
+ },
5078
+ chkChecked: function chkChecked(product) {
5079
+ var productSelected = selected.find(function (prod) {
5080
+ return prod.orderId === product.orderId && prod.article.id_article === product.article.id_article;
5081
+ });
5082
+ return (productSelected === null || productSelected === void 0 ? void 0 : productSelected.length) > 0;
5083
+ },
5084
+ onGridClick: function onGridClick(e, product, i) {
5085
+ if (!e.target.closest("[id^=users]")) console.log(product, i);
5086
+ },
5087
+ chkCheckedAll: function chkCheckedAll() {
5088
+ return selected.length === products.length;
5089
+ },
5090
+ checkAll: function checkAll(e) {
5091
+ var chks = document.querySelectorAll(".chk-item > input");
5092
+ e.target.checked ? setSelected(products) : setSelected([]);
5093
+ chks === null || chks === void 0 ? void 0 : chks.forEach(function (chk) {
5094
+ return chk.checked = e.target.checked;
5095
+ });
5096
+ }
5097
+ };