contentoh-components-library 21.4.17 → 21.4.19
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/.env.development +5 -1
- package/.env.production +3 -1
- package/dist/assets/fonts/roboto/LICENSE.txt +202 -0
- package/dist/components/atoms/Avatar/index.js +3 -2
- package/dist/components/atoms/Card/index.js +46 -5
- package/dist/components/atoms/Card/styles.js +3 -1
- package/dist/components/atoms/CheckBox/index.js +7 -2
- package/dist/components/atoms/CheckBox/styles.js +1 -1
- package/dist/components/atoms/InputFormatter/styles.js +1 -1
- package/dist/components/molecules/CarouselImagesLogin/index.js +1 -1
- package/dist/components/molecules/HeaderTop/index.js +68 -11
- package/dist/components/molecules/TagAndInput/index.js +1 -1
- package/dist/components/organisms/Chat/Chat.stories.js +27 -8
- package/dist/components/organisms/Chat/ContainerItems/index.js +19 -3
- package/dist/components/organisms/Chat/ContainerItems/styles.js +1 -1
- package/dist/components/organisms/Chat/ContentChat/index.js +350 -197
- package/dist/components/organisms/Chat/Footer/index.js +48 -39
- package/dist/components/organisms/Chat/index.js +49 -4
- package/dist/components/organisms/FullProductNameHeader/index.js +2 -2
- package/dist/components/organisms/Modal/styles.js +1 -1
- package/dist/components/organisms/PanelLayout/PanelLayout.stories.js +1 -1
- package/dist/components/organisms/PanelLayout/index.js +7 -5
- package/dist/components/organisms/PanelLayout/styles.js +3 -3
- package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +88 -120
- package/dist/components/pages/ProviderProductEdition/index.js +216 -200
- package/dist/components/pages/ProviderProductEdition/styles.js +1 -1
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +56 -52
- package/dist/components/pages/RetailerProductEdition/index.js +318 -300
- package/dist/components/pages/RetailerProductEdition/styles.js +1 -1
- package/dist/components/pages/RetailerProductEdition/utils.js +61 -2
- package/dist/index.js +247 -52
- package/package.json +4 -1
- package/src/components/atoms/Avatar/index.js +8 -2
- package/src/components/atoms/Card/index.js +35 -2
- package/src/components/atoms/Card/styles.js +41 -5
- package/src/components/atoms/CheckBox/index.js +4 -1
- package/src/components/atoms/CheckBox/styles.js +2 -0
- package/src/components/atoms/ImageCarousel/ImgeSlider.stories.js +76 -0
- package/src/components/atoms/ImageCarousel/index.js +103 -0
- package/src/components/atoms/ImageCarousel/styles.js +79 -0
- package/src/components/atoms/InputFormatter/styles.js +2 -1
- package/src/components/atoms/PercentTag/PercentTag.stories.js +7 -0
- package/src/components/atoms/PercentTag/index.js +9 -0
- package/src/components/atoms/PercentTag/styles.js +69 -0
- package/src/components/atoms/RatingStars/RatingStars.stories.js +10 -0
- package/src/components/atoms/RatingStars/index.js +31 -0
- package/src/components/atoms/RatingStars/styles.js +28 -0
- package/src/components/atoms/RetailerCatalog/RetailerCatalog.stories.js +36 -0
- package/src/components/atoms/RetailerCatalog/index.js +49 -0
- package/src/components/atoms/RetailerCatalog/styles.js +30 -0
- package/src/components/atoms/RetailerOption/RetailerOption.stories.js +15 -0
- package/src/components/atoms/RetailerOption/index.js +53 -0
- package/src/components/atoms/RetailerOption/styles.js +41 -0
- package/src/components/atoms/RetailersList/RetailersList.stories.js +33 -0
- package/src/components/atoms/RetailersList/index.js +20 -0
- package/src/components/atoms/RetailersList/styles.js +19 -0
- package/src/components/atoms/UserCatalog/UserCatalog.stories.js +67 -0
- package/src/components/atoms/UserCatalog/index.js +100 -0
- package/src/components/atoms/UserCatalog/styles.js +24 -0
- package/src/components/atoms/UserOption/UserOption.stories.js +25 -0
- package/src/components/atoms/UserOption/index.js +95 -0
- package/src/components/atoms/UserOption/styles.js +61 -0
- package/src/components/atoms/UserSelector/UserSelector.stories.js +25 -0
- package/src/components/atoms/UserSelector/index.js +86 -0
- package/src/components/atoms/UserSelector/styles.js +55 -0
- package/src/components/molecules/CarouselImagesLogin/index.js +1 -1
- package/src/components/molecules/GridItem/GridItem.stories.js +126 -0
- package/src/components/molecules/GridItem/index.js +105 -0
- package/src/components/molecules/GridItem/styles.js +104 -0
- package/src/components/molecules/HeaderItem/ColumnItem.js +9 -0
- package/src/components/molecules/HeaderItem/HeaderItem.stories.js +24 -0
- package/src/components/molecules/HeaderItem/index.js +26 -0
- package/src/components/molecules/HeaderItem/styles.js +27 -0
- package/src/components/molecules/HeaderTop/index.js +52 -6
- package/src/components/molecules/RowItem/ColumnItem.js +9 -0
- package/src/components/molecules/RowItem/RowItem.stories.js +5660 -0
- package/src/components/molecules/RowItem/index.js +45 -0
- package/src/components/molecules/RowItem/styles.js +40 -0
- package/src/components/molecules/StripeCardForm/StripeCardForm.stories.js +13 -0
- package/src/components/molecules/StripeCardForm/index.js +42 -0
- package/src/components/molecules/StripeCardForm/paymentForm.js +124 -0
- package/src/components/molecules/StripeCardForm/styles.js +73 -0
- package/src/components/molecules/StripeCardSelector/CardSelector.stories.js +12 -0
- package/src/components/molecules/StripeCardSelector/index.js +44 -0
- package/src/components/molecules/StripeCardSelector/styles.js +4 -0
- package/src/components/molecules/StripeCardSelector/utils.js +17 -0
- package/src/components/molecules/TagAndInput/index.js +10 -8
- 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 +10 -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/FullProductNameHeader/index.js +1 -1
- package/src/components/organisms/GridProducts/GridProducts.stories.js +5485 -0
- package/src/components/organisms/GridProducts/index.js +50 -0
- package/src/components/organisms/GridProducts/styles.js +14 -0
- package/src/components/organisms/GridProducts/utils.js +111 -0
- package/src/components/organisms/Modal/styles.js +4 -1
- package/src/components/organisms/OrderDetail/utils/Table/utils.js +6 -16
- package/src/components/organisms/PanelLayout/PanelLayout.stories.js +63 -0
- package/src/components/organisms/PanelLayout/index.js +11 -0
- package/src/components/organisms/PanelLayout/styles.js +39 -0
- package/src/components/organisms/SideModal/SideModal.stories.js +23 -0
- package/src/components/organisms/SideModal/index.js +50 -0
- package/src/components/organisms/SideModal/styles.js +30 -0
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +95 -127
- package/src/components/pages/ProviderProductEdition/index.js +135 -129
- package/src/components/pages/ProviderProductEdition/styles.js +5 -1
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +55 -52
- package/src/components/pages/RetailerProductEdition/index.js +124 -136
- package/src/components/pages/RetailerProductEdition/styles.js +4 -0
- package/src/components/pages/RetailerProductEdition/utils.js +37 -0
- package/src/index.js +16 -0
|
@@ -37,7 +37,7 @@ var _GalleryElement = require("../../molecules/GalleryElement");
|
|
|
37
37
|
|
|
38
38
|
var _fileSaver = require("file-saver");
|
|
39
39
|
|
|
40
|
-
var
|
|
40
|
+
var _data2 = require("../../../global-files/data");
|
|
41
41
|
|
|
42
42
|
var _GalleryHeader = require("../../molecules/GalleryHeader");
|
|
43
43
|
|
|
@@ -61,8 +61,6 @@ var _index = require("../../molecules/TagAndInput/index");
|
|
|
61
61
|
|
|
62
62
|
var _GeneralButton = require("../../atoms/GeneralButton");
|
|
63
63
|
|
|
64
|
-
var _Commentary = require("../../atoms/Commentary");
|
|
65
|
-
|
|
66
64
|
var _GenericModal = require("../../atoms/GenericModal");
|
|
67
65
|
|
|
68
66
|
var _ScreenHeader = require("../../atoms/ScreenHeader");
|
|
@@ -71,14 +69,16 @@ var _Loading = require("../../atoms/Loading");
|
|
|
71
69
|
|
|
72
70
|
var _genericModalCheck = _interopRequireDefault(require("../../../assets/images/genericModal/genericModalCheck.svg"));
|
|
73
71
|
|
|
74
|
-
var _errorModal = _interopRequireDefault(require("../../../assets/images/genericModal/errorModal.svg"));
|
|
75
|
-
|
|
76
72
|
var _VersionSelector = require("../../organisms/VersionSelector");
|
|
77
73
|
|
|
78
74
|
var _customHooks = require("../../../global-files/customHooks");
|
|
79
75
|
|
|
80
76
|
var _utils = require("./utils");
|
|
81
77
|
|
|
78
|
+
var _Modal = require("../../organisms/Modal");
|
|
79
|
+
|
|
80
|
+
var _ButtonV = require("../../atoms/ButtonV2");
|
|
81
|
+
|
|
82
82
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
83
83
|
|
|
84
84
|
var reducerImages = function reducerImages(state, action) {
|
|
@@ -202,7 +202,7 @@ var myBucket = new _awsSdk.default.S3({
|
|
|
202
202
|
});
|
|
203
203
|
|
|
204
204
|
var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
205
|
-
var _product$retailers, _location$state, _product$services2, _datasheets$, _datasheets$$data, _product$
|
|
205
|
+
var _product$retailers, _location$state, _location$state2, _product$services2, _datasheets$, _datasheets$$data, _product$article17;
|
|
206
206
|
|
|
207
207
|
var tabsSections = _ref.tabsSections,
|
|
208
208
|
_ref$productSelected = _ref.productSelected,
|
|
@@ -252,6 +252,11 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
252
252
|
showModal = _useState14[0],
|
|
253
253
|
setShowModal = _useState14[1];
|
|
254
254
|
|
|
255
|
+
var _useState15 = (0, _react.useState)(false),
|
|
256
|
+
_useState16 = (0, _slicedToArray2.default)(_useState15, 2),
|
|
257
|
+
showRejectModal = _useState16[0],
|
|
258
|
+
setShowRejectModal = _useState16[1];
|
|
259
|
+
|
|
255
260
|
var _useDropzone = (0, _reactDropzone.useDropzone)({
|
|
256
261
|
accept: "image/*",
|
|
257
262
|
noKeyboard: true,
|
|
@@ -296,149 +301,149 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
296
301
|
getRootProps = _useDropzone.getRootProps,
|
|
297
302
|
getInputProps = _useDropzone.getInputProps;
|
|
298
303
|
|
|
299
|
-
var _useState15 = (0, _react.useState)([]),
|
|
300
|
-
_useState16 = (0, _slicedToArray2.default)(_useState15, 2),
|
|
301
|
-
updatedDatasheets = _useState16[0],
|
|
302
|
-
setUpdatedDatasheets = _useState16[1];
|
|
303
|
-
|
|
304
304
|
var _useState17 = (0, _react.useState)([]),
|
|
305
305
|
_useState18 = (0, _slicedToArray2.default)(_useState17, 2),
|
|
306
|
-
|
|
307
|
-
|
|
306
|
+
updatedDatasheets = _useState18[0],
|
|
307
|
+
setUpdatedDatasheets = _useState18[1];
|
|
308
308
|
|
|
309
|
-
var _useState19 = (0, _react.useState)(
|
|
309
|
+
var _useState19 = (0, _react.useState)([]),
|
|
310
310
|
_useState20 = (0, _slicedToArray2.default)(_useState19, 2),
|
|
311
|
-
|
|
312
|
-
|
|
311
|
+
updatedDescriptions = _useState20[0],
|
|
312
|
+
setUpdatedDescriptions = _useState20[1];
|
|
313
313
|
|
|
314
|
-
var _useState21 = (0, _react.useState)(),
|
|
314
|
+
var _useState21 = (0, _react.useState)(false),
|
|
315
315
|
_useState22 = (0, _slicedToArray2.default)(_useState21, 2),
|
|
316
|
-
|
|
317
|
-
|
|
316
|
+
imagesUploaded = _useState22[0],
|
|
317
|
+
setImagesUploaded = _useState22[1];
|
|
318
318
|
|
|
319
|
-
var _useState23 = (0, _react.useState)(
|
|
320
|
-
percentage: 0
|
|
321
|
-
})),
|
|
319
|
+
var _useState23 = (0, _react.useState)(),
|
|
322
320
|
_useState24 = (0, _slicedToArray2.default)(_useState23, 2),
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
321
|
+
dataImages = _useState24[0],
|
|
322
|
+
setDataImages = _useState24[1];
|
|
326
323
|
|
|
327
|
-
var _useState25 = (0, _react.useState)(0)
|
|
324
|
+
var _useState25 = (0, _react.useState)(new Array(product === null || product === void 0 ? void 0 : (_product$retailers = product.retailers) === null || _product$retailers === void 0 ? void 0 : _product$retailers.length).fill({
|
|
325
|
+
percentage: 0
|
|
326
|
+
})),
|
|
328
327
|
_useState26 = (0, _slicedToArray2.default)(_useState25, 2),
|
|
329
|
-
|
|
330
|
-
|
|
328
|
+
percentages = _useState26[0],
|
|
329
|
+
setPercentages = _useState26[1]; // const [percentages, setPercentages] = useState([{ retailers: {} }]);
|
|
330
|
+
|
|
331
331
|
|
|
332
|
-
var _useState27 = (0, _react.useState)(
|
|
332
|
+
var _useState27 = (0, _react.useState)(0),
|
|
333
333
|
_useState28 = (0, _slicedToArray2.default)(_useState27, 2),
|
|
334
|
-
|
|
335
|
-
|
|
334
|
+
activePercentage = _useState28[0],
|
|
335
|
+
setActivePercentage = _useState28[1];
|
|
336
336
|
|
|
337
|
-
var _useState29 = (0, _react.useState)(
|
|
337
|
+
var _useState29 = (0, _react.useState)({}),
|
|
338
338
|
_useState30 = (0, _slicedToArray2.default)(_useState29, 2),
|
|
339
|
-
|
|
340
|
-
|
|
339
|
+
activeRetailer = _useState30[0],
|
|
340
|
+
setActiveRetailer = _useState30[1];
|
|
341
341
|
|
|
342
342
|
var _useState31 = (0, _react.useState)([]),
|
|
343
343
|
_useState32 = (0, _slicedToArray2.default)(_useState31, 2),
|
|
344
|
-
|
|
345
|
-
|
|
344
|
+
services = _useState32[0],
|
|
345
|
+
setServices = _useState32[1];
|
|
346
346
|
|
|
347
|
-
var _useState33 = (0, _react.useState)(
|
|
347
|
+
var _useState33 = (0, _react.useState)([]),
|
|
348
348
|
_useState34 = (0, _slicedToArray2.default)(_useState33, 2),
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
servicesData = _useState34[0],
|
|
350
|
+
setServicesData = _useState34[1];
|
|
351
351
|
|
|
352
|
-
var _useState35 = (0, _react.useState)(
|
|
352
|
+
var _useState35 = (0, _react.useState)(""),
|
|
353
353
|
_useState36 = (0, _slicedToArray2.default)(_useState35, 2),
|
|
354
|
-
|
|
355
|
-
|
|
354
|
+
message = _useState36[0],
|
|
355
|
+
setMessage = _useState36[1];
|
|
356
356
|
|
|
357
|
-
var _useState37 = (0, _react.useState)(
|
|
357
|
+
var _useState37 = (0, _react.useState)(JSON.parse(sessionStorage.getItem("productSelected")) ? JSON.parse(sessionStorage.getItem("productSelected")) : productSelected),
|
|
358
358
|
_useState38 = (0, _slicedToArray2.default)(_useState37, 2),
|
|
359
|
-
|
|
360
|
-
|
|
359
|
+
product = _useState38[0],
|
|
360
|
+
setProduct = _useState38[1];
|
|
361
361
|
|
|
362
|
-
var _useState39 = (0, _react.useState)(
|
|
362
|
+
var _useState39 = (0, _react.useState)(null),
|
|
363
363
|
_useState40 = (0, _slicedToArray2.default)(_useState39, 2),
|
|
364
|
-
|
|
365
|
-
|
|
364
|
+
icon = _useState40[0],
|
|
365
|
+
setIcon = _useState40[1];
|
|
366
366
|
|
|
367
|
-
var _useState41 = (0, _react.useState)(
|
|
367
|
+
var _useState41 = (0, _react.useState)(product === null || product === void 0 ? void 0 : product.version),
|
|
368
368
|
_useState42 = (0, _slicedToArray2.default)(_useState41, 2),
|
|
369
|
-
|
|
370
|
-
|
|
369
|
+
version = _useState42[0],
|
|
370
|
+
setVersion = _useState42[1];
|
|
371
371
|
|
|
372
|
-
var _useState43 = (0, _react.useState)(
|
|
372
|
+
var _useState43 = (0, _react.useState)({}),
|
|
373
373
|
_useState44 = (0, _slicedToArray2.default)(_useState43, 2),
|
|
374
|
-
|
|
375
|
-
|
|
374
|
+
comments = _useState44[0],
|
|
375
|
+
setComments = _useState44[1];
|
|
376
|
+
|
|
377
|
+
var _useState45 = (0, _react.useState)(""),
|
|
378
|
+
_useState46 = (0, _slicedToArray2.default)(_useState45, 2),
|
|
379
|
+
comment = _useState46[0],
|
|
380
|
+
setComment = _useState46[1];
|
|
376
381
|
|
|
377
|
-
var
|
|
382
|
+
var _useState47 = (0, _react.useState)({
|
|
378
383
|
"Ficha técnica": 0,
|
|
379
384
|
Descripción: 0,
|
|
380
385
|
Imágenes: 0
|
|
381
386
|
}),
|
|
382
|
-
_useState46 = (0, _slicedToArray2.default)(_useState45, 2),
|
|
383
|
-
requiredNull = _useState46[0],
|
|
384
|
-
setRequiredNull = _useState46[1];
|
|
385
|
-
|
|
386
|
-
var _useState47 = (0, _react.useState)(false),
|
|
387
387
|
_useState48 = (0, _slicedToArray2.default)(_useState47, 2),
|
|
388
|
-
|
|
389
|
-
|
|
388
|
+
requiredNull = _useState48[0],
|
|
389
|
+
setRequiredNull = _useState48[1];
|
|
390
390
|
|
|
391
|
-
var _useState49 = (0, _react.useState)(
|
|
391
|
+
var _useState49 = (0, _react.useState)(false),
|
|
392
392
|
_useState50 = (0, _slicedToArray2.default)(_useState49, 2),
|
|
393
|
-
|
|
394
|
-
|
|
393
|
+
crossComment = _useState50[0],
|
|
394
|
+
setCrossComment = _useState50[1];
|
|
395
395
|
|
|
396
|
-
var _useState51 = (0, _react.useState)(
|
|
396
|
+
var _useState51 = (0, _react.useState)([]),
|
|
397
397
|
_useState52 = (0, _slicedToArray2.default)(_useState51, 2),
|
|
398
|
-
|
|
399
|
-
|
|
398
|
+
userGroups = _useState52[0],
|
|
399
|
+
setUserGroups = _useState52[1];
|
|
400
400
|
|
|
401
|
-
var _useState53 = (0, _react.useState)(
|
|
401
|
+
var _useState53 = (0, _react.useState)({}),
|
|
402
402
|
_useState54 = (0, _slicedToArray2.default)(_useState53, 2),
|
|
403
|
-
|
|
404
|
-
|
|
403
|
+
assig = _useState54[0],
|
|
404
|
+
setAssig = _useState54[1];
|
|
405
405
|
|
|
406
406
|
var _useState55 = (0, _react.useState)([]),
|
|
407
407
|
_useState56 = (0, _slicedToArray2.default)(_useState55, 2),
|
|
408
|
-
|
|
409
|
-
|
|
408
|
+
selectedImages = _useState56[0],
|
|
409
|
+
setSelectedImages = _useState56[1];
|
|
410
410
|
|
|
411
|
-
var _useState57 = (0, _react.useState)(
|
|
411
|
+
var _useState57 = (0, _react.useState)([]),
|
|
412
412
|
_useState58 = (0, _slicedToArray2.default)(_useState57, 2),
|
|
413
|
-
|
|
414
|
-
|
|
413
|
+
componentsArray = _useState58[0],
|
|
414
|
+
setComponentsArray = _useState58[1];
|
|
415
415
|
|
|
416
|
-
var
|
|
417
|
-
|
|
418
|
-
var _useState59 = (0, _react.useState)(true),
|
|
416
|
+
var _useState59 = (0, _react.useState)(false),
|
|
419
417
|
_useState60 = (0, _slicedToArray2.default)(_useState59, 2),
|
|
420
|
-
|
|
421
|
-
|
|
418
|
+
checkAll = _useState60[0],
|
|
419
|
+
setCheckAll = _useState60[1];
|
|
420
|
+
|
|
421
|
+
var isRetailer = user === null || user === void 0 ? void 0 : user.is_retailer;
|
|
422
422
|
|
|
423
|
-
var _useState61 = (0, _react.useState)(
|
|
423
|
+
var _useState61 = (0, _react.useState)(true),
|
|
424
424
|
_useState62 = (0, _slicedToArray2.default)(_useState61, 2),
|
|
425
|
-
|
|
426
|
-
|
|
425
|
+
loading = _useState62[0],
|
|
426
|
+
setLoading = _useState62[1];
|
|
427
427
|
|
|
428
|
-
var _useState63 = (0, _react.useState)(
|
|
428
|
+
var _useState63 = (0, _react.useState)("-"),
|
|
429
429
|
_useState64 = (0, _slicedToArray2.default)(_useState63, 2),
|
|
430
|
-
|
|
431
|
-
|
|
430
|
+
retailerStatus = _useState64[0],
|
|
431
|
+
setRetailerStatus = _useState64[1];
|
|
432
432
|
|
|
433
|
-
var _useState65 = (0, _react.useState)(
|
|
433
|
+
var _useState65 = (0, _react.useState)([]),
|
|
434
434
|
_useState66 = (0, _slicedToArray2.default)(_useState65, 2),
|
|
435
|
-
|
|
436
|
-
|
|
435
|
+
statusArray = _useState66[0],
|
|
436
|
+
setStatusArray = _useState66[1];
|
|
437
437
|
|
|
438
|
-
var _useState67 = (0, _react.useState)(
|
|
438
|
+
var _useState67 = (0, _react.useState)(null),
|
|
439
439
|
_useState68 = (0, _slicedToArray2.default)(_useState67, 2),
|
|
440
|
-
|
|
441
|
-
|
|
440
|
+
socketType = _useState68[0],
|
|
441
|
+
setSocketType = _useState68[1];
|
|
442
|
+
|
|
443
|
+
var _useState69 = (0, _react.useState)(loading),
|
|
444
|
+
_useState70 = (0, _slicedToArray2.default)(_useState69, 2),
|
|
445
|
+
saving = _useState70[0],
|
|
446
|
+
setSaving = _useState70[1];
|
|
442
447
|
|
|
443
448
|
var _useCloseModal = (0, _customHooks.useCloseModal)("version-selector"),
|
|
444
449
|
_useCloseModal2 = (0, _slicedToArray2.default)(_useCloseModal, 2),
|
|
@@ -447,35 +452,55 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
447
452
|
|
|
448
453
|
var shotThd = [58, 59, 60, 61].includes(activeRetailer.id);
|
|
449
454
|
|
|
450
|
-
var
|
|
451
|
-
_useState70 = (0, _slicedToArray2.default)(_useState69, 2),
|
|
452
|
-
auditableVersion = _useState70[0],
|
|
453
|
-
setAuditableVersion = _useState70[1];
|
|
454
|
-
|
|
455
|
-
var _useState71 = (0, _react.useState)([]),
|
|
455
|
+
var _useState71 = (0, _react.useState)(null),
|
|
456
456
|
_useState72 = (0, _slicedToArray2.default)(_useState71, 2),
|
|
457
|
-
|
|
458
|
-
|
|
457
|
+
auditableVersion = _useState72[0],
|
|
458
|
+
setAuditableVersion = _useState72[1];
|
|
459
459
|
|
|
460
460
|
var _useState73 = (0, _react.useState)([]),
|
|
461
461
|
_useState74 = (0, _slicedToArray2.default)(_useState73, 2),
|
|
462
|
-
|
|
463
|
-
|
|
462
|
+
auditServices = _useState74[0],
|
|
463
|
+
setAuditServices = _useState74[1];
|
|
464
464
|
|
|
465
465
|
var _useState75 = (0, _react.useState)([]),
|
|
466
466
|
_useState76 = (0, _slicedToArray2.default)(_useState75, 2),
|
|
467
|
-
|
|
468
|
-
|
|
467
|
+
auditDatasheets = _useState76[0],
|
|
468
|
+
setAuditDatasheets = _useState76[1];
|
|
469
469
|
|
|
470
470
|
var _useState77 = (0, _react.useState)([]),
|
|
471
471
|
_useState78 = (0, _slicedToArray2.default)(_useState77, 2),
|
|
472
|
-
|
|
473
|
-
|
|
472
|
+
auditDescriptions = _useState78[0],
|
|
473
|
+
setAuditDescriptions = _useState78[1];
|
|
474
474
|
|
|
475
|
-
var _useState79 = (0, _react.useState)(
|
|
475
|
+
var _useState79 = (0, _react.useState)([]),
|
|
476
476
|
_useState80 = (0, _slicedToArray2.default)(_useState79, 2),
|
|
477
|
-
|
|
478
|
-
|
|
477
|
+
auditImages = _useState80[0],
|
|
478
|
+
setAuditImages = _useState80[1];
|
|
479
|
+
|
|
480
|
+
var _useState81 = (0, _react.useState)(false),
|
|
481
|
+
_useState82 = (0, _slicedToArray2.default)(_useState81, 2),
|
|
482
|
+
compare = _useState82[0],
|
|
483
|
+
setCompare = _useState82[1];
|
|
484
|
+
|
|
485
|
+
var _useState83 = (0, _react.useState)(false),
|
|
486
|
+
_useState84 = (0, _slicedToArray2.default)(_useState83, 2),
|
|
487
|
+
valRejAll = _useState84[0],
|
|
488
|
+
setValRejAll = _useState84[1];
|
|
489
|
+
|
|
490
|
+
var _useState85 = (0, _react.useState)([]),
|
|
491
|
+
_useState86 = (0, _slicedToArray2.default)(_useState85, 2),
|
|
492
|
+
desc = _useState86[0],
|
|
493
|
+
setDesc = _useState86[1];
|
|
494
|
+
|
|
495
|
+
var _useState87 = (0, _react.useState)([]),
|
|
496
|
+
_useState88 = (0, _slicedToArray2.default)(_useState87, 2),
|
|
497
|
+
fich = _useState88[0],
|
|
498
|
+
setFich = _useState88[1];
|
|
499
|
+
|
|
500
|
+
var _useState89 = (0, _react.useState)([]),
|
|
501
|
+
_useState90 = (0, _slicedToArray2.default)(_useState89, 2),
|
|
502
|
+
imag = _useState90[0],
|
|
503
|
+
setImag = _useState90[1];
|
|
479
504
|
|
|
480
505
|
(0, _react.useEffect)( /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
|
|
481
506
|
var _ref3, id_article;
|
|
@@ -516,7 +541,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
516
541
|
}
|
|
517
542
|
|
|
518
543
|
_context2.next = 3;
|
|
519
|
-
return (0,
|
|
544
|
+
return (0, _data2.getRetailerServices)(product === null || product === void 0 ? void 0 : (_product$article = product.article) === null || _product$article === void 0 ? void 0 : _product$article.id_article, product === null || product === void 0 ? void 0 : (_product$article2 = product.article) === null || _product$article2 === void 0 ? void 0 : _product$article2.category, parseInt(product === null || product === void 0 ? void 0 : (_product$article3 = product.article) === null || _product$article3 === void 0 ? void 0 : _product$article3.id_category), auditableVersion.version);
|
|
520
545
|
|
|
521
546
|
case 3:
|
|
522
547
|
_auditServices = _context2.sent;
|
|
@@ -556,7 +581,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
556
581
|
case 0:
|
|
557
582
|
_context3.prev = 0;
|
|
558
583
|
_context3.next = 3;
|
|
559
|
-
return (0,
|
|
584
|
+
return (0, _data2.getRetailerServices)(product === null || product === void 0 ? void 0 : (_product$article4 = product.article) === null || _product$article4 === void 0 ? void 0 : _product$article4.id_article, product === null || product === void 0 ? void 0 : (_product$article5 = product.article) === null || _product$article5 === void 0 ? void 0 : _product$article5.category, parseInt(product === null || product === void 0 ? void 0 : (_product$article6 = product.article) === null || _product$article6 === void 0 ? void 0 : _product$article6.id_category), version);
|
|
560
585
|
|
|
561
586
|
case 3:
|
|
562
587
|
_services = _context3.sent;
|
|
@@ -573,7 +598,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
573
598
|
init: _services[2]
|
|
574
599
|
});
|
|
575
600
|
if (((_services$ = _services[2]) === null || _services$ === void 0 ? void 0 : (_services$$values = _services$.values) === null || _services$$values === void 0 ? void 0 : _services$$values.length) > 0) setActiveImage(0);
|
|
576
|
-
(0,
|
|
601
|
+
(0, _data2.getPercentage)({
|
|
577
602
|
data: [product]
|
|
578
603
|
}).then(function (res) {
|
|
579
604
|
return setPercentages(res[0]);
|
|
@@ -698,7 +723,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
698
723
|
getComments();
|
|
699
724
|
_context6.t0 = setUserGroups;
|
|
700
725
|
_context6.next = 6;
|
|
701
|
-
return (0,
|
|
726
|
+
return (0, _data2.fetchUsers)(token);
|
|
702
727
|
|
|
703
728
|
case 6:
|
|
704
729
|
_context6.t1 = _context6.sent;
|
|
@@ -866,7 +891,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
866
891
|
});
|
|
867
892
|
|
|
868
893
|
if (!(dataClean.length > 0)) {
|
|
869
|
-
_context7.next =
|
|
894
|
+
_context7.next = 26;
|
|
870
895
|
break;
|
|
871
896
|
}
|
|
872
897
|
|
|
@@ -890,7 +915,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
890
915
|
res = _context7.sent;
|
|
891
916
|
|
|
892
917
|
if (!(res.data.statusCode === 200)) {
|
|
893
|
-
_context7.next =
|
|
918
|
+
_context7.next = 21;
|
|
894
919
|
break;
|
|
895
920
|
}
|
|
896
921
|
|
|
@@ -899,25 +924,26 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
899
924
|
if (newStatus) productTemp.description_status = newStatus;
|
|
900
925
|
setProduct(productTemp);
|
|
901
926
|
sessionStorage.setItem("productSelected", JSON.stringify(productTemp));
|
|
927
|
+
setUpdatedDescriptions([]);
|
|
902
928
|
setMessage("Descripciones guardadas con éxito");
|
|
903
|
-
_context7.next =
|
|
929
|
+
_context7.next = 21;
|
|
904
930
|
return loadData();
|
|
905
931
|
|
|
906
|
-
case
|
|
907
|
-
_context7.next =
|
|
932
|
+
case 21:
|
|
933
|
+
_context7.next = 26;
|
|
908
934
|
break;
|
|
909
935
|
|
|
910
|
-
case
|
|
911
|
-
_context7.prev =
|
|
936
|
+
case 23:
|
|
937
|
+
_context7.prev = 23;
|
|
912
938
|
_context7.t0 = _context7["catch"](7);
|
|
913
939
|
console.log(_context7.t0);
|
|
914
940
|
|
|
915
|
-
case
|
|
941
|
+
case 26:
|
|
916
942
|
case "end":
|
|
917
943
|
return _context7.stop();
|
|
918
944
|
}
|
|
919
945
|
}
|
|
920
|
-
}, _callee7, null, [[7,
|
|
946
|
+
}, _callee7, null, [[7, 23]]);
|
|
921
947
|
}));
|
|
922
948
|
|
|
923
949
|
return function saveDescriptions() {
|
|
@@ -938,7 +964,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
938
964
|
});
|
|
939
965
|
|
|
940
966
|
if (!(dataClean.length > 0)) {
|
|
941
|
-
_context8.next =
|
|
967
|
+
_context8.next = 26;
|
|
942
968
|
break;
|
|
943
969
|
}
|
|
944
970
|
|
|
@@ -962,7 +988,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
962
988
|
res = _context8.sent;
|
|
963
989
|
|
|
964
990
|
if (!(res.data.statusCode === 200)) {
|
|
965
|
-
_context8.next =
|
|
991
|
+
_context8.next = 21;
|
|
966
992
|
break;
|
|
967
993
|
}
|
|
968
994
|
|
|
@@ -971,25 +997,26 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
971
997
|
if (newStatus) productTemp.datasheet_status = newStatus;
|
|
972
998
|
setProduct(productTemp);
|
|
973
999
|
sessionStorage.setItem("productSelected", JSON.stringify(productTemp));
|
|
1000
|
+
setUpdatedDatasheets([]);
|
|
974
1001
|
setMessage("Fichas técnicas guardadas");
|
|
975
|
-
_context8.next =
|
|
1002
|
+
_context8.next = 21;
|
|
976
1003
|
return loadData();
|
|
977
1004
|
|
|
978
|
-
case
|
|
979
|
-
_context8.next =
|
|
1005
|
+
case 21:
|
|
1006
|
+
_context8.next = 26;
|
|
980
1007
|
break;
|
|
981
1008
|
|
|
982
|
-
case
|
|
983
|
-
_context8.prev =
|
|
1009
|
+
case 23:
|
|
1010
|
+
_context8.prev = 23;
|
|
984
1011
|
_context8.t0 = _context8["catch"](7);
|
|
985
1012
|
console.log(_context8.t0);
|
|
986
1013
|
|
|
987
|
-
case
|
|
1014
|
+
case 26:
|
|
988
1015
|
case "end":
|
|
989
1016
|
return _context8.stop();
|
|
990
1017
|
}
|
|
991
1018
|
}
|
|
992
|
-
}, _callee8, null, [[7,
|
|
1019
|
+
}, _callee8, null, [[7, 23]]);
|
|
993
1020
|
}));
|
|
994
1021
|
|
|
995
1022
|
return function saveDatasheets() {
|
|
@@ -1013,6 +1040,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1013
1040
|
};
|
|
1014
1041
|
});
|
|
1015
1042
|
setSocketType(imageInputs);
|
|
1043
|
+
console.log(images);
|
|
1016
1044
|
}, [images]);
|
|
1017
1045
|
var updateImages = (0, _react.useCallback)( /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9() {
|
|
1018
1046
|
var _images$values3, _images$attrForImgs, _product$article14, _data$articleData, _data$articleData2, _data$updateImages;
|
|
@@ -1140,7 +1168,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1140
1168
|
switch (_context10.prev = _context10.next) {
|
|
1141
1169
|
case 0:
|
|
1142
1170
|
if (!imagesUploaded) {
|
|
1143
|
-
_context10.next =
|
|
1171
|
+
_context10.next = 23;
|
|
1144
1172
|
break;
|
|
1145
1173
|
}
|
|
1146
1174
|
|
|
@@ -1164,7 +1192,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1164
1192
|
res = _context10.sent;
|
|
1165
1193
|
|
|
1166
1194
|
if (!(res.data.statusCode === 200)) {
|
|
1167
|
-
_context10.next =
|
|
1195
|
+
_context10.next = 18;
|
|
1168
1196
|
break;
|
|
1169
1197
|
}
|
|
1170
1198
|
|
|
@@ -1174,26 +1202,27 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1174
1202
|
if (newStatus) productTemp.images_status = newStatus;
|
|
1175
1203
|
setProduct(productTemp);
|
|
1176
1204
|
sessionStorage.setItem("productSelected", JSON.stringify(productTemp));
|
|
1205
|
+
setImages({});
|
|
1177
1206
|
setMessage("Imágenes guardadas con éxito");
|
|
1178
1207
|
sessionStorage.removeItem("imagesList");
|
|
1179
|
-
_context10.next =
|
|
1208
|
+
_context10.next = 18;
|
|
1180
1209
|
return loadData();
|
|
1181
1210
|
|
|
1182
|
-
case
|
|
1183
|
-
_context10.next =
|
|
1211
|
+
case 18:
|
|
1212
|
+
_context10.next = 23;
|
|
1184
1213
|
break;
|
|
1185
1214
|
|
|
1186
|
-
case
|
|
1187
|
-
_context10.prev =
|
|
1215
|
+
case 20:
|
|
1216
|
+
_context10.prev = 20;
|
|
1188
1217
|
_context10.t0 = _context10["catch"](2);
|
|
1189
1218
|
console.log(_context10.t0);
|
|
1190
1219
|
|
|
1191
|
-
case
|
|
1220
|
+
case 23:
|
|
1192
1221
|
case "end":
|
|
1193
1222
|
return _context10.stop();
|
|
1194
1223
|
}
|
|
1195
1224
|
}
|
|
1196
|
-
}, _callee10, null, [[2,
|
|
1225
|
+
}, _callee10, null, [[2, 20]]);
|
|
1197
1226
|
})), [dataImages, imagesUploaded]);
|
|
1198
1227
|
|
|
1199
1228
|
var evaluationFinished = function evaluationFinished(userId, tab, statusArray) {
|
|
@@ -1318,7 +1347,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1318
1347
|
|
|
1319
1348
|
var sendToFacilitator = /*#__PURE__*/function () {
|
|
1320
1349
|
var _ref14 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee11(result) {
|
|
1321
|
-
var concept, productTemp, evalStatus, articleId, orderId, data, res, _message, specialistDone, _JSON$parse5, newStatus, newOrderStatus, newArticleStatus;
|
|
1350
|
+
var concept, productTemp, evalStatus, articleId, orderId, data, res, _message, specialistDone, _JSON$parse5, newStatus, newOrderStatus, newArticleStatus, messageToChat, _data;
|
|
1322
1351
|
|
|
1323
1352
|
return _regenerator.default.wrap(function _callee11$(_context11) {
|
|
1324
1353
|
while (1) {
|
|
@@ -1381,39 +1410,59 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1381
1410
|
|
|
1382
1411
|
case 21:
|
|
1383
1412
|
if (!(res.data.statusCode === 200)) {
|
|
1384
|
-
_context11.next =
|
|
1413
|
+
_context11.next = 34;
|
|
1385
1414
|
break;
|
|
1386
1415
|
}
|
|
1387
1416
|
|
|
1388
1417
|
_JSON$parse5 = JSON.parse(res.data.body), newStatus = _JSON$parse5.newStatus, newOrderStatus = _JSON$parse5.newOrderStatus, newArticleStatus = _JSON$parse5.newArticleStatus;
|
|
1418
|
+
messageToChat = (0, _utils.createMessage)(product.retailers, activeRetailer.id, evalStatus, newStatus, activeTab);
|
|
1419
|
+
_data = {
|
|
1420
|
+
paramsBody: {
|
|
1421
|
+
id: product.article.id_article,
|
|
1422
|
+
version: version,
|
|
1423
|
+
items: [{
|
|
1424
|
+
type: "status",
|
|
1425
|
+
value: messageToChat
|
|
1426
|
+
}],
|
|
1427
|
+
retailerId: activeRetailer.id,
|
|
1428
|
+
status: product.status
|
|
1429
|
+
},
|
|
1430
|
+
paramsHeader: {
|
|
1431
|
+
Authorization: token
|
|
1432
|
+
}
|
|
1433
|
+
};
|
|
1434
|
+
_context11.next = 27;
|
|
1435
|
+
return (0, _utils.sendMessage)(_data);
|
|
1436
|
+
|
|
1437
|
+
case 27:
|
|
1389
1438
|
if (newOrderStatus) productTemp.status = newArticleStatus[articleId];
|
|
1390
1439
|
productTemp["".concat(concept, "_status")] = newStatus;
|
|
1391
|
-
_context11.next =
|
|
1440
|
+
_context11.next = 31;
|
|
1392
1441
|
return loadData();
|
|
1393
1442
|
|
|
1394
|
-
case
|
|
1443
|
+
case 31:
|
|
1395
1444
|
if (_message) setMessage(_message);
|
|
1396
1445
|
sessionStorage.setItem("productSelected", JSON.stringify(productTemp));
|
|
1397
1446
|
setProduct(productTemp);
|
|
1398
1447
|
|
|
1399
|
-
case
|
|
1400
|
-
_context11.next =
|
|
1448
|
+
case 34:
|
|
1449
|
+
_context11.next = 39;
|
|
1401
1450
|
break;
|
|
1402
1451
|
|
|
1403
|
-
case
|
|
1404
|
-
_context11.prev =
|
|
1452
|
+
case 36:
|
|
1453
|
+
_context11.prev = 36;
|
|
1405
1454
|
_context11.t0 = _context11["catch"](1);
|
|
1406
1455
|
console.log(_context11.t0);
|
|
1407
1456
|
|
|
1408
|
-
case
|
|
1457
|
+
case 39:
|
|
1409
1458
|
setLoading(false);
|
|
1410
1459
|
|
|
1411
|
-
case
|
|
1460
|
+
case 40:
|
|
1412
1461
|
case "end":
|
|
1413
1462
|
return _context11.stop();
|
|
1414
1463
|
}
|
|
1415
1464
|
}
|
|
1416
|
-
}, _callee11, null, [[1,
|
|
1465
|
+
}, _callee11, null, [[1, 36]]);
|
|
1417
1466
|
}));
|
|
1418
1467
|
|
|
1419
1468
|
return function sendToFacilitator(_x) {
|
|
@@ -1448,55 +1497,33 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1448
1497
|
};
|
|
1449
1498
|
|
|
1450
1499
|
var createComment = /*#__PURE__*/function () {
|
|
1451
|
-
var _ref15 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee12(
|
|
1452
|
-
var
|
|
1453
|
-
|
|
1454
|
-
|
|
1500
|
+
var _ref15 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee12() {
|
|
1501
|
+
var messages,
|
|
1502
|
+
retailerId,
|
|
1503
|
+
data,
|
|
1504
|
+
_args12 = arguments;
|
|
1455
1505
|
return _regenerator.default.wrap(function _callee12$(_context12) {
|
|
1456
1506
|
while (1) {
|
|
1457
1507
|
switch (_context12.prev = _context12.next) {
|
|
1458
1508
|
case 0:
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
_context12.next = _context12.t0 === "Ficha técnica" ? 4 : _context12.t0 === "Imágenes" ? 6 : 8;
|
|
1462
|
-
break;
|
|
1463
|
-
|
|
1464
|
-
case 4:
|
|
1465
|
-
concept = "datasheet";
|
|
1466
|
-
return _context12.abrupt("break", 10);
|
|
1467
|
-
|
|
1468
|
-
case 6:
|
|
1469
|
-
concept = "images";
|
|
1470
|
-
return _context12.abrupt("break", 10);
|
|
1471
|
-
|
|
1472
|
-
case 8:
|
|
1473
|
-
concept = "description";
|
|
1474
|
-
return _context12.abrupt("break", 10);
|
|
1475
|
-
|
|
1476
|
-
case 10:
|
|
1509
|
+
messages = _args12.length > 0 && _args12[0] !== undefined ? _args12[0] : [];
|
|
1510
|
+
retailerId = _args12.length > 1 ? _args12[1] : undefined;
|
|
1477
1511
|
data = {
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
headers: {
|
|
1512
|
+
paramsBody: {
|
|
1513
|
+
id: product.article.id_article,
|
|
1514
|
+
version: version,
|
|
1515
|
+
items: messages,
|
|
1516
|
+
retailerId: retailerId,
|
|
1517
|
+
status: product.status
|
|
1518
|
+
},
|
|
1519
|
+
paramsHeader: {
|
|
1487
1520
|
Authorization: token
|
|
1488
1521
|
}
|
|
1489
|
-
}
|
|
1490
|
-
|
|
1491
|
-
case 13:
|
|
1492
|
-
_context12.next = 15;
|
|
1493
|
-
return getComments(tab);
|
|
1494
|
-
|
|
1495
|
-
case 15:
|
|
1522
|
+
};
|
|
1496
1523
|
setMessage("");
|
|
1497
|
-
|
|
1524
|
+
return _context12.abrupt("return", (0, _utils.sendMessage)(data));
|
|
1498
1525
|
|
|
1499
|
-
case
|
|
1526
|
+
case 5:
|
|
1500
1527
|
case "end":
|
|
1501
1528
|
return _context12.stop();
|
|
1502
1529
|
}
|
|
@@ -1504,7 +1531,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1504
1531
|
}, _callee12);
|
|
1505
1532
|
}));
|
|
1506
1533
|
|
|
1507
|
-
return function createComment(
|
|
1534
|
+
return function createComment() {
|
|
1508
1535
|
return _ref15.apply(this, arguments);
|
|
1509
1536
|
};
|
|
1510
1537
|
}();
|
|
@@ -1619,7 +1646,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1619
1646
|
|
|
1620
1647
|
var setAssignation = /*#__PURE__*/function () {
|
|
1621
1648
|
var _ref17 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14(assignationType, assignationId) {
|
|
1622
|
-
var _product$
|
|
1649
|
+
var _product$article16;
|
|
1623
1650
|
|
|
1624
1651
|
var concept, productTemp, data;
|
|
1625
1652
|
return _regenerator.default.wrap(function _callee14$(_context14) {
|
|
@@ -1649,7 +1676,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1649
1676
|
data = {
|
|
1650
1677
|
articleList: [{
|
|
1651
1678
|
orderId: product.orderId,
|
|
1652
|
-
articleId: product === null || product === void 0 ? void 0 : (_product$
|
|
1679
|
+
articleId: product === null || product === void 0 ? void 0 : (_product$article16 = product.article) === null || _product$article16 === void 0 ? void 0 : _product$article16.id_article
|
|
1653
1680
|
}],
|
|
1654
1681
|
concept: concept,
|
|
1655
1682
|
userId: assignationId
|
|
@@ -1676,7 +1703,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1676
1703
|
}, _callee14);
|
|
1677
1704
|
}));
|
|
1678
1705
|
|
|
1679
|
-
return function setAssignation(
|
|
1706
|
+
return function setAssignation(_x2, _x3) {
|
|
1680
1707
|
return _ref17.apply(this, arguments);
|
|
1681
1708
|
};
|
|
1682
1709
|
}();
|
|
@@ -1778,6 +1805,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1778
1805
|
};
|
|
1779
1806
|
|
|
1780
1807
|
(0, _react.useEffect)(function () {
|
|
1808
|
+
console.log(servicesData, "servicesData");
|
|
1781
1809
|
var status = getRetailerStatus(servicesData, activeTab);
|
|
1782
1810
|
setRetailerStatus(status);
|
|
1783
1811
|
}, [activeTab, servicesData, activeRetailer]);
|
|
@@ -1790,7 +1818,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1790
1818
|
|
|
1791
1819
|
var validateAll = /*#__PURE__*/function () {
|
|
1792
1820
|
var _ref18 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee15(result) {
|
|
1793
|
-
var evaluationArray, conceptArray, productTemp;
|
|
1821
|
+
var evaluationArray, conceptArray, messages, productTemp, messagesResponse;
|
|
1794
1822
|
return _regenerator.default.wrap(function _callee15$(_context15) {
|
|
1795
1823
|
while (1) {
|
|
1796
1824
|
switch (_context15.prev = _context15.next) {
|
|
@@ -1816,6 +1844,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1816
1844
|
return _context15.abrupt("break", 13);
|
|
1817
1845
|
|
|
1818
1846
|
case 13:
|
|
1847
|
+
messages = [];
|
|
1819
1848
|
servicesData === null || servicesData === void 0 ? void 0 : servicesData.forEach(function (ret) {
|
|
1820
1849
|
if (conceptArray.includes(ret.service)) {
|
|
1821
1850
|
var _product$id_order;
|
|
@@ -1828,6 +1857,16 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1828
1857
|
evalStatus: ret.status,
|
|
1829
1858
|
retailerId: ret.id_retailer
|
|
1830
1859
|
};
|
|
1860
|
+
|
|
1861
|
+
if (product["".concat(ret.service, "_status")] !== "NS") {
|
|
1862
|
+
var _message2 = (0, _utils.createMessage)(product.retailers, ret.id_retailer, product["".concat(ret.service, "_status")], "".concat(result, "A"), ret.service);
|
|
1863
|
+
|
|
1864
|
+
messages.push(createComment([{
|
|
1865
|
+
type: "status",
|
|
1866
|
+
value: _message2
|
|
1867
|
+
}], ret.id_retailer));
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1831
1870
|
evaluationArray.push(_axios.default.put("".concat(process.env.REACT_APP_EVALUATION_ENDPOINT), data, {
|
|
1832
1871
|
headers: {
|
|
1833
1872
|
Authorization: token
|
|
@@ -1835,38 +1874,43 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1835
1874
|
}));
|
|
1836
1875
|
}
|
|
1837
1876
|
});
|
|
1838
|
-
_context15.next =
|
|
1877
|
+
_context15.next = 17;
|
|
1839
1878
|
return Promise.all(evaluationArray);
|
|
1840
1879
|
|
|
1841
|
-
case
|
|
1880
|
+
case 17:
|
|
1842
1881
|
productTemp = product;
|
|
1843
1882
|
productTemp.status = "".concat(result, "A");
|
|
1844
|
-
productTemp.datasheet_status = productTemp.datasheet_status === "
|
|
1845
|
-
productTemp.description_status = productTemp.description_status === "
|
|
1846
|
-
productTemp.images_status = productTemp.images_status === "
|
|
1883
|
+
productTemp.datasheet_status = productTemp.datasheet_status === "NS" ? "NS" : "".concat(result, "A");
|
|
1884
|
+
productTemp.description_status = productTemp.description_status === "NS" ? "NS" : "".concat(result, "A");
|
|
1885
|
+
productTemp.images_status = productTemp.images_status === "NS" ? "NS" : "".concat(result, "A");
|
|
1847
1886
|
sessionStorage.setItem("productSelected", JSON.stringify(productTemp));
|
|
1848
1887
|
setProduct(productTemp);
|
|
1849
|
-
_context15.next =
|
|
1888
|
+
_context15.next = 26;
|
|
1889
|
+
return Promise.all(messages);
|
|
1890
|
+
|
|
1891
|
+
case 26:
|
|
1892
|
+
messagesResponse = _context15.sent;
|
|
1893
|
+
_context15.next = 29;
|
|
1850
1894
|
return loadData();
|
|
1851
1895
|
|
|
1852
|
-
case
|
|
1853
|
-
_context15.next =
|
|
1896
|
+
case 29:
|
|
1897
|
+
_context15.next = 34;
|
|
1854
1898
|
break;
|
|
1855
1899
|
|
|
1856
|
-
case
|
|
1857
|
-
_context15.prev =
|
|
1900
|
+
case 31:
|
|
1901
|
+
_context15.prev = 31;
|
|
1858
1902
|
_context15.t1 = _context15["catch"](0);
|
|
1859
1903
|
console.log(_context15.t1);
|
|
1860
1904
|
|
|
1861
|
-
case
|
|
1905
|
+
case 34:
|
|
1862
1906
|
case "end":
|
|
1863
1907
|
return _context15.stop();
|
|
1864
1908
|
}
|
|
1865
1909
|
}
|
|
1866
|
-
}, _callee15, null, [[0,
|
|
1910
|
+
}, _callee15, null, [[0, 31]]);
|
|
1867
1911
|
}));
|
|
1868
1912
|
|
|
1869
|
-
return function validateAll(
|
|
1913
|
+
return function validateAll(_x4) {
|
|
1870
1914
|
return _ref18.apply(this, arguments);
|
|
1871
1915
|
};
|
|
1872
1916
|
}();
|
|
@@ -1879,8 +1923,10 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1879
1923
|
setCompare: setCompare,
|
|
1880
1924
|
isAuditor: [1, 6].includes(user.id_role),
|
|
1881
1925
|
withChat: location === null || location === void 0 ? void 0 : (_location$state = location.state) === null || _location$state === void 0 ? void 0 : _location$state.withChat,
|
|
1882
|
-
|
|
1883
|
-
|
|
1926
|
+
chatType: location === null || location === void 0 ? void 0 : (_location$state2 = location.state) === null || _location$state2 === void 0 ? void 0 : _location$state2.chatType,
|
|
1927
|
+
productSelected: product,
|
|
1928
|
+
token: token,
|
|
1929
|
+
activeRetailer: activeRetailer
|
|
1884
1930
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
1885
1931
|
className: "data-container",
|
|
1886
1932
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
@@ -1922,27 +1968,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1922
1968
|
sendToFacilitator("A");
|
|
1923
1969
|
},
|
|
1924
1970
|
reject: function reject() {
|
|
1925
|
-
|
|
1926
|
-
setMessage("Rechazado");
|
|
1927
|
-
setComponentsArray([/*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
|
|
1928
|
-
src: _errorModal.default
|
|
1929
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ScreenHeader.ScreenHeader, {
|
|
1930
|
-
text: "Agrega tu comentarios para enviar el rechazo",
|
|
1931
|
-
headerType: "input-name-header",
|
|
1932
|
-
color: "white"
|
|
1933
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.TagAndInput, {
|
|
1934
|
-
label: "Caja de Comentario",
|
|
1935
|
-
inputType: "textarea",
|
|
1936
|
-
inputId: "modal-commentary-box",
|
|
1937
|
-
index: 0,
|
|
1938
|
-
color: "white"
|
|
1939
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
|
|
1940
|
-
buttonType: "general-default-button",
|
|
1941
|
-
label: "Enviar comentario",
|
|
1942
|
-
onClick: function onClick(e) {
|
|
1943
|
-
return createComment(e, document.querySelector("#modal-commentary-box .ql-container .ql-editor > p").innerHTML, activeTab);
|
|
1944
|
-
}
|
|
1945
|
-
})]);
|
|
1971
|
+
setShowRejectModal(true);
|
|
1946
1972
|
},
|
|
1947
1973
|
showApproveRejectAll: approveRejectAllButtons() && (auditorAssigned() || userAssigned()),
|
|
1948
1974
|
showValidationButtons: approveRejectButtons() && (auditorAssigned() || userAssigned()),
|
|
@@ -1950,27 +1976,8 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1950
1976
|
return validateAll("A");
|
|
1951
1977
|
},
|
|
1952
1978
|
rejectAll: function rejectAll() {
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
setComponentsArray([/*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
|
|
1956
|
-
src: _errorModal.default
|
|
1957
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ScreenHeader.ScreenHeader, {
|
|
1958
|
-
text: "Agrega tu comentarios para enviar el rechazo",
|
|
1959
|
-
headerType: "input-name-header",
|
|
1960
|
-
color: "white"
|
|
1961
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.TagAndInput, {
|
|
1962
|
-
label: "Caja de Comentario",
|
|
1963
|
-
inputType: "textarea",
|
|
1964
|
-
inputId: "modal-commentary-box",
|
|
1965
|
-
index: 0,
|
|
1966
|
-
color: "white"
|
|
1967
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
|
|
1968
|
-
buttonType: "general-default-button",
|
|
1969
|
-
label: "Enviar comentario",
|
|
1970
|
-
onClick: function onClick(e) {
|
|
1971
|
-
return createComment(e, document.querySelector("#modal-commentary-box .ql-container .ql-editor > p").innerHTML, activeTab);
|
|
1972
|
-
}
|
|
1973
|
-
})]);
|
|
1979
|
+
setShowRejectModal(true);
|
|
1980
|
+
setValRejAll(true);
|
|
1974
1981
|
}
|
|
1975
1982
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_FullTabsMenu.FullTabsMenu, {
|
|
1976
1983
|
tabsSections: tabsSections,
|
|
@@ -1985,6 +1992,12 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
1985
1992
|
isRetailer: isRetailer,
|
|
1986
1993
|
showSaveButton: auditorAssigned() || userAssigned(),
|
|
1987
1994
|
version: version,
|
|
1995
|
+
desc: desc,
|
|
1996
|
+
setDesc: setDesc,
|
|
1997
|
+
fich: fich,
|
|
1998
|
+
setFich: setFich,
|
|
1999
|
+
imag: imag,
|
|
2000
|
+
setImag: setImag,
|
|
1988
2001
|
updatedDescriptions: updatedDescriptions,
|
|
1989
2002
|
setUpdatedDescriptions: setUpdatedDescriptions,
|
|
1990
2003
|
updatedDatasheets: updatedDatasheets,
|
|
@@ -2042,7 +2055,7 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
2042
2055
|
auditInputGroup: auditDescriptions[0],
|
|
2043
2056
|
updatedDescriptions: updatedDescriptions,
|
|
2044
2057
|
setUpdatedDescriptions: setUpdatedDescriptions,
|
|
2045
|
-
articleId: product === null || product === void 0 ? void 0 : (_product$
|
|
2058
|
+
articleId: product === null || product === void 0 ? void 0 : (_product$article17 = product.article) === null || _product$article17 === void 0 ? void 0 : _product$article17.id_article,
|
|
2046
2059
|
version: version,
|
|
2047
2060
|
dinamicHeight: true,
|
|
2048
2061
|
compare: compare
|
|
@@ -2063,57 +2076,15 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
2063
2076
|
headerType: "input-name-header"
|
|
2064
2077
|
}))]
|
|
2065
2078
|
})
|
|
2066
|
-
}), (userAssigned(activeTab) || auditorAssigned()) && product["".concat(getConcept(activeTab), "_status")] !== "NS" && /*#__PURE__*/(0, _jsxRuntime.
|
|
2079
|
+
}), (userAssigned(activeTab) || auditorAssigned()) && product["".concat(getConcept(activeTab), "_status")] !== "NS" && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
2067
2080
|
className: "commentary-box",
|
|
2068
|
-
children: [
|
|
2069
|
-
className: "commentary",
|
|
2070
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index.TagAndInput, {
|
|
2071
|
-
label: "Caja de Comentario",
|
|
2072
|
-
inputType: "textarea",
|
|
2073
|
-
inputCols: 80,
|
|
2074
|
-
inputRows: 4,
|
|
2075
|
-
inputId: "commentary-box",
|
|
2076
|
-
index: 0
|
|
2077
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
2078
|
-
className: "buttons-box",
|
|
2079
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
|
|
2080
|
-
buttonType: "general-transparent-button",
|
|
2081
|
-
label: "Enviar comentario",
|
|
2082
|
-
onClick: function onClick(e) {
|
|
2083
|
-
return createComment(e, document.querySelector("#commentary-box .ql-container .ql-editor > p").innerHTML, activeTab);
|
|
2084
|
-
}
|
|
2085
|
-
})
|
|
2086
|
-
})]
|
|
2087
|
-
}) : /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
2088
|
-
className: "feedback-box",
|
|
2089
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Commentary.Commentary, {
|
|
2090
|
-
comment: comment === null || comment === void 0 ? void 0 : (_comment$message = comment.message) === null || _comment$message === void 0 ? void 0 : _comment$message.replace(/<.*?\/?>/gm, ""),
|
|
2091
|
-
reviewed: crossComment
|
|
2092
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
|
|
2093
|
-
buttonType: "circular-button accept-button",
|
|
2094
|
-
onClick: /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee16() {
|
|
2095
|
-
return _regenerator.default.wrap(function _callee16$(_context16) {
|
|
2096
|
-
while (1) {
|
|
2097
|
-
switch (_context16.prev = _context16.next) {
|
|
2098
|
-
case 0:
|
|
2099
|
-
setCrossComment(true);
|
|
2100
|
-
commentRevised();
|
|
2101
|
-
|
|
2102
|
-
case 2:
|
|
2103
|
-
case "end":
|
|
2104
|
-
return _context16.stop();
|
|
2105
|
-
}
|
|
2106
|
-
}
|
|
2107
|
-
}, _callee16);
|
|
2108
|
-
}))
|
|
2109
|
-
})]
|
|
2110
|
-
}), [7, 8].includes(user.id_role) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
|
|
2081
|
+
children: [7, 8].includes(user.id_role) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
|
|
2111
2082
|
buttonType: evaluationFinished(user.id_role, activeTab, statusArray) && requiredNull[activeTab] === 0 ? "general-green-button" : "general-button-disabled",
|
|
2112
2083
|
label: "Enviar evaluación",
|
|
2113
2084
|
onClick: function onClick() {
|
|
2114
2085
|
return sendToFacilitator();
|
|
2115
2086
|
}
|
|
2116
|
-
})
|
|
2087
|
+
})
|
|
2117
2088
|
})]
|
|
2118
2089
|
})]
|
|
2119
2090
|
}), showModal && /*#__PURE__*/(0, _jsxRuntime.jsx)(_ProductImageModal.ProductImageModal, {
|
|
@@ -2142,6 +2113,53 @@ var RetailerProductEdition = function RetailerProductEdition(_ref) {
|
|
|
2142
2113
|
currentVersion: version,
|
|
2143
2114
|
setShowVersionSelector: setShowVersionSelector,
|
|
2144
2115
|
jwt: token
|
|
2116
|
+
}), showRejectModal && /*#__PURE__*/(0, _jsxRuntime.jsx)(_Modal.Modal, {
|
|
2117
|
+
title: "Agregar mensaje de rechazo para ".concat(activeTab === null || activeTab === void 0 ? void 0 : activeTab.toLowerCase()),
|
|
2118
|
+
show: showRejectModal,
|
|
2119
|
+
customComponent: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.TagAndInput, {
|
|
2120
|
+
inputType: "textarea",
|
|
2121
|
+
inputId: "modal-message-box",
|
|
2122
|
+
index: 0,
|
|
2123
|
+
color: "white"
|
|
2124
|
+
}),
|
|
2125
|
+
buttons: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_ButtonV.ButtonV2, {
|
|
2126
|
+
type: "white",
|
|
2127
|
+
label: "Cancelar",
|
|
2128
|
+
size: 12,
|
|
2129
|
+
onClick: function onClick() {
|
|
2130
|
+
setShowRejectModal(false);
|
|
2131
|
+
}
|
|
2132
|
+
}, "btn-Cancelar"), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ButtonV.ButtonV2, {
|
|
2133
|
+
type: "pink",
|
|
2134
|
+
label: "Aceptar",
|
|
2135
|
+
size: 12,
|
|
2136
|
+
onClick: /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee16() {
|
|
2137
|
+
var body, messages;
|
|
2138
|
+
return _regenerator.default.wrap(function _callee16$(_context16) {
|
|
2139
|
+
while (1) {
|
|
2140
|
+
switch (_context16.prev = _context16.next) {
|
|
2141
|
+
case 0:
|
|
2142
|
+
body = document.querySelector("#modal-message-box .ql-container .ql-editor > p").innerHTML;
|
|
2143
|
+
messages = [{
|
|
2144
|
+
type: "message",
|
|
2145
|
+
value: body === null || body === void 0 ? void 0 : body.replace(/<.*?\/?>/gm, "")
|
|
2146
|
+
}];
|
|
2147
|
+
_context16.next = 4;
|
|
2148
|
+
return createComment(messages, activeRetailer.id);
|
|
2149
|
+
|
|
2150
|
+
case 4:
|
|
2151
|
+
valRejAll ? validateAll("R") : sendToFacilitator("R");
|
|
2152
|
+
setMessage("Rechazado");
|
|
2153
|
+
setShowRejectModal(false);
|
|
2154
|
+
|
|
2155
|
+
case 7:
|
|
2156
|
+
case "end":
|
|
2157
|
+
return _context16.stop();
|
|
2158
|
+
}
|
|
2159
|
+
}
|
|
2160
|
+
}, _callee16);
|
|
2161
|
+
}))
|
|
2162
|
+
}, "btn-Aceptar")]
|
|
2145
2163
|
})]
|
|
2146
2164
|
});
|
|
2147
2165
|
};
|