) => {\r\n await AddToCartComponentActions.onClick(event, props, cartUrl, setWorking, setDisabled, setSuccess, setModalOpen, setItemsAddedToCartDialogOpen, setErrorMessage);\r\n };\r\n\r\n /**\r\n * Close dialog.\r\n */\r\n const closeItemsAddedToCartDialog = React.useCallback(() => {\r\n setItemsAddedToCartDialogOpen(false);\r\n }, []);\r\n\r\n const priceComponent = props.data?.price ? (\r\n \r\n ) : (\r\n ''\r\n );\r\n\r\n const popupProps: IPopupProps = {\r\n context: props.context,\r\n className: 'msc-add-to-cart',\r\n id: props.id,\r\n typeName: props.typeName,\r\n data: {\r\n product: props.data?.product ? {\r\n ...props.data.product,\r\n DefaultUnitOfMeasure: humanizeUnitOfMeasure(props.context, props.data.product.DefaultUnitOfMeasure, props.data.product)\r\n } : undefined,\r\n price: props.data?.price\r\n },\r\n dialogStrings: props.dialogStrings,\r\n imageSettings: props.imageSettings,\r\n gridSettings: props.context.request.gridSettings,\r\n productQuantity: props.quantity !== undefined ? props.quantity : defaultQuantity,\r\n priceComponent,\r\n navigationUrl: props.navigationUrl,\r\n modalOpen,\r\n setModalOpen,\r\n telemetryContent: props.telemetryContent\r\n };\r\n\r\n const itemsAddedResource: IItemsAddedToCartResources = {\r\n viewCartButtonText: props.dialogStrings?.goToCartText ?? '',\r\n closeButtonLabel: props.dialogStrings?.closeNotificationLabel ?? 'Close',\r\n itemsAddedToCartHeaderText: props.dialogStrings?.headerMessageText ?? '',\r\n itemsAddedToCartFormatText: props.dialogStrings?.headerItemFormatText ?? '',\r\n linesAddedToCartFormatText: props.dialogStrings?.headerLinesFormatText ?? '{0}',\r\n itemsAddedValidationErrorMessage: errorMessage\r\n };\r\n\r\n const renderModalPopup = ;\r\n let label = getLinkText(props);\r\n const payload = getPayloadObject(TelemetryEvent.AddToCart, props.telemetryContent!, label, '');\r\n const attributes = getTelemetryAttributes(props.telemetryContent!, payload);\r\n const buttonClassName = props.shouldSkipSiteSettings ? '' : 'msc-add-to-cart ';\r\n const cartLine = props.data?.cart?.cart?.CartLines?.find(x => x.ProductId === props.data?.product.RecordId);\r\n const cartQuantity = cartLine?.Quantity;\r\n const sameQuantityInCart = !props.buyAlwaysAdd && props.quantity === cartQuantity;\r\n\r\n React.useEffect(() => {\r\n const retrieveAddToCartInput = async () => {\r\n const retrievedInput = await getAddToCartInputFromProps(props);\r\n retrievedInput.forEach(item => {\r\n item.product = {\r\n ...item.product,\r\n DefaultUnitOfMeasure: humanizeUnitOfMeasure(props.context, item.product.DefaultUnitOfMeasure, item.product)\r\n };\r\n });\r\n setAddToCartInput(retrievedInput);\r\n };\r\n\r\n void retrieveAddToCartInput();\r\n }, [props, setAddToCartInput]);\r\n\r\n React.useEffect(() => {\r\n if (success) {\r\n // Wait 2 seconds than set working to undefined\r\n const timeout = setTimeout(() => {\r\n setSuccess(false);\r\n }\r\n , 2000);\r\n return () => clearTimeout(timeout);\r\n } else {\r\n return undefined;\r\n }\r\n }, [success]);\r\n\r\n const product = props.data?.product;\r\n const soldOutUntilDate = (product as SimpleProductExt | undefined)?.SoldOutUntilDate;\r\n const soldOutUnknownDate = (product as SimpleProductExt | undefined)?.SoldOutUnknownDate;\r\n const isExpired =\r\n soldOutUntilDate && new Date() < new Date(soldOutUntilDate) && (props.productAvailability?.AvailableQuantity || 0) < 1 ||\r\n soldOutUnknownDate ||\r\n product?.Behavior?.IsSaleAtPhysicalStoresAllowed === false ||\r\n product?.Behavior?.IsSaleAtSelfCheckoutRegistersAllowed === false;\r\n const disableButton = !product || isExpired || props.disabled || disabled || sameQuantityInCart; // || isIntermediateState(props) <-- Removed cause it broke updating of state\r\n\r\n if (isExpired) {\r\n label = props.expiredText || 'Utsolgt';\r\n }\r\n\r\n return (\r\n \r\n {renderModalPopup}\r\n \r\n \r\n
\r\n );\r\n};\r\n\r\n// Set default props\r\nAddToCartFunctionalComponent.defaultProps = {\r\n quantity: defaultQuantity\r\n};\r\n\r\n/**\r\n * Resolves whether product is in stock.\r\n * @param props - The add to cart component props.\r\n * @returns Gets the link text.\r\n */\r\nconst getLinkText = (props: IAddToCartComponentProps): string => {\r\n const cartLine = props.data?.cart?.cart?.CartLines?.find(x => x.ProductId === props.data?.product.RecordId);\r\n const cartQuantity = cartLine?.Quantity;\r\n\r\n if (props.buyAlwaysAdd) {\r\n return props.addToCartText;\r\n } else if (!cartLine || cartQuantity === undefined) {\r\n return props.addToCartText;\r\n } else if (cartQuantity > 0 && props.quantity !== undefined && props.quantity < 1) {\r\n return props.removeFromCartText;\r\n } else if (cartQuantity !== props.quantity) {\r\n return props.updateCartText;\r\n }\r\n\r\n return props.addToCartText;\r\n};\r\n\r\n/**\r\n * Resolves whether product is in stock.\r\n * @param props - The add to cart component props.\r\n * @returns The add to cart failure result.\r\n */\r\nconst addToCartError = (props: IAddToCartComponentProps): IAddToCartFailureResult | undefined => {\r\n const {\r\n data,\r\n //productAvailability,\r\n isCustomPriceSelected,\r\n customPriceAmount,\r\n maximumKeyInPrice,\r\n minimumKeyInPrice,\r\n defaultMaximumKeyInPrice = 100,\r\n defaultMinimumKeyInPrice = 10\r\n } = props;\r\n\r\n if (!data || !data.product.RecordId) {\r\n // No product exists, won't be able to add to cart\r\n return { failureReason: 'EMPTYINPUT' };\r\n }\r\n\r\n if (data.product.Dimensions) {\r\n const missingDimensions = data.product.Dimensions.filter(\r\n dimension => !(dimension.DimensionValue && dimension.DimensionValue.Value)\r\n );\r\n\r\n if (ArrayExtensions.hasElements(missingDimensions)) {\r\n // At least one dimension with no value exists on the product, won't be able to add to cart\r\n return { failureReason: 'MISSINGDIMENSION', missingDimensions };\r\n }\r\n }\r\n\r\n // if (shouldShowOutOfStock(props, true)) {\r\n // const defaultAvailableQuantity = 0; // Showing as out of stock if no available products found.\r\n // const availableQuantity = productAvailability?.AvailableQuantity ?? defaultAvailableQuantity;\r\n // const stockLeft = Math.max(availableQuantity, defaultAvailableQuantity);\r\n //\r\n // return { failureReason: 'OUTOFSTOCK', stockLeft };\r\n // }\r\n\r\n // When Custom price is selected, if there is no keyed-in price or keyed-in price is out of limit, should return error.\r\n if (\r\n isCustomPriceSelected &&\r\n (!customPriceAmount ||\r\n customPriceAmount > (maximumKeyInPrice || defaultMaximumKeyInPrice) ||\r\n customPriceAmount < (minimumKeyInPrice || defaultMinimumKeyInPrice))\r\n ) {\r\n return { failureReason: 'INVALIDCUSTOMAMOUNT' };\r\n }\r\n\r\n // Only allow adding to cart if not showing out of stock\r\n return undefined;\r\n};\r\n\r\n/**\r\n * Resolves whether product is in stock.\r\n * @param props - The add to cart component props.\r\n * @param includeCurrentQuantity - Flag to specify whether current quantity should be included.\r\n * @returns The dialog element.\r\n */\r\n// const shouldShowOutOfStock = (props: IAddToCartComponentProps, includeCurrentQuantity: boolean): boolean => {\r\n// if (props.context.app.config.enableStockCheck === undefined || props.context.app.config.enableStockCheck === false) {\r\n// return false;\r\n// }\r\n//\r\n// // When skip site settings do not need show out of stock on adding to cart\r\n// if (props.shouldSkipSiteSettings) {\r\n// return false;\r\n// }\r\n//\r\n// if (\r\n// props.isLoading ||\r\n// props.isProductQuantityLoading ||\r\n// props.isUpdatingDimension ||\r\n// props.isLoadingDeliveryOptions ||\r\n// props.isUpdatingDeliveryOptions ||\r\n// props.isAddServiceItemToCart\r\n// ) {\r\n// // Out of stock turn off, don't bother showing out of stock\r\n// return false;\r\n// }\r\n//\r\n// if (!props.data || !props.data.product.RecordId) {\r\n// // No product exists, don't bother showing out of stock\r\n// return false;\r\n// }\r\n//\r\n// const hasAvailableProducts = props.hasAvailableProducts ?? true;\r\n// if (!hasAvailableProducts) {\r\n// return true;\r\n// }\r\n//\r\n// if (props.data.product.Dimensions) {\r\n// if (props.data.product.Dimensions.find(dimension => !(dimension.DimensionValue && dimension.DimensionValue.Value))) {\r\n// // At least one dimension with no value exists on the product, so also don't show out of stock\r\n// return false;\r\n// }\r\n// }\r\n//\r\n// const includedQuantityNumber = includeCurrentQuantity && props.quantity ? props.quantity : defaultQuantity;\r\n//\r\n// return !(\r\n// props.productAvailability &&\r\n// props.productAvailability.AvailableQuantity !== undefined &&\r\n// props.productAvailability.AvailableQuantity >= includedQuantityNumber\r\n// );\r\n// };\r\n\r\n// @ts-expect-error\r\nconst isIntermediateState = (props: IAddToCartComponentProps): boolean => {\r\n if (props.data?.product.Dimensions) {\r\n if (props.data.product.Dimensions.find(dimension => !(dimension.DimensionValue && dimension.DimensionValue.Value))) {\r\n // At least one dimension with no value exists on the product, so also not in intermediate state\r\n return false;\r\n }\r\n }\r\n\r\n if (!props.isLoading && !props.isUpdatingDimension && !props.isLoadingDeliveryOptions && !props.isUpdatingDeliveryOptions) {\r\n return false;\r\n }\r\n\r\n return true;\r\n};\r\n// @ts-ignore\r\nexport const AddToCartComponent: React.FunctionComponent = msdyn365Commerce.createComponent(\r\n 'AddToCart',\r\n { component: AddToCartFunctionalComponent, ...AddToCartComponentActions }\r\n);\r\n","/*!\r\n * Copyright (c) Microsoft Corporation.\r\n * All rights reserved. See LICENSE in the project root for license information.\r\n */\r\n\r\nimport { IAddToCartFailureResult } from '@msdyn365-commerce/components';\r\nimport { IAny, ICoreContext, IGeneric } from '@msdyn365-commerce/core';\r\nimport { ICartState } from '@msdyn365-commerce/global-state';\r\nimport { OrgUnitLocation, ProductAvailableQuantity, ProductDimension, SimpleProduct } from '@msdyn365-commerce/retail-proxy';\r\nimport { ArrayExtensions, StringExtensions } from '@msdyn365-commerce-modules/retail-actions';\r\n\r\nimport { IBuyboxCommonResources } from '../buyboxInterface';\r\n\r\n/**\r\n * Get the quantity limit.\r\n * @param context - The context.\r\n * @param productAvailability - The product availability.\r\n * @returns The quantity limit.\r\n */\r\nexport function getQuantityLimit(context: ICoreContext>, productAvailability: ProductAvailableQuantity | undefined): number {\r\n // Get the quantity limit for the product\r\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access -- need read from config.\r\n const maxQuantityForCartLineItem: number | undefined = context.app.config.maxQuantityForCartLineItem;\r\n const availableQty = productAvailability?.AvailableQuantity;\r\n const defaultQuantityLimit = 10;\r\n\r\n let quantityLimit: number;\r\n\r\n if (maxQuantityForCartLineItem === undefined && availableQty === undefined) {\r\n quantityLimit = defaultQuantityLimit;\r\n } else if (availableQty === undefined) {\r\n quantityLimit = maxQuantityForCartLineItem ?? defaultQuantityLimit;\r\n } else if (maxQuantityForCartLineItem === undefined) {\r\n quantityLimit = availableQty;\r\n } else {\r\n quantityLimit = Math.min(maxQuantityForCartLineItem, availableQty);\r\n }\r\n\r\n return quantityLimit;\r\n}\r\n\r\n/**\r\n * Get the element index.\r\n * @param cart - The cart.\r\n * @param product - The product.\r\n * @param location - The location.\r\n * @returns The index of the element.\r\n */\r\nexport function getElementIndex(\r\n cart: ICartState | undefined,\r\n product: SimpleProduct | undefined,\r\n location: OrgUnitLocation | undefined\r\n): number {\r\n // Get the quantity of the product in cart\r\n let elementFoundAt: number = -1;\r\n\r\n const productIdToFind = product?.RecordId;\r\n\r\n for (let index = 0; index < cart!.cart.CartLines!.length; index++) {\r\n if (\r\n cart!.cart.CartLines![index].ProductId === productIdToFind &&\r\n (cart!.cart.CartLines![index].FulfillmentStoreId || '') === (location?.OrgUnitNumber || '')\r\n ) {\r\n elementFoundAt = index;\r\n\r\n break;\r\n }\r\n }\r\n\r\n return elementFoundAt;\r\n}\r\n\r\nexport function getQuantityError(stockLeft: number | undefined, resources: IBuyboxCommonResources): string | undefined {\r\n if (!stockLeft || stockLeft <= 0) {\r\n return resources.errorMessageOutOfStock;\r\n } else if (stockLeft === 1) {\r\n return resources.errorMessageOutOfRangeOneLeft;\r\n }\r\n return resources.errorMessageOutOfRangeFormat.replace('{numLeft}', stockLeft.toString());\r\n}\r\n\r\nexport function getGenericError(\r\n result: IAddToCartFailureResult,\r\n cart: ICartState | undefined,\r\n resources: IBuyboxCommonResources,\r\n context: ICoreContext>,\r\n product: SimpleProduct | undefined,\r\n productAvailability: ProductAvailableQuantity | undefined,\r\n location: OrgUnitLocation | undefined\r\n): string | undefined {\r\n if (result.failureReason === 'EMPTYINPUT') {\r\n return resources.addedToCartFailureMessage;\r\n } else if (result.failureReason === 'CARTACTIONFAILED') {\r\n if (result.cartActionResult && result.cartActionResult.substatus === 'MAXQUANTITY') {\r\n // Get the quantity of the product in cart\r\n const elementFoundAt: number = getElementIndex(cart, product, location);\r\n\r\n let currentQuantity: number = 0;\r\n if (elementFoundAt !== -1) {\r\n const cartLineToUpdate = { ...cart!.cart.CartLines![elementFoundAt] };\r\n currentQuantity = cartLineToUpdate.Quantity ?? 0;\r\n }\r\n\r\n // Get the quantity limit for the product\r\n const quantityLimit = getQuantityLimit(context, productAvailability);\r\n return resources.maxQuantityLimitText\r\n .replace('{curQuantity}', currentQuantity.toString())\r\n .replace('{maxQuantity}', quantityLimit.toString());\r\n } else if (\r\n result.cartActionResult &&\r\n (result.cartActionResult.substatus === 'QUANTITYLIMITS' || result.cartActionResult.substatus === 'INVOICEINCART')\r\n ) {\r\n return result.cartActionResult.errorDetails?.LocalizedMessage;\r\n }\r\n\r\n if (result.cartActionResult?.validationResults && ArrayExtensions.hasElements(result.cartActionResult.validationResults)) {\r\n return result.cartActionResult.validationResults\r\n .map(item => {\r\n return StringExtensions.isNullOrEmpty(item.LocalizedMessage)\r\n ? item.ErrorContext ?? item.ErrorResourceId\r\n : item.LocalizedMessage;\r\n })\r\n .toString();\r\n }\r\n\r\n return resources.addedToCartFailureMessage;\r\n }\r\n\r\n return undefined;\r\n}\r\n\r\nexport function getConfigureErrors(\r\n result: ProductDimension[] | undefined,\r\n resources: IBuyboxCommonResources,\r\n isGiftCard?: boolean\r\n): { [configureId: string]: string | undefined } {\r\n if (!result) {\r\n return {};\r\n }\r\n\r\n const dimensions: { [configureId: string]: string | undefined } = {};\r\n\r\n for (const dimension of result) {\r\n dimensions[dimension.DimensionTypeValue] = getDimensionErrorString(dimension.DimensionTypeValue, resources, isGiftCard);\r\n }\r\n\r\n return dimensions;\r\n}\r\n\r\nexport function getDimensionErrorString(dimensionTypeValue: number, resources: IBuyboxCommonResources, isGiftCard?: boolean): string {\r\n switch (dimensionTypeValue) {\r\n case 1: // ProductDimensionType.Color\r\n return resources.productDimensionTypeColorErrorMessage;\r\n case 2: // ProductDimensionType.Configuration\r\n return resources.productDimensionTypeConfigurationErrorMessage;\r\n case 3: // ProductDimensionType.Size\r\n return resources.productDimensionTypeSizeErrorMessage;\r\n case 4: // ProductDimensionType.Style\r\n return isGiftCard ? resources.productDimensionTypeAmountErrorMessage : resources.productDimensionTypeStyleErrorMessage;\r\n default:\r\n return '';\r\n }\r\n}\r\n"],"names":["translations","humanizeUnitOfMeasure","locale","unitOfMeasure","simpleProduct","_simpleProduct$Extens","_friendlyUnitOfMeasur","_translations$locale","friendlyUnitOfMeasure","ExtensionProperties","find","extProp","Key","Value","StringValue","request","props","_props$simpleProduct","_props$simpleProduct2","context","disableTranslate","className","classnames","app","config","disableUnitReplace","url","requestUrl","searchParams","get","toLowerCase","DefaultUnitOfMeasure","React","AddToCartBehavior","propagateResult","result","onAdd","propagateError","onError","getAddToCartInputFromProps","async","_props$orderDetailsPr","_props$data","products","orderDetailsProducts","filter","product","ObjectExtensions","isNullOrUndefined","input","map","_props$orderDetailsAc","count","salesLine","Quantity","catalogId","CatalogId","customPrice","orderDetailsActivePrices","x","_product$simpleProduc","ProductId","RecordId","CustomerContextualPrice","ArrayExtensions","hasElements","_props$catalogId","actionContext","apiSettings","requestContext","searchCriteriaInput","Context","ChannelId","channelId","getCatalogId","IncludeAttributes","Ids","productId","productSearchResultsWithImages","ProductsDataActions","callerContext","productSearchResult","newProductSearchResult","_objectSpread","newImageUrl","generateProductImageUrl","PrimaryImageUrl","item","productData","_productData$BasePric","ProductTypeValue","ProductType","Variant","AdjustedPrice","Price","BasePrice","quantity","_props$quantity","_props$data2","data","productSearch","addItemsToCart","setDisabled","setSuccess","setItemsAddedToCartDialogOpen","setErrorMessage","addToCartInput","forEach","getDefaultBuyQuantity","breakoff","cartState","getCartState","addToCartResult","addProductsToCart","status","_validationResult$Val","_props$dialogStrings","_props$dialogStrings2","_props$dialogStrings$","_props$dialogStrings3","errorCount","CartsDataActions","bypassCache","cart","Id","Version","ValidationFailuresByCartLines","length","errorText","dialogStrings","oneErrorText","multiErrorsText","errorMessage","format","validationErrorMessage","toString","addToCartBehavior","showModal","showNotification","_props$dialogStrings$2","itemsAddedResource","viewCartButtonText","goToCartText","closeButtonLabel","closeNotificationLabel","itemsAddedToCartHeaderText","headerMessageText","itemsAddedToCartFormatText","headerItemFormatText","linesAddedToCartFormatText","headerLinesFormatText","itemsAddedValidationErrorMessage","notification","MultiItemsSuccessfullyAddedToCartNotification","imageSettings","gridSettings","navigationUrl","telemetryContent","id","typeName","NotificationsManager","instance","addNotification","MsDyn365","isBrowser","isNavigationToCartPageDisabled","undefined","goToCart","window","location","assign","handleAddItemsToCartSuccess","_props$dialogStrings4","_props$dialogStrings$3","_addToCartResult$erro2","_addToCartResult$erro3","_props$dialogStrings$4","_props$dialogStrings5","buyAgainNotificationTitle","ErrorNotification","buyAgainNotificationCloseAriaLabel","errorDetails","LocalizedMessage","failureReason","cartActionResult","AddToCartComponentActions","onClick","_event","cartUrl","setWorking","openModal","_props$data4","cartError","addToCartError","hasOrderDetailsProducts","hasProducts","hasMultipleProducts","method","cartLine","CartLines","_props$data5","cartQuantity","buyAlwaysAdd","work","validationError","userHasAccess","_props$toastStrings$n","_props$toastStrings5","validateAlcoholLicenseAsync","ProductIds","ValidationResult","toastStrings","noAccessToProduct","onBuyValidate","_props$data6","_props$quantity2","isValid","message","_props$toastStrings6","toasts","error","errorHeader","shouldSkipSiteSettings","cartLineId","_props$productAvailab","_props$data3","_cartState$cart$CartL","console","log","Promise","resolve","setTimeout","updateCartLineQuantity","newQuantity","LineId","addProductToCart","availableQuantity","productAvailability","AvailableQuantity","additionalProperties","orderQuantityLimitsFeatureIsEnabled","isOrderQuantityLimitsFeatureEnabled","enableStockCheck","isPriceKeyedIn","isAddEmailDeliveryItemToCart","_props$toastStrings$p","_props$toastStrings","_product$Name","_props$toastStrings$p2","_props$toastStrings2","_product$Name2","_props$toastStrings3","toastText","productsAddedToCart","replace","Name","productsUpdatedInCart","toast","text","type","autoClose","position","canClose","showProgress","link","linkLabel","_props$onUpdateQuanti","onUpdateQuantity","call","_props$onUpdateQuanti2","_addToCartResult$erro","_props$toastStrings4","_text","validationResults","buyBoxResources","getGenericError","addOneItemToCart","_props$data7","removeCartLines","cartLineIds","_props$toastStrings$p3","_props$toastStrings7","_props$data$product$N","_props$data8","_props$toastStrings8","_result$errorDetails$","_result$errorDetails","_props$dialogStrings$5","_props$dialogStrings6","productsRemovedFromCart","cartQueue","add","AddToCartFunctionalComponent","_props$data9","_props$dialogStrings7","_props$dialogStrings8","_props$dialogStrings9","_props$data10","_props$data11","_props$dialogStrings$6","_props$dialogStrings10","_props$dialogStrings$7","_props$dialogStrings11","_props$dialogStrings$8","_props$dialogStrings12","_props$dialogStrings$9","_props$dialogStrings13","_props$dialogStrings$10","_props$dialogStrings14","_props$data12","_props$data14","_props$productAvailab2","_product$Behavior","_product$Behavior2","_props$addToCartArial","_props$addToCartArial2","success","useState","working","disabled","modalOpen","setModalOpen","isItemsAddedToCartDialogOpen","setAddToCartInput","useMemo","getUrlSync","closeItemsAddedToCartDialog","priceComponent","price","PriceComponent","freePriceText","originalPriceText","currentPriceText","popupProps","productQuantity","renderModalPopup","Popup","Object","label","getLinkText","payload","getPayloadObject","TelemetryEvent","AddToCart","attributes","getTelemetryAttributes","buttonClassName","_props$data13","sameQuantityInCart","retrievedInput","retrieveAddToCartInput","timeout","clearTimeout","soldOutUntilDate","SoldOutUntilDate","soldOutUnknownDate","SoldOutUnknownDate","isExpired","Date","Behavior","IsSaleAtPhysicalStoresAllowed","IsSaleAtSelfCheckoutRegistersAllowed","disableButton","expiredText","addToCartArialLabel","title","event","ItemsAddedToCartDialogComponent","isModalOpen","onClose","defaultProps","_props$data15","_props$data16","addToCartText","removeFromCartText","updateCartText","isCustomPriceSelected","customPriceAmount","maximumKeyInPrice","minimumKeyInPrice","defaultMaximumKeyInPrice","defaultMinimumKeyInPrice","Dimensions","missingDimensions","dimension","DimensionValue","AddToCartComponent","msdyn365Commerce","createComponent","component","resources","addedToCartFailureMessage","_result$cartActionRes2","_result$cartActionRes","substatus","elementFoundAt","productIdToFind","index","FulfillmentStoreId","OrgUnitNumber","getElementIndex","currentQuantity","_cartLineToUpdate$Qua","quantityLimit","maxQuantityForCartLineItem","availableQty","Math","min","getQuantityLimit","maxQuantityLimitText","_item$ErrorContext","StringExtensions","isNullOrEmpty","ErrorContext","ErrorResourceId"],"sourceRoot":""}