diff --git a/src/components/Money/Money.tsx b/src/components/Money/Money.tsx index c5c0707c0..25c799b14 100644 --- a/src/components/Money/Money.tsx +++ b/src/components/Money/Money.tsx @@ -1,5 +1,6 @@ import { makeStyles, Typography, TypographyProps } from "@material-ui/core"; import HorizontalSpacer from "@saleor/apps/components/HorizontalSpacer"; +import classNames from "classnames"; import React from "react"; export interface IMoney { @@ -16,6 +17,9 @@ const useStyles = makeStyles( container: { display: "flex", alignItems: "baseline" + }, + containerRight: { + justifyContent: "end" } }), { name: "Money" } @@ -29,7 +33,11 @@ export const Money: React.FC = ({ money, ...rest }) => { } return ( -
+
{money.currency} diff --git a/src/customers/components/CustomerOrders/CustomerOrders.tsx b/src/customers/components/CustomerOrders/CustomerOrders.tsx index 79e791a90..edccd76e9 100644 --- a/src/customers/components/CustomerOrders/CustomerOrders.tsx +++ b/src/customers/components/CustomerOrders/CustomerOrders.tsx @@ -132,7 +132,7 @@ const CustomerOrders: React.FC = props => { {maybe(() => order.total.gross) ? ( - + ) : ( )} diff --git a/src/orders/components/OrderDraftList/OrderDraftList.tsx b/src/orders/components/OrderDraftList/OrderDraftList.tsx index 23554fa83..987798d01 100644 --- a/src/orders/components/OrderDraftList/OrderDraftList.tsx +++ b/src/orders/components/OrderDraftList/OrderDraftList.tsx @@ -211,7 +211,7 @@ export const OrderDraftList: React.FC = props => { {maybe(() => order.total.gross) ? ( - + ) : ( )} diff --git a/src/orders/components/OrderList/OrderList.tsx b/src/orders/components/OrderList/OrderList.tsx index da7fe258a..c891f47a6 100644 --- a/src/orders/components/OrderList/OrderList.tsx +++ b/src/orders/components/OrderList/OrderList.tsx @@ -248,7 +248,7 @@ export const OrderList: React.FC = props => { {maybe(() => order.total.gross) ? ( - + ) : ( )} diff --git a/src/orders/components/OrderPayment/OrderPayment.tsx b/src/orders/components/OrderPayment/OrderPayment.tsx index e3217b246..56ff3e5ab 100644 --- a/src/orders/components/OrderPayment/OrderPayment.tsx +++ b/src/orders/components/OrderPayment/OrderPayment.tsx @@ -1,7 +1,7 @@ import { Button, Card, CardActions, CardContent } from "@material-ui/core"; import CardTitle from "@saleor/components/CardTitle"; import { Hr } from "@saleor/components/Hr"; -import Money, { subtractMoney } from "@saleor/components/Money"; +import Money from "@saleor/components/Money"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import { makeStyles } from "@saleor/macaw-ui"; @@ -16,7 +16,11 @@ import { } from "../../../types/globalTypes"; import { OrderDetails_order } from "../../types/OrderDetails"; import messages from "./messages"; -import { extractOrderGiftCardUsedAmount } from "./utils"; +import { + extractOrderGiftCardUsedAmount, + extractOutstandingBalance, + extractRefundedAmount +} from "./utils"; const useStyles = makeStyles( theme => ({ @@ -26,7 +30,8 @@ const useStyles = makeStyles( width: "100%" }, textRight: { - textAlign: "right" + display: "flex", + justifyContent: "end" }, totalRow: { fontWeight: 600 @@ -61,10 +66,9 @@ const OrderPayment: React.FC = props => { maybe(() => order.paymentStatus), intl ); - const refundedAmount = - order?.totalCaptured && - order?.total?.gross && - subtractMoney(order.totalCaptured, order.total.gross); + const refundedAmount = extractRefundedAmount(order); + const outstandingBalance = extractOutstandingBalance(order); + const usedGiftCardAmount = extractOrderGiftCardUsedAmount(order); const getDeliveryMethodName = order => { if ( @@ -87,8 +91,6 @@ const OrderPayment: React.FC = props => { return order.shippingMethodName; }; - const usedGiftCardAmount = extractOrderGiftCardUsedAmount(order); - return ( = props => { /> - {maybe( - () => order.total.gross.amount && order.totalCaptured.amount - ) === undefined ? ( + {outstandingBalance?.amount === undefined ? ( ) : ( - + )} diff --git a/src/orders/components/OrderPayment/utils.ts b/src/orders/components/OrderPayment/utils.ts index cf57f9f0d..e76511a23 100644 --- a/src/orders/components/OrderPayment/utils.ts +++ b/src/orders/components/OrderPayment/utils.ts @@ -1,5 +1,9 @@ +import { IMoney, subtractMoney } from "@saleor/components/Money"; import { OrderDetails_order } from "@saleor/orders/types/OrderDetails"; -import { GiftCardEventsEnum } from "@saleor/types/globalTypes"; +import { + GiftCardEventsEnum, + PaymentChargeStatusEnum +} from "@saleor/types/globalTypes"; import compact from "lodash/compact"; export const extractOrderGiftCardUsedAmount = ( @@ -32,3 +36,23 @@ export const extractOrderGiftCardUsedAmount = ( return resultAmount + amountToAdd; }, 0); }; + +export const extractOutstandingBalance = (order: OrderDetails_order): IMoney => + order?.totalCaptured && + order?.total?.gross && + subtractMoney(order.total.gross, order.totalCaptured); + +export const extractRefundedAmount = (order: OrderDetails_order): IMoney => { + if (order?.paymentStatus === PaymentChargeStatusEnum.FULLY_REFUNDED) { + return order?.total?.gross; + } + if (order?.paymentStatus === PaymentChargeStatusEnum.PARTIALLY_REFUNDED) { + return extractOutstandingBalance(order); + } + return ( + order?.total?.gross && { + amount: 0, + currency: order.total.gross.currency + } + ); +}; diff --git a/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx b/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx index 983f04bff..942a753be 100644 --- a/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx +++ b/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx @@ -20,7 +20,6 @@ const useStyles = makeStyles( marginLeft: AVATAR_MARGIN }, colPrice: { - textAlign: "right", width: 120 }, colQuantity: { @@ -33,7 +32,6 @@ const useStyles = makeStyles( width: 120 }, colTotal: { - textAlign: "right", width: 120 }, infoLabel: { @@ -100,7 +98,7 @@ const TableLine: React.FC = ({ {maybe(() => line.orderLine.unitPrice.gross) ? ( - + ) : ( )} @@ -111,6 +109,7 @@ const TableLine: React.FC = ({ amount: line.quantity * line.orderLine.unitPrice.gross.amount, currency: line.orderLine.unitPrice.gross.currency }} + align="right" /> diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index caf359561..cd31960e5 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -77157,10 +77157,10 @@ exports[`Storyshots Views / Customers / Customer details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -77168,7 +77168,7 @@ exports[`Storyshots Views / Customers / Customer details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -77848,10 +77848,10 @@ exports[`Storyshots Views / Customers / Customer details different addresses 1`] class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -77859,7 +77859,7 @@ exports[`Storyshots Views / Customers / Customer details different addresses 1`] class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -78594,10 +78594,10 @@ exports[`Storyshots Views / Customers / Customer details form errors 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -78605,7 +78605,7 @@ exports[`Storyshots Views / Customers / Customer details form errors 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -79900,10 +79900,10 @@ exports[`Storyshots Views / Customers / Customer details never logged 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -79911,7 +79911,7 @@ exports[`Storyshots Views / Customers / Customer details never logged 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -80585,10 +80585,10 @@ exports[`Storyshots Views / Customers / Customer details never placed order 1`] class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -80596,7 +80596,7 @@ exports[`Storyshots Views / Customers / Customer details never placed order 1`] class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -81270,10 +81270,10 @@ exports[`Storyshots Views / Customers / Customer details no address at all 1`] = class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -81281,7 +81281,7 @@ exports[`Storyshots Views / Customers / Customer details no address at all 1`] = class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -81933,10 +81933,10 @@ exports[`Storyshots Views / Customers / Customer details no default billing addr class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -81944,7 +81944,7 @@ exports[`Storyshots Views / Customers / Customer details no default billing addr class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -82624,10 +82624,10 @@ exports[`Storyshots Views / Customers / Customer details no default shipping add class="MuiTableCell-root-id MuiTableCell-body-id CustomerOrders-textRight-id" >
USD
@@ -82635,7 +82635,7 @@ exports[`Storyshots Views / Customers / Customer details no default shipping add class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -115021,10 +115021,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115032,7 +115032,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
305.17
@@ -115096,10 +115096,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115107,7 +115107,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -115171,10 +115171,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115182,7 +115182,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
321.71
@@ -115246,10 +115246,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115257,7 +115257,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
271.95
@@ -115321,10 +115321,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115332,7 +115332,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
335.84
@@ -115396,10 +115396,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115407,7 +115407,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1042.15
@@ -115471,10 +115471,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115482,7 +115482,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
213.69
@@ -115546,10 +115546,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115557,7 +115557,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
367.03
@@ -115621,10 +115621,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115632,7 +115632,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
298.76
@@ -115696,10 +115696,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115707,7 +115707,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
663.69
@@ -115771,10 +115771,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115782,7 +115782,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
280.41
@@ -115846,10 +115846,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115857,7 +115857,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
234.93
@@ -115921,10 +115921,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -115932,7 +115932,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
485.19
@@ -115996,10 +115996,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116007,7 +116007,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
223.54
@@ -116071,10 +116071,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116082,7 +116082,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
237.55
@@ -116146,10 +116146,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116157,7 +116157,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
453.55
@@ -116221,10 +116221,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116232,7 +116232,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
812.67
@@ -116296,10 +116296,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116307,7 +116307,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
481.41
@@ -116371,10 +116371,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116382,7 +116382,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
569.19
@@ -116446,10 +116446,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116457,7 +116457,7 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
557.00
@@ -116961,10 +116961,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -116972,7 +116972,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
305.17
@@ -117036,10 +117036,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117047,7 +117047,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -117111,10 +117111,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117122,7 +117122,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
321.71
@@ -117186,10 +117186,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117197,7 +117197,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
271.95
@@ -117261,10 +117261,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117272,7 +117272,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
335.84
@@ -117336,10 +117336,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117347,7 +117347,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1042.15
@@ -117411,10 +117411,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117422,7 +117422,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
213.69
@@ -117486,10 +117486,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117497,7 +117497,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
367.03
@@ -117561,10 +117561,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117572,7 +117572,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
298.76
@@ -117636,10 +117636,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117647,7 +117647,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
663.69
@@ -117711,10 +117711,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117722,7 +117722,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
280.41
@@ -117786,10 +117786,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117797,7 +117797,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
234.93
@@ -117861,10 +117861,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117872,7 +117872,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
485.19
@@ -117936,10 +117936,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -117947,7 +117947,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
223.54
@@ -118011,10 +118011,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -118022,7 +118022,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
237.55
@@ -118086,10 +118086,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -118097,7 +118097,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
453.55
@@ -118161,10 +118161,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -118172,7 +118172,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
812.67
@@ -118236,10 +118236,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -118247,7 +118247,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
481.41
@@ -118311,10 +118311,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -118322,7 +118322,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
569.19
@@ -118386,10 +118386,10 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderDraftList-colTotal-id" >
USD
@@ -118397,7 +118397,7 @@ exports[`Storyshots Views / Orders / Draft order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
557.00
@@ -121040,10 +121040,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -121051,7 +121051,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -121061,10 +121061,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -121072,7 +121072,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -121223,10 +121223,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -121234,7 +121234,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -121244,10 +121244,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -121255,7 +121255,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -121406,10 +121406,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -121417,7 +121417,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -121427,10 +121427,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -121438,7 +121438,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -121728,7 +121728,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = `
- -234.93 + 0.00
@@ -121756,7 +121756,7 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = `
- -234.93 + 234.93
@@ -122989,10 +122989,10 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -123000,7 +123000,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -123010,10 +123010,10 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -123021,7 +123021,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -123221,10 +123221,10 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -123232,7 +123232,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -123242,10 +123242,10 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -123253,7 +123253,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -123453,10 +123453,10 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -123464,7 +123464,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -123474,10 +123474,10 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -123485,7 +123485,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -123790,7 +123790,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = `
- -234.93 + 0.00
@@ -123818,7 +123818,7 @@ exports[`Storyshots Views / Orders / Order details default 1`] = `
- -234.93 + 234.93
@@ -125135,10 +125135,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -125146,7 +125146,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -125156,10 +125156,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -125167,7 +125167,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -125367,10 +125367,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -125378,7 +125378,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -125388,10 +125388,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -125399,7 +125399,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -125599,10 +125599,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -125610,7 +125610,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -125620,10 +125620,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -125631,7 +125631,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -125936,7 +125936,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = `
- -234.93 + 0.00
@@ -125964,7 +125964,7 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = `
- -234.93 + 234.93
@@ -127877,10 +127877,10 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -127888,7 +127888,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -127898,10 +127898,10 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -127909,7 +127909,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -128109,10 +128109,10 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -128120,7 +128120,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -128130,10 +128130,10 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -128141,7 +128141,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -128341,10 +128341,10 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -128352,7 +128352,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -128362,10 +128362,10 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -128373,7 +128373,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -128678,7 +128678,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = `
- -234.93 + 0.00
@@ -128706,7 +128706,7 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = `
- -234.93 + 234.93
@@ -130023,10 +130023,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -130034,7 +130034,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -130044,10 +130044,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -130055,7 +130055,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -130255,10 +130255,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -130266,7 +130266,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -130276,10 +130276,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -130287,7 +130287,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -130487,10 +130487,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -130498,7 +130498,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -130508,10 +130508,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -130519,7 +130519,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -130822,7 +130822,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = `
- -234.93 + 0.00
@@ -130850,7 +130850,7 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = `
- -234.93 + 234.93
@@ -132167,10 +132167,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -132178,7 +132178,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -132188,10 +132188,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -132199,7 +132199,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -132399,10 +132399,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -132410,7 +132410,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -132420,10 +132420,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -132431,7 +132431,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -132631,10 +132631,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -132642,7 +132642,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -132652,10 +132652,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -132663,7 +132663,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -132968,7 +132968,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = `
- -234.93 + 0.00
@@ -132996,7 +132996,7 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = `
- -234.93 + 234.93
@@ -134305,10 +134305,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -134316,7 +134316,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -134326,10 +134326,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -134337,7 +134337,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -134537,10 +134537,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -134548,7 +134548,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -134558,10 +134558,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -134569,7 +134569,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -134769,10 +134769,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -134780,7 +134780,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -134790,10 +134790,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -134801,7 +134801,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -135106,7 +135106,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = `
- -234.93 + 0.00
@@ -135134,7 +135134,7 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = `
- -234.93 + 234.93
@@ -136451,10 +136451,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -136462,7 +136462,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -136472,10 +136472,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -136483,7 +136483,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -136683,10 +136683,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -136694,7 +136694,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -136704,10 +136704,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -136715,7 +136715,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -136915,10 +136915,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -136926,7 +136926,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -136936,10 +136936,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -136947,7 +136947,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -137252,7 +137252,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = `
- -234.93 + 0.00
@@ -137280,7 +137280,7 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = `
- -234.93 + 234.93
@@ -138597,10 +138597,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -138608,7 +138608,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -138618,10 +138618,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -138629,7 +138629,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -138829,10 +138829,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -138840,7 +138840,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -138850,10 +138850,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -138861,7 +138861,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -139061,10 +139061,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -139072,7 +139072,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -139082,10 +139082,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -139093,7 +139093,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -139398,7 +139398,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = `
- -234.93 + 0.00
@@ -139426,7 +139426,7 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = `
- -234.93 + 234.93
@@ -140743,10 +140743,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -140754,7 +140754,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -140764,10 +140764,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -140775,7 +140775,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -140975,10 +140975,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -140986,7 +140986,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -140996,10 +140996,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -141007,7 +141007,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -141207,10 +141207,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -141218,7 +141218,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -141228,10 +141228,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -141239,7 +141239,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -141544,7 +141544,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = `
- -234.93 + 0.00
@@ -141572,7 +141572,7 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = `
- -234.93 + 234.93
@@ -142889,10 +142889,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -142900,7 +142900,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -142910,10 +142910,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -142921,7 +142921,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -143121,10 +143121,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -143132,7 +143132,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -143142,10 +143142,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -143153,7 +143153,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -143353,10 +143353,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -143364,7 +143364,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -143374,10 +143374,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -143385,7 +143385,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -143690,7 +143690,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = `
- -234.93 + 234.93
@@ -143718,7 +143718,7 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = `
- -234.93 + 234.93
@@ -145035,10 +145035,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -145046,7 +145046,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -145056,10 +145056,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -145067,7 +145067,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -145267,10 +145267,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -145278,7 +145278,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -145288,10 +145288,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -145299,7 +145299,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -145499,10 +145499,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -145510,7 +145510,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -145520,10 +145520,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -145531,7 +145531,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -145836,7 +145836,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = `
- -234.93 + 0.00
@@ -145864,7 +145864,7 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = `
- -234.93 + 234.93
@@ -147181,10 +147181,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -147192,7 +147192,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
18.51
@@ -147202,10 +147202,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -147213,7 +147213,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
55.53
@@ -147413,10 +147413,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -147424,7 +147424,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -147434,10 +147434,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -147445,7 +147445,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -147645,10 +147645,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colPrice-id" >
USD
@@ -147656,7 +147656,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -147666,10 +147666,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id TableLine-colTotal-id" >
USD
@@ -147677,7 +147677,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
79.71
@@ -147982,7 +147982,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = `
- -234.93 + 0.00
@@ -148010,7 +148010,7 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = `
- -234.93 + 234.93
@@ -151830,10 +151830,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -151841,7 +151841,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
305.17
@@ -151917,10 +151917,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -151928,7 +151928,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -152004,10 +152004,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152015,7 +152015,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
321.71
@@ -152091,10 +152091,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152102,7 +152102,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
271.95
@@ -152178,10 +152178,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152189,7 +152189,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
335.84
@@ -152265,10 +152265,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152276,7 +152276,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1042.15
@@ -152352,10 +152352,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152363,7 +152363,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
213.69
@@ -152439,10 +152439,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152450,7 +152450,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
367.03
@@ -152526,10 +152526,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152537,7 +152537,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
298.76
@@ -152613,10 +152613,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152624,7 +152624,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
663.69
@@ -152700,10 +152700,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152711,7 +152711,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
280.41
@@ -152787,10 +152787,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152798,7 +152798,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
234.93
@@ -152874,10 +152874,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152885,7 +152885,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
485.19
@@ -152961,10 +152961,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -152972,7 +152972,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
223.54
@@ -153048,10 +153048,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -153059,7 +153059,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
237.55
@@ -153135,10 +153135,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -153146,7 +153146,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
453.55
@@ -153222,10 +153222,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -153233,7 +153233,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
812.67
@@ -153309,10 +153309,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -153320,7 +153320,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
481.41
@@ -153396,10 +153396,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -153407,7 +153407,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
569.19
@@ -153483,10 +153483,10 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -153494,7 +153494,7 @@ exports[`Storyshots Views / Orders / Order list default 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
557.00
@@ -154037,10 +154037,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154048,7 +154048,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
305.17
@@ -154124,10 +154124,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154135,7 +154135,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -154211,10 +154211,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154222,7 +154222,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
321.71
@@ -154298,10 +154298,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154309,7 +154309,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
271.95
@@ -154385,10 +154385,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154396,7 +154396,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
335.84
@@ -154472,10 +154472,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154483,7 +154483,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1042.15
@@ -154559,10 +154559,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154570,7 +154570,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
213.69
@@ -154646,10 +154646,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154657,7 +154657,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
367.03
@@ -154733,10 +154733,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154744,7 +154744,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
298.76
@@ -154820,10 +154820,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154831,7 +154831,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
663.69
@@ -154907,10 +154907,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -154918,7 +154918,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
280.41
@@ -154994,10 +154994,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155005,7 +155005,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
234.93
@@ -155081,10 +155081,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155092,7 +155092,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
485.19
@@ -155168,10 +155168,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155179,7 +155179,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
223.54
@@ -155255,10 +155255,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155266,7 +155266,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
237.55
@@ -155342,10 +155342,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155353,7 +155353,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
453.55
@@ -155429,10 +155429,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155440,7 +155440,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
812.67
@@ -155516,10 +155516,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155527,7 +155527,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
481.41
@@ -155603,10 +155603,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155614,7 +155614,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
569.19
@@ -155690,10 +155690,10 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -155701,7 +155701,7 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
557.00
@@ -156627,10 +156627,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -156638,7 +156638,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
305.17
@@ -156714,10 +156714,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -156725,7 +156725,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1215.89
@@ -156801,10 +156801,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -156812,7 +156812,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
321.71
@@ -156888,10 +156888,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -156899,7 +156899,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
271.95
@@ -156975,10 +156975,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -156986,7 +156986,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
335.84
@@ -157062,10 +157062,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157073,7 +157073,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
1042.15
@@ -157149,10 +157149,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157160,7 +157160,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
213.69
@@ -157236,10 +157236,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157247,7 +157247,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
367.03
@@ -157323,10 +157323,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157334,7 +157334,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
298.76
@@ -157410,10 +157410,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157421,7 +157421,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
663.69
@@ -157497,10 +157497,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157508,7 +157508,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
280.41
@@ -157584,10 +157584,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157595,7 +157595,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
234.93
@@ -157671,10 +157671,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157682,7 +157682,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
485.19
@@ -157758,10 +157758,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157769,7 +157769,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
223.54
@@ -157845,10 +157845,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157856,7 +157856,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
237.55
@@ -157932,10 +157932,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -157943,7 +157943,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
453.55
@@ -158019,10 +158019,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -158030,7 +158030,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
812.67
@@ -158106,10 +158106,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -158117,7 +158117,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
481.41
@@ -158193,10 +158193,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -158204,7 +158204,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
569.19
@@ -158280,10 +158280,10 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="MuiTableCell-root-id MuiTableCell-body-id OrderList-colTotal-id" >
USD
@@ -158291,7 +158291,7 @@ exports[`Storyshots Views / Orders / Order list no limits 1`] = ` class="HorizontalSpacer-container-id HorizontalSpacer-container-id" />
557.00