contentoh-components-library 21.5.3 → 21.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/organisms/InputGroup/index.js +1 -1
- package/dist/components/organisms/Table/styles.js +1 -1
- package/dist/components/pages/MultipleEdition/saveData.js +9 -19
- package/dist/components/pages/MultipleEdition/styles.js +1 -1
- package/dist/components/pages/MultipleEdition/utils.js +86 -153
- package/package.json +4 -1
- package/src/assets/images/Icons/addv2.svg +8 -0
- package/src/assets/images/Icons/beenhere.svg +9 -0
- package/src/assets/images/Icons/checkv2.svg +8 -0
- package/src/assets/images/Icons/close-magenta.svg +9 -0
- package/src/assets/images/Icons/close.svg +8 -0
- package/src/assets/images/Icons/closeCircle.svg +8 -0
- package/src/assets/images/Icons/delete-forever-red.svg +9 -0
- package/src/assets/images/Icons/delete-forever-white.svg +10 -0
- package/src/assets/images/Icons/edit.svg +8 -0
- package/src/assets/images/Icons/fullscreen.svg +3 -0
- package/src/assets/images/Icons/infoNR.svg +8 -0
- package/src/assets/images/Icons/options.svg +3 -0
- package/src/assets/images/Icons/save-white-gray.svg +9 -0
- package/src/assets/images/Icons/save-white.svg +9 -0
- package/src/assets/images/Icons/save.svg +8 -0
- package/src/assets/images/Icons/search.svg +3 -0
- package/src/assets/images/Icons/settings.svg +8 -0
- package/src/assets/images/Icons/trash.svg +8 -0
- package/src/assets/images/Icons/undo.svg +8 -0
- package/src/assets/images/Icons/upload-file-white.svg +4 -0
- package/src/assets/images/Icons/upload-file.svg +10 -0
- package/src/assets/images/Icons/upload_file.svg +10 -0
- package/src/assets/images/Icons/warningv2.svg +3 -0
- package/src/assets/images/checkBox/checkrosa.svg +3 -0
- package/src/assets/images/checkBox/checkverde.svg +3 -0
- package/src/assets/images/flagsv2/highPriority.svg +3 -0
- package/src/assets/images/flagsv2/lowPriority.svg +3 -0
- package/src/assets/images/flagsv2/mediumPriority.svg +3 -0
- package/src/assets/images/flagsv2/noPriority.svg +3 -0
- package/src/assets/images/generalButton/closeIconWhite.svg +4 -0
- package/src/assets/images/generalButton/closeIconv2.svg +4 -0
- package/src/assets/images/generalButton/saveIconpink.svg +3 -0
- package/src/components/atoms/Avatar/index.js +8 -2
- package/src/components/atoms/ButtonV2/ButtonV2.stories.js +1 -0
- package/src/components/atoms/ButtonV2/index.js +1 -0
- package/src/components/atoms/ButtonV2/styles.js +16 -0
- package/src/components/atoms/CharsMissing/Wysiwyg.stories.js +12 -0
- package/src/components/atoms/CharsMissing/index.js +60 -0
- package/src/components/atoms/CharsMissing/styles.js +44 -0
- package/src/components/atoms/CheckBox/CheckBox.stories.js +5 -0
- package/src/components/atoms/CheckBox/index.js +5 -1
- package/src/components/atoms/CheckBox/styles.js +9 -3
- package/src/components/atoms/CustomChip/CustomChip.stories.js +16 -0
- package/src/components/atoms/CustomChip/index.js +34 -0
- package/src/components/atoms/CustomChip/styles.js +6 -0
- package/src/components/atoms/FeatureTagv2/FeatureTagv2.stories.js +16 -0
- package/src/components/atoms/FeatureTagv2/index.js +10 -0
- package/src/components/atoms/FeatureTagv2/styles.js +56 -0
- package/src/components/atoms/GeneralButton/styles.js +46 -0
- package/src/components/atoms/GeneralInput/index.js +3 -0
- package/src/components/atoms/GeneralInput/styles.js +19 -1
- package/src/components/atoms/GeneralInputv2/GeneralInputv2.stories.js +33 -0
- package/src/components/atoms/GeneralInputv2/index.js +155 -0
- package/src/components/atoms/GeneralInputv2/styles.js +67 -0
- package/src/components/atoms/InputFormatter/index.js +2 -1
- package/src/components/atoms/InputFormatter/styles.js +9 -4
- package/src/components/atoms/InputFormatterv2/Wysiwyg.stories.js +12 -0
- package/src/components/atoms/InputFormatterv2/index.js +148 -0
- package/src/components/atoms/InputFormatterv2/styles.js +39 -0
- package/src/components/atoms/InputImages/InputImages.stories.js +19 -0
- package/src/components/atoms/InputImages/index.js +25 -0
- package/src/components/atoms/InputImages/styles.js +17 -0
- package/src/components/atoms/Multiselect/Multiselect.stories.js +364 -0
- package/src/components/atoms/Multiselect/index.js +351 -0
- package/src/components/atoms/Multiselect/styles.js +33 -0
- package/src/components/atoms/NumberMandatory/NumberMandatory.stories.js +19 -0
- package/src/components/atoms/NumberMandatory/index.js +16 -0
- package/src/components/atoms/NumberMandatory/styles.js +11 -0
- package/src/components/atoms/ObservationFlag/ObservationFlag.stories.js +20 -0
- package/src/components/atoms/ObservationFlag/index.js +167 -0
- package/src/components/atoms/ObservationFlag/styles.js +104 -0
- package/src/components/atoms/PriorityFlagv2/PriorityFlagv2.stories.js +20 -0
- package/src/components/atoms/PriorityFlagv2/index.js +20 -0
- package/src/components/atoms/PriorityFlagv2/styles.js +6 -0
- package/src/components/atoms/ProductImage/index.js +24 -11
- package/src/components/atoms/ProductImage/styles.js +7 -0
- package/src/components/atoms/ProductImagev2/ProductImagev2.stories.js +28 -0
- package/src/components/atoms/ProductImagev2/index.js +16 -0
- package/src/components/atoms/ProductImagev2/styles.js +62 -0
- package/src/components/atoms/Progress/Progress.stories.js +25 -0
- package/src/components/atoms/Progress/index.js +74 -0
- package/src/components/atoms/Progress/styles.js +98 -0
- package/src/components/atoms/ScreenHeaderv2/ScreenHeaderv2.stories.js +53 -0
- package/src/components/atoms/ScreenHeaderv2/index.js +134 -0
- package/src/components/atoms/ScreenHeaderv2/styles.js +103 -0
- package/src/components/atoms/Selectv2/VersionSelect.js +27 -0
- package/src/components/atoms/Selectv2/index.js +35 -0
- package/src/components/atoms/Selectv2/style.js +93 -0
- package/src/components/atoms/SliderToolTip/styles.js +1 -1
- package/src/components/atoms/TabSection/index.js +1 -1
- package/src/components/atoms/TabSection/styles.js +0 -3
- package/src/components/atoms/TabSectionv2/TabSection.stories.js +25 -0
- package/src/components/atoms/TabSectionv2/index.js +9 -0
- package/src/components/atoms/TabSectionv2/styles.js +20 -0
- package/src/components/atoms/TooltipLight/Tooltip.stories.js +20 -0
- package/src/components/atoms/TooltipLight/index.js +46 -0
- package/src/components/atoms/TooltipLight/styles.js +65 -0
- package/src/components/atoms/WordsMissing/Wysiwyg.stories.js +12 -0
- package/src/components/atoms/WordsMissing/index.js +60 -0
- package/src/components/atoms/WordsMissing/styles.js +10 -0
- package/src/components/molecules/AddGroup/AddGroup.stories.js +15 -0
- package/src/components/molecules/AddGroup/index.js +84 -0
- package/src/components/molecules/AddGroup/styles.js +141 -0
- package/src/components/molecules/AsignationInfo/AsignationInfo.stories.js +17 -0
- package/src/components/molecules/AsignationInfo/index.js +108 -0
- package/src/components/molecules/AsignationInfo/styles.js +86 -0
- package/src/components/molecules/BoxAttribute/index.js +32 -25
- package/src/components/molecules/BoxAttribute/styles.js +1 -1
- package/src/components/molecules/BoxButtons/index.js +23 -22
- package/src/components/molecules/CarouselImagesLogin/index.js +1 -1
- package/src/components/molecules/EditionActiveImagev2/EditionActiveImagev2.stories.js +12 -0
- package/src/components/molecules/EditionActiveImagev2/index.js +15 -0
- package/src/components/molecules/EditionActiveImagev2/styles.js +7 -0
- package/src/components/molecules/EditionTabs/EditionTabs.stories.js +12 -0
- package/src/components/molecules/EditionTabs/index.js +33 -0
- package/src/components/molecules/EditionTabs/styles.js +24 -0
- package/src/components/molecules/FeaturesBarv2/FeaturesBarv2.stories.js +20 -0
- package/src/components/molecules/FeaturesBarv2/index.js +32 -0
- package/src/components/molecules/FeaturesBarv2/styles.js +17 -0
- package/src/components/molecules/GalleryElement/index.js +76 -1
- package/src/components/molecules/GalleryElementv2/GalleryElementv2.stories.js +30 -0
- package/src/components/molecules/GalleryElementv2/index.js +142 -0
- package/src/components/molecules/GalleryElementv2/styles.js +119 -0
- package/src/components/molecules/GalleryHeader/index.js +1 -0
- package/src/components/molecules/GalleryHeaderv2/GalleryHeaderv2.stories.js +10 -0
- package/src/components/molecules/GalleryHeaderv2/index.js +25 -0
- package/src/components/molecules/GalleryHeaderv2/styles.js +47 -0
- package/src/components/molecules/GroupSelect/GroupSelect.stories.js +35 -0
- package/src/components/molecules/GroupSelect/SelectItem.js +105 -0
- package/src/components/molecules/GroupSelect/index.js +190 -0
- package/src/components/molecules/GroupSelect/styles.js +124 -0
- package/src/components/molecules/HeaderTop/index.js +52 -6
- package/src/components/molecules/HeaderTopv2/HeaderTopv2.stories.js +10 -0
- package/src/components/molecules/HeaderTopv2/index.js +100 -0
- package/src/components/molecules/HeaderTopv2/styles.js +33 -0
- package/src/components/molecules/ImageSelectorv2/ImageSelectorv2.stories.js +46 -0
- package/src/components/molecules/ImageSelectorv2/index.js +22 -0
- package/src/components/molecules/ImageSelectorv2/styles.js +15 -0
- package/src/components/molecules/Phase/Phase.stories.js +107 -0
- package/src/components/molecules/Phase/index.js +391 -0
- package/src/components/molecules/Phase/styles.js +97 -0
- package/src/components/molecules/ProductNameHeader/index.js +19 -1
- package/src/components/molecules/ProductNameHeaderv2/ProductNameHeaderv2.stories.js +37 -0
- package/src/components/molecules/ProductNameHeaderv2/index.js +12 -0
- package/src/components/molecules/ProductNameHeaderv2/styles.js +10 -0
- package/src/components/molecules/ProductSkuStatus/ProductSkuStatus.stories.js +37 -0
- package/src/components/molecules/ProductSkuStatus/index.js +26 -0
- package/src/components/molecules/ProductSkuStatus/styles.js +7 -0
- package/src/components/molecules/RetailerSelectorv2/RetailerSelectorv2.stories.js +35 -0
- package/src/components/molecules/RetailerSelectorv2/index.js +80 -0
- package/src/components/molecules/RetailerSelectorv2/styles.js +21 -0
- package/src/components/molecules/ServiceDataValidator/ServiceDataValidator.stories.js +90 -0
- package/src/components/molecules/ServiceDataValidator/index.js +49 -0
- package/src/components/molecules/ServiceDataValidator/styles.js +36 -0
- package/src/components/molecules/SignInLogin/index.js +11 -11
- package/src/components/molecules/StatusAsignationInfo/FinancedCompanies.js +501 -63
- package/src/components/molecules/StatusAsignationInfo/index.js +1 -1
- package/src/components/molecules/StatusRetailer/StatusAsignationInfo.stories.js +17 -0
- package/src/components/molecules/StatusRetailer/index.js +55 -0
- package/src/components/molecules/StatusRetailer/styles.js +85 -0
- package/src/components/molecules/StripeCardSelector/CardSelector.stories.js +1 -2
- package/src/components/molecules/TabsMenuv2/TabsMenuv2.stories.js +19 -0
- package/src/components/molecules/TabsMenuv2/index.js +112 -0
- package/src/components/molecules/TabsMenuv2/styles.js +19 -0
- package/src/components/molecules/TagAndInput/index.js +8 -6
- package/src/components/molecules/TagAndInputv2/TagAndInputv2.stories.js +24 -0
- package/src/components/molecules/TagAndInputv2/index.js +86 -0
- package/src/components/molecules/TagAndInputv2/styles.js +35 -0
- package/src/components/molecules/Validation/Validation.stories.js +12 -0
- package/src/components/molecules/Validation/index.js +77 -0
- package/src/components/molecules/Validation/styles.js +19 -0
- package/src/components/molecules/VersionItemv2/VersionItemv2.stories.js +14 -0
- package/src/components/molecules/VersionItemv2/index.js +59 -0
- package/src/components/molecules/VersionItemv2/styles.js +47 -0
- package/src/components/organisms/BarButtons/BarButtons.stories.js +13 -0
- package/src/components/organisms/BarButtons/index.js +150 -0
- package/src/components/organisms/BarButtons/styles.js +54 -0
- package/src/components/organisms/Chat/Chat.stories.js +27 -7
- package/src/components/organisms/Chat/ContainerItems/index.js +18 -2
- package/src/components/organisms/Chat/ContainerItems/styles.js +14 -2
- package/src/components/organisms/Chat/ContentChat/index.js +88 -12
- package/src/components/organisms/Chat/Footer/index.js +11 -0
- package/src/components/organisms/Chat/index.js +46 -4
- package/src/components/organisms/Chat/styles.js +4 -0
- package/src/components/organisms/Chatv2/ChatLists/ChatLists.stories.js +65 -0
- package/src/components/organisms/Chatv2/ChatLists/Rotoplas.jpeg +0 -0
- package/src/components/organisms/Chatv2/ChatLists/THD.png +0 -0
- package/src/components/organisms/Chatv2/ChatLists/index.js +141 -0
- package/src/components/organisms/Chatv2/ChatLists/styles.js +162 -0
- package/src/components/organisms/Chatv2/Chatv2.stories.js +184 -0
- package/src/components/organisms/Chatv2/ContainerItems/ContainerItems.stories.js +142 -0
- package/src/components/organisms/Chatv2/ContainerItems/index.js +538 -0
- package/src/components/organisms/Chatv2/ContainerItems/styles.js +360 -0
- package/src/components/organisms/Chatv2/ContentChat/ContentChat.stories.js +102 -0
- package/src/components/organisms/Chatv2/ContentChat/Rotoplas.jpeg +0 -0
- package/src/components/organisms/Chatv2/ContentChat/THD.png +0 -0
- package/src/components/organisms/Chatv2/ContentChat/index.js +1016 -0
- package/src/components/organisms/Chatv2/ContentChat/styles.js +44 -0
- package/src/components/organisms/Chatv2/Footer/Footer.stories.js +22 -0
- package/src/components/organisms/Chatv2/Footer/index.js +668 -0
- package/src/components/organisms/Chatv2/Footer/styles.js +290 -0
- package/src/components/organisms/Chatv2/Header/Header.stories.js +66 -0
- package/src/components/organisms/Chatv2/Header/index.js +93 -0
- package/src/components/organisms/Chatv2/Header/styles.js +49 -0
- package/src/components/organisms/Chatv2/index.js +281 -0
- package/src/components/organisms/Chatv2/styles.js +85 -0
- package/src/components/organisms/CompleteServices/CompleteServices.stories.js +91 -0
- package/src/components/organisms/CompleteServices/index.js +82 -0
- package/src/components/organisms/CompleteServices/styles.js +35 -0
- package/src/components/organisms/DashboardMetric/index.js +6 -3
- package/src/components/organisms/DragAndDropPhases/DragAndDropPhases.stories.js +13 -0
- package/src/components/organisms/DragAndDropPhases/index.js +336 -0
- package/src/components/organisms/DragAndDropPhases/styles.js +107 -0
- package/src/components/organisms/DragPrueba/DragPrueba.stories.js +12 -0
- package/src/components/organisms/DragPrueba/index.js +57 -0
- package/src/components/organisms/DragPrueba/styles.js +8 -0
- package/src/components/organisms/EditGroup/EditGroup.stories.js +20 -0
- package/src/components/organisms/EditGroup/index.js +321 -0
- package/src/components/organisms/EditGroup/styles.js +207 -0
- package/src/components/organisms/FullProductNameHeader/index.js +13 -1
- package/src/components/organisms/FullProductNamev2/FullProductNamev2.stories.js +28 -0
- package/src/components/organisms/FullProductNamev2/index.js +101 -0
- package/src/components/organisms/FullProductNamev2/styles.js +49 -0
- package/src/components/organisms/FullTabsMenuv2/FullTabsMenuv2.stories.js +22 -0
- package/src/components/organisms/FullTabsMenuv2/index.js +142 -0
- package/src/components/organisms/FullTabsMenuv2/styles.js +47 -0
- package/src/components/organisms/GridProducts/GridProducts.stories.js +682 -107
- package/src/components/organisms/ImageDataTablev2/ImageDataTablev2.stories.js +24 -0
- package/src/components/organisms/ImageDataTablev2/index.js +124 -0
- package/src/components/organisms/ImageDataTablev2/styles.js +18 -0
- package/src/components/organisms/ImagePreviewerv2/ImagePreviewerv2.stories.js +38 -0
- package/src/components/organisms/ImagePreviewerv2/index.js +22 -0
- package/src/components/organisms/ImagePreviewerv2/styles.js +7 -0
- package/src/components/organisms/ImageUploader/ImageUploader.stories.js +15 -0
- package/src/components/organisms/ImageUploader/index.js +62 -0
- package/src/components/organisms/ImageUploader/styles.js +29 -0
- package/src/components/organisms/ImageVisor/ImageVisor.stories.js +15 -0
- package/src/components/organisms/ImageVisor/index.js +143 -0
- package/src/components/organisms/ImageVisor/styles.js +106 -0
- package/src/components/organisms/InputGroup/index.js +292 -144
- package/src/components/organisms/InputGroup/styles.js +31 -0
- package/src/components/organisms/InputGroupv2/InputGroupv2.stories.js +31 -0
- package/src/components/organisms/InputGroupv2/index.js +296 -0
- package/src/components/organisms/InputGroupv2/styles.js +90 -0
- package/src/components/organisms/MandatoryBar/MandatoryBar.stories.js +18 -0
- package/src/components/organisms/MandatoryBar/index.js +31 -0
- package/src/components/organisms/MandatoryBar/styles.js +12 -0
- package/src/components/organisms/Modal/Modal.stories.js +2 -1
- package/src/components/organisms/Modal/index.js +9 -2
- package/src/components/organisms/Modal/styles.js +8 -1
- package/src/components/organisms/OrderDetail/utils/Table/utils.js +6 -16
- package/src/components/organisms/ProductImageModalv2/ProductImageModalv2.stories.js +90 -0
- package/src/components/organisms/ProductImageModalv2/index.js +105 -0
- package/src/components/organisms/ProductImageModalv2/styles.js +71 -0
- package/src/components/organisms/RenameImagesBar/RenameImagesBar.stories.js +18 -0
- package/src/components/organisms/RenameImagesBar/index.js +30 -0
- package/src/components/organisms/RenameImagesBar/styles.js +12 -0
- package/src/components/organisms/Table/Table.stories.js +609 -0
- package/src/components/organisms/Table/index.js +84 -0
- package/src/components/organisms/Table/styles.js +114 -0
- package/src/components/organisms/VersionSelectorv2/VersionSelectorv2.stories.js +15 -0
- package/src/components/organisms/VersionSelectorv2/index.js +105 -0
- package/src/components/organisms/VersionSelectorv2/styles.js +45 -0
- package/src/components/pages/Dashboard/Dashboard.stories.js +33 -38
- package/src/components/pages/Dashboard/index.js +36 -7
- package/src/components/pages/MultipleEdition/MultipleEdition.stories.js +17 -0
- package/src/components/pages/MultipleEdition/components/ImageUploader.js +62 -0
- package/src/components/pages/MultipleEdition/components/ImageUploaderStyles.js +29 -0
- package/src/components/pages/MultipleEdition/components/ImageVisor.js +143 -0
- package/src/components/pages/MultipleEdition/components/styles.js +106 -0
- package/src/components/pages/MultipleEdition/index.js +248 -0
- package/src/components/pages/MultipleEdition/saveData.js +92 -0
- package/src/components/pages/MultipleEdition/styles.js +201 -0
- package/src/components/pages/MultipleEdition/utils.js +1073 -0
- package/src/components/pages/ProductEditionv2/ProductEditionv2.stories.js +213 -0
- package/src/components/pages/ProductEditionv2/index.js +1758 -0
- package/src/components/pages/ProductEditionv2/styles.js +154 -0
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +56 -60
- package/src/components/pages/ProviderProductEdition/index.js +148 -133
- package/src/components/pages/ProviderProductEdition/styles.js +5 -1
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +4 -0
- package/src/components/pages/RetailerProductEdition/generateThumnail.js +21 -0
- package/src/components/pages/RetailerProductEdition/index.js +293 -300
- package/src/components/pages/RetailerProductEdition/styles.js +4 -0
- package/src/components/pages/RetailerProductEdition/utils.js +37 -0
- package/src/global-files/data.js +6 -10
- package/src/global-files/variables.js +6 -0
- package/src/index.js +12 -0
|
@@ -5420,10 +5420,10 @@ const onAssign = (
|
|
|
5420
5420
|
};
|
|
5421
5421
|
const data = [
|
|
5422
5422
|
{
|
|
5423
|
-
id: "
|
|
5423
|
+
id: "121153-823824234",
|
|
5424
5424
|
cols: [
|
|
5425
5425
|
{
|
|
5426
|
-
name: "
|
|
5426
|
+
name: "823824234",
|
|
5427
5427
|
flex: 1,
|
|
5428
5428
|
minWidth: 100,
|
|
5429
5429
|
},
|
|
@@ -5433,7 +5433,7 @@ const data = [
|
|
|
5433
5433
|
key: null,
|
|
5434
5434
|
ref: null,
|
|
5435
5435
|
props: {
|
|
5436
|
-
children: "
|
|
5436
|
+
children: "Producto rechazo de atributos",
|
|
5437
5437
|
},
|
|
5438
5438
|
_owner: null,
|
|
5439
5439
|
_store: {},
|
|
@@ -5447,8 +5447,7 @@ const data = [
|
|
|
5447
5447
|
key: null,
|
|
5448
5448
|
ref: null,
|
|
5449
5449
|
props: {
|
|
5450
|
-
children:
|
|
5451
|
-
"Abarrotes Básicos|Abarrotes Básicos y Procesados|Abarrotes Básicos y Procesados",
|
|
5450
|
+
children: "Audio|Audífonos|In Ear",
|
|
5452
5451
|
},
|
|
5453
5452
|
_owner: null,
|
|
5454
5453
|
_store: {},
|
|
@@ -5461,29 +5460,29 @@ const data = [
|
|
|
5461
5460
|
key: null,
|
|
5462
5461
|
ref: null,
|
|
5463
5462
|
props: {
|
|
5464
|
-
id: "retailers-
|
|
5463
|
+
id: "retailers-121153-823824234",
|
|
5465
5464
|
limit: 2,
|
|
5466
5465
|
article: {
|
|
5467
|
-
id_article:
|
|
5468
|
-
upc: "
|
|
5469
|
-
name: "
|
|
5470
|
-
timestamp: "2024-
|
|
5471
|
-
categoryName:
|
|
5472
|
-
|
|
5473
|
-
id_category: 4004,
|
|
5466
|
+
id_article: 121153,
|
|
5467
|
+
upc: "823824234",
|
|
5468
|
+
name: "Producto rechazo de atributos",
|
|
5469
|
+
timestamp: "2024-02-03T23:33:09.000Z",
|
|
5470
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
5471
|
+
id_category: 905,
|
|
5474
5472
|
version: 1,
|
|
5473
|
+
reviewState: "in_progress",
|
|
5475
5474
|
retailersAvailable: [
|
|
5476
5475
|
{
|
|
5477
|
-
name: "
|
|
5478
|
-
id:
|
|
5476
|
+
name: "Radioshack",
|
|
5477
|
+
id: 74,
|
|
5479
5478
|
},
|
|
5480
5479
|
],
|
|
5481
|
-
percentage:
|
|
5480
|
+
percentage: 100,
|
|
5482
5481
|
},
|
|
5483
5482
|
retailers: [
|
|
5484
5483
|
{
|
|
5485
|
-
name: "
|
|
5486
|
-
id:
|
|
5484
|
+
name: "Radioshack",
|
|
5485
|
+
id: 74,
|
|
5487
5486
|
},
|
|
5488
5487
|
],
|
|
5489
5488
|
},
|
|
@@ -5494,7 +5493,7 @@ const data = [
|
|
|
5494
5493
|
minWidth: 100,
|
|
5495
5494
|
},
|
|
5496
5495
|
{
|
|
5497
|
-
name:
|
|
5496
|
+
name: 100,
|
|
5498
5497
|
flex: 1,
|
|
5499
5498
|
minWidth: 100,
|
|
5500
5499
|
},
|
|
@@ -5504,7 +5503,7 @@ const data = [
|
|
|
5504
5503
|
minWidth: 100,
|
|
5505
5504
|
},
|
|
5506
5505
|
{
|
|
5507
|
-
name: "
|
|
5506
|
+
name: "03/02/2024",
|
|
5508
5507
|
flex: 1,
|
|
5509
5508
|
minWidth: 100,
|
|
5510
5509
|
},
|
|
@@ -5512,59 +5511,327 @@ const data = [
|
|
|
5512
5511
|
gridElement: {
|
|
5513
5512
|
images: [
|
|
5514
5513
|
{
|
|
5515
|
-
id:
|
|
5514
|
+
id: 896450,
|
|
5516
5515
|
status: null,
|
|
5517
|
-
image_id:
|
|
5516
|
+
image_id: 1,
|
|
5517
|
+
packing_type: "3",
|
|
5518
|
+
image_type: "1",
|
|
5519
|
+
article_id: "121153",
|
|
5520
|
+
src: "id-121153/1/1-1ba450b4-edf5-496d-bcdd-5c21328bf1a4.jpg",
|
|
5521
|
+
timestamp: "2024-02-03T23:36:56.000Z",
|
|
5522
|
+
id_version: 1,
|
|
5523
|
+
width: 1000,
|
|
5524
|
+
height: 1000,
|
|
5525
|
+
scene_type: null,
|
|
5526
|
+
image_shot_type: null,
|
|
5527
|
+
last_modified: "2024-02-03T23:36:56.000Z",
|
|
5528
|
+
has_leyend: 0,
|
|
5529
|
+
},
|
|
5530
|
+
{
|
|
5531
|
+
id: 896451,
|
|
5532
|
+
status: null,
|
|
5533
|
+
image_id: 4,
|
|
5534
|
+
packing_type: "2",
|
|
5535
|
+
image_type: "1",
|
|
5536
|
+
article_id: "121153",
|
|
5537
|
+
src: "id-121153/1/4-4219803a-bd7a-44ec-816d-59356e5e1eb0.jpg",
|
|
5538
|
+
timestamp: "2024-02-03T23:36:56.000Z",
|
|
5539
|
+
id_version: 1,
|
|
5540
|
+
width: 1000,
|
|
5541
|
+
height: 1000,
|
|
5542
|
+
scene_type: null,
|
|
5543
|
+
image_shot_type: null,
|
|
5544
|
+
last_modified: "2024-02-03T23:36:56.000Z",
|
|
5545
|
+
has_leyend: 0,
|
|
5546
|
+
},
|
|
5547
|
+
{
|
|
5548
|
+
id: 896452,
|
|
5549
|
+
status: null,
|
|
5550
|
+
image_id: 5,
|
|
5551
|
+
packing_type: "2",
|
|
5552
|
+
image_type: "2",
|
|
5553
|
+
article_id: "121153",
|
|
5554
|
+
src: "id-121153/1/5-e533709c-e1a9-4ec7-bdbd-b5920286801f.jpg",
|
|
5555
|
+
timestamp: "2024-02-03T23:36:56.000Z",
|
|
5556
|
+
id_version: 1,
|
|
5557
|
+
width: 1000,
|
|
5558
|
+
height: 1000,
|
|
5559
|
+
scene_type: null,
|
|
5560
|
+
image_shot_type: null,
|
|
5561
|
+
last_modified: "2024-02-03T23:36:56.000Z",
|
|
5562
|
+
has_leyend: 0,
|
|
5563
|
+
},
|
|
5564
|
+
{
|
|
5565
|
+
id: 896453,
|
|
5566
|
+
status: null,
|
|
5567
|
+
image_id: 3,
|
|
5518
5568
|
packing_type: "1",
|
|
5519
5569
|
image_type: "1",
|
|
5520
|
-
article_id: "
|
|
5521
|
-
src: "id-
|
|
5522
|
-
timestamp: "2024-
|
|
5570
|
+
article_id: "121153",
|
|
5571
|
+
src: "id-121153/1/3-999fa944-43ed-46fd-8261-1e92986291a8.jpg",
|
|
5572
|
+
timestamp: "2024-02-03T23:36:56.000Z",
|
|
5523
5573
|
id_version: 1,
|
|
5524
|
-
width:
|
|
5525
|
-
height:
|
|
5574
|
+
width: 1000,
|
|
5575
|
+
height: 1000,
|
|
5526
5576
|
scene_type: null,
|
|
5527
5577
|
image_shot_type: null,
|
|
5528
|
-
last_modified: "2024-
|
|
5578
|
+
last_modified: "2024-02-03T23:36:56.000Z",
|
|
5529
5579
|
has_leyend: 0,
|
|
5530
5580
|
},
|
|
5581
|
+
],
|
|
5582
|
+
info: [
|
|
5583
|
+
{
|
|
5584
|
+
title: "name",
|
|
5585
|
+
value: "Producto rechazo de atributos",
|
|
5586
|
+
},
|
|
5587
|
+
{
|
|
5588
|
+
title: "category",
|
|
5589
|
+
value: "Audio|Audífonos|In Ear",
|
|
5590
|
+
},
|
|
5591
|
+
{
|
|
5592
|
+
title: "order",
|
|
5593
|
+
value: "823824234",
|
|
5594
|
+
},
|
|
5595
|
+
],
|
|
5596
|
+
status: [
|
|
5597
|
+
{
|
|
5598
|
+
title: "Porcentaje",
|
|
5599
|
+
percent: 100,
|
|
5600
|
+
},
|
|
5601
|
+
],
|
|
5602
|
+
catalogs: {
|
|
5603
|
+
leftSide: {
|
|
5604
|
+
key: null,
|
|
5605
|
+
ref: null,
|
|
5606
|
+
props: {
|
|
5607
|
+
id: "retailers-121153-823824234",
|
|
5608
|
+
limit: 2,
|
|
5609
|
+
article: {
|
|
5610
|
+
id_article: 121153,
|
|
5611
|
+
upc: "823824234",
|
|
5612
|
+
name: "Producto rechazo de atributos",
|
|
5613
|
+
timestamp: "2024-02-03T23:33:09.000Z",
|
|
5614
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
5615
|
+
id_category: 905,
|
|
5616
|
+
version: 1,
|
|
5617
|
+
reviewState: "in_progress",
|
|
5618
|
+
retailersAvailable: [
|
|
5619
|
+
{
|
|
5620
|
+
name: "Radioshack",
|
|
5621
|
+
id: 74,
|
|
5622
|
+
},
|
|
5623
|
+
],
|
|
5624
|
+
percentage: 100,
|
|
5625
|
+
},
|
|
5626
|
+
retailers: [
|
|
5627
|
+
{
|
|
5628
|
+
name: "Radioshack",
|
|
5629
|
+
id: 74,
|
|
5630
|
+
},
|
|
5631
|
+
],
|
|
5632
|
+
},
|
|
5633
|
+
_owner: null,
|
|
5634
|
+
_store: {},
|
|
5635
|
+
},
|
|
5636
|
+
},
|
|
5637
|
+
},
|
|
5638
|
+
showBottom: true,
|
|
5639
|
+
product: {
|
|
5640
|
+
id_article: 121153,
|
|
5641
|
+
upc: "823824234",
|
|
5642
|
+
name: "Producto rechazo de atributos",
|
|
5643
|
+
timestamp: "2024-02-03T23:33:09.000Z",
|
|
5644
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
5645
|
+
id_category: 905,
|
|
5646
|
+
version: 1,
|
|
5647
|
+
reviewState: "in_progress",
|
|
5648
|
+
retailersAvailable: [
|
|
5531
5649
|
{
|
|
5532
|
-
|
|
5650
|
+
name: "Radioshack",
|
|
5651
|
+
id: 74,
|
|
5652
|
+
},
|
|
5653
|
+
],
|
|
5654
|
+
percentage: 100,
|
|
5655
|
+
},
|
|
5656
|
+
},
|
|
5657
|
+
{
|
|
5658
|
+
id: "121152-92347234",
|
|
5659
|
+
cols: [
|
|
5660
|
+
{
|
|
5661
|
+
name: "92347234",
|
|
5662
|
+
flex: 1,
|
|
5663
|
+
minWidth: 100,
|
|
5664
|
+
},
|
|
5665
|
+
{
|
|
5666
|
+
name: {
|
|
5667
|
+
type: "p",
|
|
5668
|
+
key: null,
|
|
5669
|
+
ref: null,
|
|
5670
|
+
props: {
|
|
5671
|
+
children: "Rechazo para el proveedor",
|
|
5672
|
+
},
|
|
5673
|
+
_owner: null,
|
|
5674
|
+
_store: {},
|
|
5675
|
+
},
|
|
5676
|
+
flex: 1,
|
|
5677
|
+
minWidth: 200,
|
|
5678
|
+
},
|
|
5679
|
+
{
|
|
5680
|
+
name: {
|
|
5681
|
+
type: "p",
|
|
5682
|
+
key: null,
|
|
5683
|
+
ref: null,
|
|
5684
|
+
props: {
|
|
5685
|
+
children: "Tecnología|Accesorios Computadora|Mouse",
|
|
5686
|
+
},
|
|
5687
|
+
_owner: null,
|
|
5688
|
+
_store: {},
|
|
5689
|
+
},
|
|
5690
|
+
flex: 2,
|
|
5691
|
+
minWidth: 200,
|
|
5692
|
+
},
|
|
5693
|
+
{
|
|
5694
|
+
name: {
|
|
5695
|
+
key: null,
|
|
5696
|
+
ref: null,
|
|
5697
|
+
props: {
|
|
5698
|
+
id: "retailers-121152-92347234",
|
|
5699
|
+
limit: 2,
|
|
5700
|
+
article: {
|
|
5701
|
+
id_article: 121152,
|
|
5702
|
+
upc: "92347234",
|
|
5703
|
+
name: "Rechazo para el proveedor",
|
|
5704
|
+
timestamp: "2024-02-03T04:11:35.000Z",
|
|
5705
|
+
categoryName: "Tecnología|Accesorios Computadora|Mouse",
|
|
5706
|
+
id_category: 904,
|
|
5707
|
+
version: 1,
|
|
5708
|
+
reviewState: "in_progress",
|
|
5709
|
+
retailersAvailable: [
|
|
5710
|
+
{
|
|
5711
|
+
name: "Radioshack",
|
|
5712
|
+
id: 74,
|
|
5713
|
+
},
|
|
5714
|
+
],
|
|
5715
|
+
percentage: 100,
|
|
5716
|
+
},
|
|
5717
|
+
retailers: [
|
|
5718
|
+
{
|
|
5719
|
+
name: "Radioshack",
|
|
5720
|
+
id: 74,
|
|
5721
|
+
},
|
|
5722
|
+
],
|
|
5723
|
+
},
|
|
5724
|
+
_owner: null,
|
|
5725
|
+
_store: {},
|
|
5726
|
+
},
|
|
5727
|
+
flex: 1,
|
|
5728
|
+
minWidth: 100,
|
|
5729
|
+
},
|
|
5730
|
+
{
|
|
5731
|
+
name: 100,
|
|
5732
|
+
flex: 1,
|
|
5733
|
+
minWidth: 100,
|
|
5734
|
+
},
|
|
5735
|
+
{
|
|
5736
|
+
name: 1,
|
|
5737
|
+
flex: 1,
|
|
5738
|
+
minWidth: 100,
|
|
5739
|
+
},
|
|
5740
|
+
{
|
|
5741
|
+
name: "02/02/2024",
|
|
5742
|
+
flex: 1,
|
|
5743
|
+
minWidth: 100,
|
|
5744
|
+
},
|
|
5745
|
+
],
|
|
5746
|
+
gridElement: {
|
|
5747
|
+
images: [
|
|
5748
|
+
{
|
|
5749
|
+
id: 896446,
|
|
5533
5750
|
status: null,
|
|
5534
|
-
image_id:
|
|
5751
|
+
image_id: 1,
|
|
5535
5752
|
packing_type: "2",
|
|
5753
|
+
image_type: "2",
|
|
5754
|
+
article_id: "121152",
|
|
5755
|
+
src: "id-121152/1/1-69ec716b-abd1-4cdb-b18c-69b8b3bda3ab.jpg",
|
|
5756
|
+
timestamp: "2024-02-03T04:20:59.000Z",
|
|
5757
|
+
id_version: 1,
|
|
5758
|
+
width: 1000,
|
|
5759
|
+
height: 1000,
|
|
5760
|
+
scene_type: null,
|
|
5761
|
+
image_shot_type: null,
|
|
5762
|
+
last_modified: "2024-02-03T04:20:59.000Z",
|
|
5763
|
+
has_leyend: 0,
|
|
5764
|
+
},
|
|
5765
|
+
{
|
|
5766
|
+
id: 896447,
|
|
5767
|
+
status: null,
|
|
5768
|
+
image_id: 4,
|
|
5769
|
+
packing_type: "1",
|
|
5536
5770
|
image_type: "1",
|
|
5537
|
-
article_id: "
|
|
5538
|
-
src: "id-
|
|
5539
|
-
timestamp: "2024-
|
|
5771
|
+
article_id: "121152",
|
|
5772
|
+
src: "id-121152/1/4-7d54c98e-08bf-4406-8d01-723dd240a210.jpg",
|
|
5773
|
+
timestamp: "2024-02-03T04:20:59.000Z",
|
|
5540
5774
|
id_version: 1,
|
|
5541
|
-
width:
|
|
5542
|
-
height:
|
|
5775
|
+
width: 1000,
|
|
5776
|
+
height: 1000,
|
|
5543
5777
|
scene_type: null,
|
|
5544
5778
|
image_shot_type: null,
|
|
5545
|
-
last_modified: "2024-
|
|
5779
|
+
last_modified: "2024-02-03T04:20:59.000Z",
|
|
5780
|
+
has_leyend: 0,
|
|
5781
|
+
},
|
|
5782
|
+
{
|
|
5783
|
+
id: 896448,
|
|
5784
|
+
status: null,
|
|
5785
|
+
image_id: 3,
|
|
5786
|
+
packing_type: "1",
|
|
5787
|
+
image_type: "2",
|
|
5788
|
+
article_id: "121152",
|
|
5789
|
+
src: "id-121152/1/3-276fea21-7fd9-4a5d-b5d5-257681d417d1.jpg",
|
|
5790
|
+
timestamp: "2024-02-03T04:20:59.000Z",
|
|
5791
|
+
id_version: 1,
|
|
5792
|
+
width: 1000,
|
|
5793
|
+
height: 1000,
|
|
5794
|
+
scene_type: null,
|
|
5795
|
+
image_shot_type: null,
|
|
5796
|
+
last_modified: "2024-02-03T04:20:59.000Z",
|
|
5797
|
+
has_leyend: 0,
|
|
5798
|
+
},
|
|
5799
|
+
{
|
|
5800
|
+
id: 896449,
|
|
5801
|
+
status: null,
|
|
5802
|
+
image_id: 5,
|
|
5803
|
+
packing_type: "1",
|
|
5804
|
+
image_type: "1",
|
|
5805
|
+
article_id: "121152",
|
|
5806
|
+
src: "id-121152/1/5-0ac59823-7569-4f8d-b49e-77871f6aa12b.jpg",
|
|
5807
|
+
timestamp: "2024-02-03T04:20:59.000Z",
|
|
5808
|
+
id_version: 1,
|
|
5809
|
+
width: 1000,
|
|
5810
|
+
height: 1000,
|
|
5811
|
+
scene_type: null,
|
|
5812
|
+
image_shot_type: null,
|
|
5813
|
+
last_modified: "2024-02-03T04:20:59.000Z",
|
|
5546
5814
|
has_leyend: 0,
|
|
5547
5815
|
},
|
|
5548
5816
|
],
|
|
5549
5817
|
info: [
|
|
5550
5818
|
{
|
|
5551
5819
|
title: "name",
|
|
5552
|
-
value: "
|
|
5820
|
+
value: "Rechazo para el proveedor",
|
|
5553
5821
|
},
|
|
5554
5822
|
{
|
|
5555
5823
|
title: "category",
|
|
5556
|
-
value:
|
|
5557
|
-
"Abarrotes Básicos|Abarrotes Básicos y Procesados|Abarrotes Básicos y Procesados",
|
|
5824
|
+
value: "Tecnología|Accesorios Computadora|Mouse",
|
|
5558
5825
|
},
|
|
5559
5826
|
{
|
|
5560
5827
|
title: "order",
|
|
5561
|
-
value: "
|
|
5828
|
+
value: "92347234",
|
|
5562
5829
|
},
|
|
5563
5830
|
],
|
|
5564
5831
|
status: [
|
|
5565
5832
|
{
|
|
5566
5833
|
title: "Porcentaje",
|
|
5567
|
-
percent:
|
|
5834
|
+
percent: 100,
|
|
5568
5835
|
},
|
|
5569
5836
|
],
|
|
5570
5837
|
catalogs: {
|
|
@@ -5572,29 +5839,29 @@ const data = [
|
|
|
5572
5839
|
key: null,
|
|
5573
5840
|
ref: null,
|
|
5574
5841
|
props: {
|
|
5575
|
-
id: "retailers-
|
|
5842
|
+
id: "retailers-121152-92347234",
|
|
5576
5843
|
limit: 2,
|
|
5577
5844
|
article: {
|
|
5578
|
-
id_article:
|
|
5579
|
-
upc: "
|
|
5580
|
-
name: "
|
|
5581
|
-
timestamp: "2024-
|
|
5582
|
-
categoryName:
|
|
5583
|
-
|
|
5584
|
-
id_category: 4004,
|
|
5845
|
+
id_article: 121152,
|
|
5846
|
+
upc: "92347234",
|
|
5847
|
+
name: "Rechazo para el proveedor",
|
|
5848
|
+
timestamp: "2024-02-03T04:11:35.000Z",
|
|
5849
|
+
categoryName: "Tecnología|Accesorios Computadora|Mouse",
|
|
5850
|
+
id_category: 904,
|
|
5585
5851
|
version: 1,
|
|
5852
|
+
reviewState: "in_progress",
|
|
5586
5853
|
retailersAvailable: [
|
|
5587
5854
|
{
|
|
5588
|
-
name: "
|
|
5589
|
-
id:
|
|
5855
|
+
name: "Radioshack",
|
|
5856
|
+
id: 74,
|
|
5590
5857
|
},
|
|
5591
5858
|
],
|
|
5592
|
-
percentage:
|
|
5859
|
+
percentage: 100,
|
|
5593
5860
|
},
|
|
5594
5861
|
retailers: [
|
|
5595
5862
|
{
|
|
5596
|
-
name: "
|
|
5597
|
-
id:
|
|
5863
|
+
name: "Radioshack",
|
|
5864
|
+
id: 74,
|
|
5598
5865
|
},
|
|
5599
5866
|
],
|
|
5600
5867
|
},
|
|
@@ -5605,28 +5872,28 @@ const data = [
|
|
|
5605
5872
|
},
|
|
5606
5873
|
showBottom: true,
|
|
5607
5874
|
product: {
|
|
5608
|
-
id_article:
|
|
5609
|
-
upc: "
|
|
5610
|
-
name: "
|
|
5611
|
-
timestamp: "2024-
|
|
5612
|
-
categoryName:
|
|
5613
|
-
|
|
5614
|
-
id_category: 4004,
|
|
5875
|
+
id_article: 121152,
|
|
5876
|
+
upc: "92347234",
|
|
5877
|
+
name: "Rechazo para el proveedor",
|
|
5878
|
+
timestamp: "2024-02-03T04:11:35.000Z",
|
|
5879
|
+
categoryName: "Tecnología|Accesorios Computadora|Mouse",
|
|
5880
|
+
id_category: 904,
|
|
5615
5881
|
version: 1,
|
|
5882
|
+
reviewState: "in_progress",
|
|
5616
5883
|
retailersAvailable: [
|
|
5617
5884
|
{
|
|
5618
|
-
name: "
|
|
5619
|
-
id:
|
|
5885
|
+
name: "Radioshack",
|
|
5886
|
+
id: 74,
|
|
5620
5887
|
},
|
|
5621
5888
|
],
|
|
5622
|
-
percentage:
|
|
5889
|
+
percentage: 100,
|
|
5623
5890
|
},
|
|
5624
5891
|
},
|
|
5625
5892
|
{
|
|
5626
|
-
id: "
|
|
5893
|
+
id: "121151-92384234",
|
|
5627
5894
|
cols: [
|
|
5628
5895
|
{
|
|
5629
|
-
name: "
|
|
5896
|
+
name: "92384234",
|
|
5630
5897
|
flex: 1,
|
|
5631
5898
|
minWidth: 100,
|
|
5632
5899
|
},
|
|
@@ -5636,7 +5903,7 @@ const data = [
|
|
|
5636
5903
|
key: null,
|
|
5637
5904
|
ref: null,
|
|
5638
5905
|
props: {
|
|
5639
|
-
children: "
|
|
5906
|
+
children: "Comentarios visibles",
|
|
5640
5907
|
},
|
|
5641
5908
|
_owner: null,
|
|
5642
5909
|
_store: {},
|
|
@@ -5650,7 +5917,7 @@ const data = [
|
|
|
5650
5917
|
key: null,
|
|
5651
5918
|
ref: null,
|
|
5652
5919
|
props: {
|
|
5653
|
-
children: "
|
|
5920
|
+
children: "Audio|Audífonos|In Ear",
|
|
5654
5921
|
},
|
|
5655
5922
|
_owner: null,
|
|
5656
5923
|
_store: {},
|
|
@@ -5663,28 +5930,29 @@ const data = [
|
|
|
5663
5930
|
key: null,
|
|
5664
5931
|
ref: null,
|
|
5665
5932
|
props: {
|
|
5666
|
-
id: "retailers-
|
|
5933
|
+
id: "retailers-121151-92384234",
|
|
5667
5934
|
limit: 2,
|
|
5668
5935
|
article: {
|
|
5669
|
-
id_article:
|
|
5670
|
-
upc: "
|
|
5671
|
-
name: "
|
|
5672
|
-
timestamp: "2024-
|
|
5673
|
-
categoryName: "
|
|
5674
|
-
id_category:
|
|
5936
|
+
id_article: 121151,
|
|
5937
|
+
upc: "92384234",
|
|
5938
|
+
name: "Comentarios visibles",
|
|
5939
|
+
timestamp: "2024-02-03T04:11:35.000Z",
|
|
5940
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
5941
|
+
id_category: 905,
|
|
5675
5942
|
version: 1,
|
|
5943
|
+
reviewState: "rejected_to_provider",
|
|
5676
5944
|
retailersAvailable: [
|
|
5677
5945
|
{
|
|
5678
|
-
name: "
|
|
5679
|
-
id:
|
|
5946
|
+
name: "Radioshack",
|
|
5947
|
+
id: 74,
|
|
5680
5948
|
},
|
|
5681
5949
|
],
|
|
5682
|
-
percentage:
|
|
5950
|
+
percentage: 100,
|
|
5683
5951
|
},
|
|
5684
5952
|
retailers: [
|
|
5685
5953
|
{
|
|
5686
|
-
name: "
|
|
5687
|
-
id:
|
|
5954
|
+
name: "Radioshack",
|
|
5955
|
+
id: 74,
|
|
5688
5956
|
},
|
|
5689
5957
|
],
|
|
5690
5958
|
},
|
|
@@ -5695,7 +5963,7 @@ const data = [
|
|
|
5695
5963
|
minWidth: 100,
|
|
5696
5964
|
},
|
|
5697
5965
|
{
|
|
5698
|
-
name:
|
|
5966
|
+
name: 100,
|
|
5699
5967
|
flex: 1,
|
|
5700
5968
|
minWidth: 100,
|
|
5701
5969
|
},
|
|
@@ -5705,30 +5973,335 @@ const data = [
|
|
|
5705
5973
|
minWidth: 100,
|
|
5706
5974
|
},
|
|
5707
5975
|
{
|
|
5708
|
-
name: "02/
|
|
5976
|
+
name: "02/02/2024",
|
|
5709
5977
|
flex: 1,
|
|
5710
5978
|
minWidth: 100,
|
|
5711
5979
|
},
|
|
5712
5980
|
],
|
|
5713
5981
|
gridElement: {
|
|
5982
|
+
images: [
|
|
5983
|
+
{
|
|
5984
|
+
id: 896442,
|
|
5985
|
+
status: null,
|
|
5986
|
+
image_id: 1,
|
|
5987
|
+
packing_type: "2",
|
|
5988
|
+
image_type: "1",
|
|
5989
|
+
article_id: "121151",
|
|
5990
|
+
src: "id-121151/1/1-039ca855-90a0-4752-8f9d-9a443de52acd.jpg",
|
|
5991
|
+
timestamp: "2024-02-03T04:15:54.000Z",
|
|
5992
|
+
id_version: 1,
|
|
5993
|
+
width: 1000,
|
|
5994
|
+
height: 1000,
|
|
5995
|
+
scene_type: null,
|
|
5996
|
+
image_shot_type: null,
|
|
5997
|
+
last_modified: "2024-02-03T04:15:54.000Z",
|
|
5998
|
+
has_leyend: 0,
|
|
5999
|
+
},
|
|
6000
|
+
{
|
|
6001
|
+
id: 896443,
|
|
6002
|
+
status: null,
|
|
6003
|
+
image_id: 4,
|
|
6004
|
+
packing_type: "2",
|
|
6005
|
+
image_type: "2",
|
|
6006
|
+
article_id: "121151",
|
|
6007
|
+
src: "id-121151/1/4-c72d21e3-5bb2-45e8-8a4a-78f111084ae7.jpg",
|
|
6008
|
+
timestamp: "2024-02-03T04:15:54.000Z",
|
|
6009
|
+
id_version: 1,
|
|
6010
|
+
width: 1000,
|
|
6011
|
+
height: 1000,
|
|
6012
|
+
scene_type: null,
|
|
6013
|
+
image_shot_type: null,
|
|
6014
|
+
last_modified: "2024-02-03T04:15:54.000Z",
|
|
6015
|
+
has_leyend: 0,
|
|
6016
|
+
},
|
|
6017
|
+
{
|
|
6018
|
+
id: 896444,
|
|
6019
|
+
status: null,
|
|
6020
|
+
image_id: 5,
|
|
6021
|
+
packing_type: "2",
|
|
6022
|
+
image_type: "1",
|
|
6023
|
+
article_id: "121151",
|
|
6024
|
+
src: "id-121151/1/5-b62cb42f-4b63-49a5-a4d8-82b274b26918.jpg",
|
|
6025
|
+
timestamp: "2024-02-03T04:15:54.000Z",
|
|
6026
|
+
id_version: 1,
|
|
6027
|
+
width: 1000,
|
|
6028
|
+
height: 1000,
|
|
6029
|
+
scene_type: null,
|
|
6030
|
+
image_shot_type: null,
|
|
6031
|
+
last_modified: "2024-02-03T04:15:54.000Z",
|
|
6032
|
+
has_leyend: 0,
|
|
6033
|
+
},
|
|
6034
|
+
{
|
|
6035
|
+
id: 896445,
|
|
6036
|
+
status: null,
|
|
6037
|
+
image_id: 3,
|
|
6038
|
+
packing_type: "1",
|
|
6039
|
+
image_type: "1",
|
|
6040
|
+
article_id: "121151",
|
|
6041
|
+
src: "id-121151/1/3-fd3d2995-7403-423c-8fc7-b592571d2a22.jpg",
|
|
6042
|
+
timestamp: "2024-02-03T04:15:54.000Z",
|
|
6043
|
+
id_version: 1,
|
|
6044
|
+
width: 1000,
|
|
6045
|
+
height: 1000,
|
|
6046
|
+
scene_type: null,
|
|
6047
|
+
image_shot_type: null,
|
|
6048
|
+
last_modified: "2024-02-03T04:15:54.000Z",
|
|
6049
|
+
has_leyend: 0,
|
|
6050
|
+
},
|
|
6051
|
+
],
|
|
6052
|
+
info: [
|
|
6053
|
+
{
|
|
6054
|
+
title: "name",
|
|
6055
|
+
value: "Comentarios visibles",
|
|
6056
|
+
},
|
|
6057
|
+
{
|
|
6058
|
+
title: "category",
|
|
6059
|
+
value: "Audio|Audífonos|In Ear",
|
|
6060
|
+
},
|
|
6061
|
+
{
|
|
6062
|
+
title: "order",
|
|
6063
|
+
value: "92384234",
|
|
6064
|
+
},
|
|
6065
|
+
],
|
|
6066
|
+
status: [
|
|
6067
|
+
{
|
|
6068
|
+
title: "Porcentaje",
|
|
6069
|
+
percent: 100,
|
|
6070
|
+
},
|
|
6071
|
+
],
|
|
6072
|
+
catalogs: {
|
|
6073
|
+
leftSide: {
|
|
6074
|
+
key: null,
|
|
6075
|
+
ref: null,
|
|
6076
|
+
props: {
|
|
6077
|
+
id: "retailers-121151-92384234",
|
|
6078
|
+
limit: 2,
|
|
6079
|
+
article: {
|
|
6080
|
+
id_article: 121151,
|
|
6081
|
+
upc: "92384234",
|
|
6082
|
+
name: "Comentarios visibles",
|
|
6083
|
+
timestamp: "2024-02-03T04:11:35.000Z",
|
|
6084
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
6085
|
+
id_category: 905,
|
|
6086
|
+
version: 1,
|
|
6087
|
+
reviewState: "rejected_to_provider",
|
|
6088
|
+
retailersAvailable: [
|
|
6089
|
+
{
|
|
6090
|
+
name: "Radioshack",
|
|
6091
|
+
id: 74,
|
|
6092
|
+
},
|
|
6093
|
+
],
|
|
6094
|
+
percentage: 100,
|
|
6095
|
+
},
|
|
6096
|
+
retailers: [
|
|
6097
|
+
{
|
|
6098
|
+
name: "Radioshack",
|
|
6099
|
+
id: 74,
|
|
6100
|
+
},
|
|
6101
|
+
],
|
|
6102
|
+
},
|
|
6103
|
+
_owner: null,
|
|
6104
|
+
_store: {},
|
|
6105
|
+
},
|
|
6106
|
+
},
|
|
6107
|
+
},
|
|
6108
|
+
showBottom: true,
|
|
6109
|
+
product: {
|
|
6110
|
+
id_article: 121151,
|
|
6111
|
+
upc: "92384234",
|
|
6112
|
+
name: "Comentarios visibles",
|
|
6113
|
+
timestamp: "2024-02-03T04:11:35.000Z",
|
|
6114
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
6115
|
+
id_category: 905,
|
|
6116
|
+
version: 1,
|
|
6117
|
+
reviewState: "rejected_to_provider",
|
|
6118
|
+
retailersAvailable: [
|
|
6119
|
+
{
|
|
6120
|
+
name: "Radioshack",
|
|
6121
|
+
id: 74,
|
|
6122
|
+
},
|
|
6123
|
+
],
|
|
6124
|
+
percentage: 100,
|
|
6125
|
+
},
|
|
6126
|
+
},
|
|
6127
|
+
{
|
|
6128
|
+
id: "121150-123131223443243432",
|
|
6129
|
+
cols: [
|
|
6130
|
+
{
|
|
6131
|
+
name: "123131223443243432",
|
|
6132
|
+
flex: 1,
|
|
6133
|
+
minWidth: 100,
|
|
6134
|
+
},
|
|
6135
|
+
{
|
|
6136
|
+
name: {
|
|
6137
|
+
type: "p",
|
|
6138
|
+
key: null,
|
|
6139
|
+
ref: null,
|
|
6140
|
+
props: {
|
|
6141
|
+
children: "Testing Radioshack",
|
|
6142
|
+
},
|
|
6143
|
+
_owner: null,
|
|
6144
|
+
_store: {},
|
|
6145
|
+
},
|
|
6146
|
+
flex: 1,
|
|
6147
|
+
minWidth: 200,
|
|
6148
|
+
},
|
|
6149
|
+
{
|
|
6150
|
+
name: {
|
|
6151
|
+
type: "p",
|
|
6152
|
+
key: null,
|
|
6153
|
+
ref: null,
|
|
6154
|
+
props: {
|
|
6155
|
+
children: "Audio|Audífonos|In Ear",
|
|
6156
|
+
},
|
|
6157
|
+
_owner: null,
|
|
6158
|
+
_store: {},
|
|
6159
|
+
},
|
|
6160
|
+
flex: 2,
|
|
6161
|
+
minWidth: 200,
|
|
6162
|
+
},
|
|
6163
|
+
{
|
|
6164
|
+
name: {
|
|
6165
|
+
key: null,
|
|
6166
|
+
ref: null,
|
|
6167
|
+
props: {
|
|
6168
|
+
id: "retailers-121150-123131223443243432",
|
|
6169
|
+
limit: 2,
|
|
6170
|
+
article: {
|
|
6171
|
+
id_article: 121150,
|
|
6172
|
+
upc: "123131223443243432",
|
|
6173
|
+
name: "Testing Radioshack",
|
|
6174
|
+
timestamp: "2024-02-02T23:38:29.000Z",
|
|
6175
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
6176
|
+
id_category: 905,
|
|
6177
|
+
version: 1,
|
|
6178
|
+
reviewState: "onboarding_flow",
|
|
6179
|
+
retailersAvailable: [
|
|
6180
|
+
{
|
|
6181
|
+
name: "Radioshack",
|
|
6182
|
+
id: 74,
|
|
6183
|
+
},
|
|
6184
|
+
],
|
|
6185
|
+
percentage: 100,
|
|
6186
|
+
},
|
|
6187
|
+
retailers: [
|
|
6188
|
+
{
|
|
6189
|
+
name: "Radioshack",
|
|
6190
|
+
id: 74,
|
|
6191
|
+
},
|
|
6192
|
+
],
|
|
6193
|
+
},
|
|
6194
|
+
_owner: null,
|
|
6195
|
+
_store: {},
|
|
6196
|
+
},
|
|
6197
|
+
flex: 1,
|
|
6198
|
+
minWidth: 100,
|
|
6199
|
+
},
|
|
6200
|
+
{
|
|
6201
|
+
name: 100,
|
|
6202
|
+
flex: 1,
|
|
6203
|
+
minWidth: 100,
|
|
6204
|
+
},
|
|
6205
|
+
{
|
|
6206
|
+
name: 1,
|
|
6207
|
+
flex: 1,
|
|
6208
|
+
minWidth: 100,
|
|
6209
|
+
},
|
|
6210
|
+
{
|
|
6211
|
+
name: "02/02/2024",
|
|
6212
|
+
flex: 1,
|
|
6213
|
+
minWidth: 100,
|
|
6214
|
+
},
|
|
6215
|
+
],
|
|
6216
|
+
gridElement: {
|
|
6217
|
+
images: [
|
|
6218
|
+
{
|
|
6219
|
+
id: 896438,
|
|
6220
|
+
status: null,
|
|
6221
|
+
image_id: 1,
|
|
6222
|
+
packing_type: "1",
|
|
6223
|
+
image_type: "1",
|
|
6224
|
+
article_id: "121150",
|
|
6225
|
+
src: "id-121150/1/1-1e4eae50-ad99-4148-a63b-416fc240109d.jpg",
|
|
6226
|
+
timestamp: "2024-02-02T23:43:49.000Z",
|
|
6227
|
+
id_version: 1,
|
|
6228
|
+
width: 1200,
|
|
6229
|
+
height: 1200,
|
|
6230
|
+
scene_type: null,
|
|
6231
|
+
image_shot_type: null,
|
|
6232
|
+
last_modified: "2024-02-02T23:43:49.000Z",
|
|
6233
|
+
has_leyend: 0,
|
|
6234
|
+
},
|
|
6235
|
+
{
|
|
6236
|
+
id: 896439,
|
|
6237
|
+
status: null,
|
|
6238
|
+
image_id: 4,
|
|
6239
|
+
packing_type: "1",
|
|
6240
|
+
image_type: "1",
|
|
6241
|
+
article_id: "121150",
|
|
6242
|
+
src: "id-121150/1/4-d0937226-bb2d-4573-8ec4-3c39e329bd55.jpg",
|
|
6243
|
+
timestamp: "2024-02-02T23:43:49.000Z",
|
|
6244
|
+
id_version: 1,
|
|
6245
|
+
width: 1200,
|
|
6246
|
+
height: 1200,
|
|
6247
|
+
scene_type: null,
|
|
6248
|
+
image_shot_type: null,
|
|
6249
|
+
last_modified: "2024-02-02T23:43:49.000Z",
|
|
6250
|
+
has_leyend: 0,
|
|
6251
|
+
},
|
|
6252
|
+
{
|
|
6253
|
+
id: 896440,
|
|
6254
|
+
status: null,
|
|
6255
|
+
image_id: 3,
|
|
6256
|
+
packing_type: "1",
|
|
6257
|
+
image_type: "1",
|
|
6258
|
+
article_id: "121150",
|
|
6259
|
+
src: "id-121150/1/3-67dd66a8-ce10-4772-8c93-4e9e03f4be1b.jpg",
|
|
6260
|
+
timestamp: "2024-02-02T23:43:49.000Z",
|
|
6261
|
+
id_version: 1,
|
|
6262
|
+
width: 1200,
|
|
6263
|
+
height: 1200,
|
|
6264
|
+
scene_type: null,
|
|
6265
|
+
image_shot_type: null,
|
|
6266
|
+
last_modified: "2024-02-02T23:43:49.000Z",
|
|
6267
|
+
has_leyend: 0,
|
|
6268
|
+
},
|
|
6269
|
+
{
|
|
6270
|
+
id: 896441,
|
|
6271
|
+
status: null,
|
|
6272
|
+
image_id: 5,
|
|
6273
|
+
packing_type: "1",
|
|
6274
|
+
image_type: "2",
|
|
6275
|
+
article_id: "121150",
|
|
6276
|
+
src: "id-121150/1/5-b391afe1-7d9f-4739-8393-b71b6f15f385.jpg",
|
|
6277
|
+
timestamp: "2024-02-02T23:43:49.000Z",
|
|
6278
|
+
id_version: 1,
|
|
6279
|
+
width: 1200,
|
|
6280
|
+
height: 1200,
|
|
6281
|
+
scene_type: null,
|
|
6282
|
+
image_shot_type: null,
|
|
6283
|
+
last_modified: "2024-02-02T23:43:49.000Z",
|
|
6284
|
+
has_leyend: 0,
|
|
6285
|
+
},
|
|
6286
|
+
],
|
|
5714
6287
|
info: [
|
|
5715
6288
|
{
|
|
5716
6289
|
title: "name",
|
|
5717
|
-
value: "
|
|
6290
|
+
value: "Testing Radioshack",
|
|
5718
6291
|
},
|
|
5719
6292
|
{
|
|
5720
6293
|
title: "category",
|
|
5721
|
-
value: "
|
|
6294
|
+
value: "Audio|Audífonos|In Ear",
|
|
5722
6295
|
},
|
|
5723
6296
|
{
|
|
5724
6297
|
title: "order",
|
|
5725
|
-
value: "
|
|
6298
|
+
value: "123131223443243432",
|
|
5726
6299
|
},
|
|
5727
6300
|
],
|
|
5728
6301
|
status: [
|
|
5729
6302
|
{
|
|
5730
6303
|
title: "Porcentaje",
|
|
5731
|
-
percent:
|
|
6304
|
+
percent: 100,
|
|
5732
6305
|
},
|
|
5733
6306
|
],
|
|
5734
6307
|
catalogs: {
|
|
@@ -5736,28 +6309,29 @@ const data = [
|
|
|
5736
6309
|
key: null,
|
|
5737
6310
|
ref: null,
|
|
5738
6311
|
props: {
|
|
5739
|
-
id: "retailers-
|
|
6312
|
+
id: "retailers-121150-123131223443243432",
|
|
5740
6313
|
limit: 2,
|
|
5741
6314
|
article: {
|
|
5742
|
-
id_article:
|
|
5743
|
-
upc: "
|
|
5744
|
-
name: "
|
|
5745
|
-
timestamp: "2024-
|
|
5746
|
-
categoryName: "
|
|
5747
|
-
id_category:
|
|
6315
|
+
id_article: 121150,
|
|
6316
|
+
upc: "123131223443243432",
|
|
6317
|
+
name: "Testing Radioshack",
|
|
6318
|
+
timestamp: "2024-02-02T23:38:29.000Z",
|
|
6319
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
6320
|
+
id_category: 905,
|
|
5748
6321
|
version: 1,
|
|
6322
|
+
reviewState: "onboarding_flow",
|
|
5749
6323
|
retailersAvailable: [
|
|
5750
6324
|
{
|
|
5751
|
-
name: "
|
|
5752
|
-
id:
|
|
6325
|
+
name: "Radioshack",
|
|
6326
|
+
id: 74,
|
|
5753
6327
|
},
|
|
5754
6328
|
],
|
|
5755
|
-
percentage:
|
|
6329
|
+
percentage: 100,
|
|
5756
6330
|
},
|
|
5757
6331
|
retailers: [
|
|
5758
6332
|
{
|
|
5759
|
-
name: "
|
|
5760
|
-
id:
|
|
6333
|
+
name: "Radioshack",
|
|
6334
|
+
id: 74,
|
|
5761
6335
|
},
|
|
5762
6336
|
],
|
|
5763
6337
|
},
|
|
@@ -5768,20 +6342,21 @@ const data = [
|
|
|
5768
6342
|
},
|
|
5769
6343
|
showBottom: true,
|
|
5770
6344
|
product: {
|
|
5771
|
-
id_article:
|
|
5772
|
-
upc: "
|
|
5773
|
-
name: "
|
|
5774
|
-
timestamp: "2024-
|
|
5775
|
-
categoryName: "
|
|
5776
|
-
id_category:
|
|
6345
|
+
id_article: 121150,
|
|
6346
|
+
upc: "123131223443243432",
|
|
6347
|
+
name: "Testing Radioshack",
|
|
6348
|
+
timestamp: "2024-02-02T23:38:29.000Z",
|
|
6349
|
+
categoryName: "Audio|Audífonos|In Ear",
|
|
6350
|
+
id_category: 905,
|
|
5777
6351
|
version: 1,
|
|
6352
|
+
reviewState: "onboarding_flow",
|
|
5778
6353
|
retailersAvailable: [
|
|
5779
6354
|
{
|
|
5780
|
-
name: "
|
|
5781
|
-
id:
|
|
6355
|
+
name: "Radioshack",
|
|
6356
|
+
id: 74,
|
|
5782
6357
|
},
|
|
5783
6358
|
],
|
|
5784
|
-
percentage:
|
|
6359
|
+
percentage: 100,
|
|
5785
6360
|
},
|
|
5786
6361
|
},
|
|
5787
6362
|
];
|