@medusajs/draft-order 2.11.0-preview-20251021000332 → 2.11.0-preview-20251021031736
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.medusa/server/src/admin/index.js +308 -308
- package/.medusa/server/src/admin/index.mjs +308 -308
- package/package.json +16 -16
|
@@ -9565,6 +9565,196 @@ const ID = () => {
|
|
|
9565
9565
|
/* @__PURE__ */ jsx(Outlet, {})
|
|
9566
9566
|
] });
|
|
9567
9567
|
};
|
|
9568
|
+
const BillingAddress = () => {
|
|
9569
|
+
const { id } = useParams();
|
|
9570
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
9571
|
+
fields: "+billing_address"
|
|
9572
|
+
});
|
|
9573
|
+
if (isError) {
|
|
9574
|
+
throw error;
|
|
9575
|
+
}
|
|
9576
|
+
const isReady = !isPending && !!order;
|
|
9577
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9578
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
9579
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
|
|
9580
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
9581
|
+
] }),
|
|
9582
|
+
isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
|
|
9583
|
+
] });
|
|
9584
|
+
};
|
|
9585
|
+
const BillingAddressForm = ({ order }) => {
|
|
9586
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
9587
|
+
const form = useForm({
|
|
9588
|
+
defaultValues: {
|
|
9589
|
+
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
9590
|
+
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
9591
|
+
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
9592
|
+
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
9593
|
+
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
9594
|
+
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
9595
|
+
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
9596
|
+
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
9597
|
+
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
9598
|
+
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
9599
|
+
},
|
|
9600
|
+
resolver: zodResolver(schema$5)
|
|
9601
|
+
});
|
|
9602
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9603
|
+
const { handleSuccess } = useRouteModal();
|
|
9604
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
9605
|
+
await mutateAsync(
|
|
9606
|
+
{ billing_address: data },
|
|
9607
|
+
{
|
|
9608
|
+
onSuccess: () => {
|
|
9609
|
+
handleSuccess();
|
|
9610
|
+
},
|
|
9611
|
+
onError: (error) => {
|
|
9612
|
+
toast.error(error.message);
|
|
9613
|
+
}
|
|
9614
|
+
}
|
|
9615
|
+
);
|
|
9616
|
+
});
|
|
9617
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
9618
|
+
KeyboundForm,
|
|
9619
|
+
{
|
|
9620
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
9621
|
+
onSubmit,
|
|
9622
|
+
children: [
|
|
9623
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
9624
|
+
/* @__PURE__ */ jsx(
|
|
9625
|
+
Form$2.Field,
|
|
9626
|
+
{
|
|
9627
|
+
control: form.control,
|
|
9628
|
+
name: "country_code",
|
|
9629
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9630
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
9631
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
9632
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9633
|
+
] })
|
|
9634
|
+
}
|
|
9635
|
+
),
|
|
9636
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9637
|
+
/* @__PURE__ */ jsx(
|
|
9638
|
+
Form$2.Field,
|
|
9639
|
+
{
|
|
9640
|
+
control: form.control,
|
|
9641
|
+
name: "first_name",
|
|
9642
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9643
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
9644
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9645
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9646
|
+
] })
|
|
9647
|
+
}
|
|
9648
|
+
),
|
|
9649
|
+
/* @__PURE__ */ jsx(
|
|
9650
|
+
Form$2.Field,
|
|
9651
|
+
{
|
|
9652
|
+
control: form.control,
|
|
9653
|
+
name: "last_name",
|
|
9654
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9655
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
9656
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9657
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9658
|
+
] })
|
|
9659
|
+
}
|
|
9660
|
+
)
|
|
9661
|
+
] }),
|
|
9662
|
+
/* @__PURE__ */ jsx(
|
|
9663
|
+
Form$2.Field,
|
|
9664
|
+
{
|
|
9665
|
+
control: form.control,
|
|
9666
|
+
name: "company",
|
|
9667
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9668
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
9669
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9670
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9671
|
+
] })
|
|
9672
|
+
}
|
|
9673
|
+
),
|
|
9674
|
+
/* @__PURE__ */ jsx(
|
|
9675
|
+
Form$2.Field,
|
|
9676
|
+
{
|
|
9677
|
+
control: form.control,
|
|
9678
|
+
name: "address_1",
|
|
9679
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9680
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
9681
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9682
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9683
|
+
] })
|
|
9684
|
+
}
|
|
9685
|
+
),
|
|
9686
|
+
/* @__PURE__ */ jsx(
|
|
9687
|
+
Form$2.Field,
|
|
9688
|
+
{
|
|
9689
|
+
control: form.control,
|
|
9690
|
+
name: "address_2",
|
|
9691
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9692
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
9693
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9694
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9695
|
+
] })
|
|
9696
|
+
}
|
|
9697
|
+
),
|
|
9698
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9699
|
+
/* @__PURE__ */ jsx(
|
|
9700
|
+
Form$2.Field,
|
|
9701
|
+
{
|
|
9702
|
+
control: form.control,
|
|
9703
|
+
name: "postal_code",
|
|
9704
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9705
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
9706
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9707
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9708
|
+
] })
|
|
9709
|
+
}
|
|
9710
|
+
),
|
|
9711
|
+
/* @__PURE__ */ jsx(
|
|
9712
|
+
Form$2.Field,
|
|
9713
|
+
{
|
|
9714
|
+
control: form.control,
|
|
9715
|
+
name: "city",
|
|
9716
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9717
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
9718
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9719
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9720
|
+
] })
|
|
9721
|
+
}
|
|
9722
|
+
)
|
|
9723
|
+
] }),
|
|
9724
|
+
/* @__PURE__ */ jsx(
|
|
9725
|
+
Form$2.Field,
|
|
9726
|
+
{
|
|
9727
|
+
control: form.control,
|
|
9728
|
+
name: "province",
|
|
9729
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9730
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
9731
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9732
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9733
|
+
] })
|
|
9734
|
+
}
|
|
9735
|
+
),
|
|
9736
|
+
/* @__PURE__ */ jsx(
|
|
9737
|
+
Form$2.Field,
|
|
9738
|
+
{
|
|
9739
|
+
control: form.control,
|
|
9740
|
+
name: "phone",
|
|
9741
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9742
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
9743
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9744
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9745
|
+
] })
|
|
9746
|
+
}
|
|
9747
|
+
)
|
|
9748
|
+
] }) }),
|
|
9749
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9750
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9751
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9752
|
+
] }) })
|
|
9753
|
+
]
|
|
9754
|
+
}
|
|
9755
|
+
) });
|
|
9756
|
+
};
|
|
9757
|
+
const schema$5 = addressSchema;
|
|
9568
9758
|
const CustomItems = () => {
|
|
9569
9759
|
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9570
9760
|
/* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
|
|
@@ -9573,7 +9763,7 @@ const CustomItems = () => {
|
|
|
9573
9763
|
};
|
|
9574
9764
|
const CustomItemsForm = () => {
|
|
9575
9765
|
const form = useForm({
|
|
9576
|
-
resolver: zodResolver(schema$
|
|
9766
|
+
resolver: zodResolver(schema$4)
|
|
9577
9767
|
});
|
|
9578
9768
|
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9579
9769
|
/* @__PURE__ */ jsx(RouteDrawer.Body, {}),
|
|
@@ -9583,7 +9773,7 @@ const CustomItemsForm = () => {
|
|
|
9583
9773
|
] }) })
|
|
9584
9774
|
] }) });
|
|
9585
9775
|
};
|
|
9586
|
-
const schema$
|
|
9776
|
+
const schema$4 = objectType({
|
|
9587
9777
|
email: stringType().email()
|
|
9588
9778
|
});
|
|
9589
9779
|
const Email = () => {
|
|
@@ -9608,7 +9798,7 @@ const EmailForm = ({ order }) => {
|
|
|
9608
9798
|
defaultValues: {
|
|
9609
9799
|
email: order.email ?? ""
|
|
9610
9800
|
},
|
|
9611
|
-
resolver: zodResolver(schema$
|
|
9801
|
+
resolver: zodResolver(schema$3)
|
|
9612
9802
|
});
|
|
9613
9803
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9614
9804
|
const { handleSuccess } = useRouteModal();
|
|
@@ -9651,7 +9841,7 @@ const EmailForm = ({ order }) => {
|
|
|
9651
9841
|
}
|
|
9652
9842
|
) });
|
|
9653
9843
|
};
|
|
9654
|
-
const schema$
|
|
9844
|
+
const schema$3 = objectType({
|
|
9655
9845
|
email: stringType().email()
|
|
9656
9846
|
});
|
|
9657
9847
|
const NumberInput = forwardRef(
|
|
@@ -11255,160 +11445,54 @@ function getPromotionIds(items, shippingMethods) {
|
|
|
11255
11445
|
}
|
|
11256
11446
|
return Array.from(promotionIds);
|
|
11257
11447
|
}
|
|
11258
|
-
const
|
|
11448
|
+
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11449
|
+
const Shipping = () => {
|
|
11450
|
+
var _a;
|
|
11259
11451
|
const { id } = useParams();
|
|
11260
|
-
const {
|
|
11261
|
-
|
|
11452
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
11453
|
+
fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
|
|
11454
|
+
});
|
|
11455
|
+
const {
|
|
11456
|
+
order: preview,
|
|
11457
|
+
isPending: isPreviewPending,
|
|
11458
|
+
isError: isPreviewError,
|
|
11459
|
+
error: previewError
|
|
11460
|
+
} = useOrderPreview(id);
|
|
11461
|
+
useInitiateOrderEdit({ preview });
|
|
11462
|
+
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11463
|
+
if (isError) {
|
|
11464
|
+
throw error;
|
|
11465
|
+
}
|
|
11466
|
+
if (isPreviewError) {
|
|
11467
|
+
throw previewError;
|
|
11468
|
+
}
|
|
11469
|
+
const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
|
|
11470
|
+
const isReady = preview && !isPreviewPending && order && !isPending;
|
|
11471
|
+
return /* @__PURE__ */ jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
|
|
11472
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
|
|
11473
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16 px-6", children: [
|
|
11474
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
|
|
11475
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "This draft order currently has no items. Add items to the order before adding shipping." }) })
|
|
11476
|
+
] }) }) }),
|
|
11477
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
|
|
11478
|
+
] }) : isReady ? /* @__PURE__ */ jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxs("div", { children: [
|
|
11479
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
|
|
11480
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
|
|
11481
|
+
] }) });
|
|
11482
|
+
};
|
|
11483
|
+
const ShippingForm = ({ preview, order }) => {
|
|
11484
|
+
var _a;
|
|
11485
|
+
const { setIsOpen } = useStackedModal();
|
|
11486
|
+
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
11487
|
+
const [data, setData] = useState(null);
|
|
11488
|
+
const appliedShippingOptionIds = (_a = preview.shipping_methods) == null ? void 0 : _a.map((method) => method.shipping_option_id).filter(Boolean);
|
|
11489
|
+
const { shipping_options } = useShippingOptions(
|
|
11262
11490
|
{
|
|
11263
|
-
|
|
11491
|
+
id: appliedShippingOptionIds,
|
|
11492
|
+
fields: "+service_zone.*,+service_zone.fulfillment_set.*,+service_zone.fulfillment_set.location.*"
|
|
11264
11493
|
},
|
|
11265
11494
|
{
|
|
11266
|
-
enabled:
|
|
11267
|
-
}
|
|
11268
|
-
);
|
|
11269
|
-
if (isError) {
|
|
11270
|
-
throw error;
|
|
11271
|
-
}
|
|
11272
|
-
const ISrEADY = !!draft_order && !isPending;
|
|
11273
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
11274
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
11275
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
|
|
11276
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
11277
|
-
] }),
|
|
11278
|
-
ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
|
|
11279
|
-
] });
|
|
11280
|
-
};
|
|
11281
|
-
const SalesChannelForm = ({ order }) => {
|
|
11282
|
-
const form = useForm({
|
|
11283
|
-
defaultValues: {
|
|
11284
|
-
sales_channel_id: order.sales_channel_id || ""
|
|
11285
|
-
},
|
|
11286
|
-
resolver: zodResolver(schema$3)
|
|
11287
|
-
});
|
|
11288
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11289
|
-
const { handleSuccess } = useRouteModal();
|
|
11290
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
11291
|
-
await mutateAsync(
|
|
11292
|
-
{
|
|
11293
|
-
sales_channel_id: data.sales_channel_id
|
|
11294
|
-
},
|
|
11295
|
-
{
|
|
11296
|
-
onSuccess: () => {
|
|
11297
|
-
toast.success("Sales channel updated");
|
|
11298
|
-
handleSuccess();
|
|
11299
|
-
},
|
|
11300
|
-
onError: (error) => {
|
|
11301
|
-
toast.error(error.message);
|
|
11302
|
-
}
|
|
11303
|
-
}
|
|
11304
|
-
);
|
|
11305
|
-
});
|
|
11306
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
11307
|
-
KeyboundForm,
|
|
11308
|
-
{
|
|
11309
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
11310
|
-
onSubmit,
|
|
11311
|
-
children: [
|
|
11312
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
|
|
11313
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11314
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11315
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
11316
|
-
] }) })
|
|
11317
|
-
]
|
|
11318
|
-
}
|
|
11319
|
-
) });
|
|
11320
|
-
};
|
|
11321
|
-
const SalesChannelField = ({ control, order }) => {
|
|
11322
|
-
const salesChannels = useComboboxData({
|
|
11323
|
-
queryFn: async (params) => {
|
|
11324
|
-
return await sdk.admin.salesChannel.list(params);
|
|
11325
|
-
},
|
|
11326
|
-
queryKey: ["sales-channels"],
|
|
11327
|
-
getOptions: (data) => {
|
|
11328
|
-
return data.sales_channels.map((salesChannel) => ({
|
|
11329
|
-
label: salesChannel.name,
|
|
11330
|
-
value: salesChannel.id
|
|
11331
|
-
}));
|
|
11332
|
-
},
|
|
11333
|
-
defaultValue: order.sales_channel_id || void 0
|
|
11334
|
-
});
|
|
11335
|
-
return /* @__PURE__ */ jsx(
|
|
11336
|
-
Form$2.Field,
|
|
11337
|
-
{
|
|
11338
|
-
control,
|
|
11339
|
-
name: "sales_channel_id",
|
|
11340
|
-
render: ({ field }) => {
|
|
11341
|
-
return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
11342
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
11343
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
11344
|
-
Combobox,
|
|
11345
|
-
{
|
|
11346
|
-
options: salesChannels.options,
|
|
11347
|
-
fetchNextPage: salesChannels.fetchNextPage,
|
|
11348
|
-
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
11349
|
-
searchValue: salesChannels.searchValue,
|
|
11350
|
-
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
11351
|
-
placeholder: "Select sales channel",
|
|
11352
|
-
...field
|
|
11353
|
-
}
|
|
11354
|
-
) }),
|
|
11355
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
11356
|
-
] });
|
|
11357
|
-
}
|
|
11358
|
-
}
|
|
11359
|
-
);
|
|
11360
|
-
};
|
|
11361
|
-
const schema$3 = objectType({
|
|
11362
|
-
sales_channel_id: stringType().min(1)
|
|
11363
|
-
});
|
|
11364
|
-
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11365
|
-
const Shipping = () => {
|
|
11366
|
-
var _a;
|
|
11367
|
-
const { id } = useParams();
|
|
11368
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
11369
|
-
fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
|
|
11370
|
-
});
|
|
11371
|
-
const {
|
|
11372
|
-
order: preview,
|
|
11373
|
-
isPending: isPreviewPending,
|
|
11374
|
-
isError: isPreviewError,
|
|
11375
|
-
error: previewError
|
|
11376
|
-
} = useOrderPreview(id);
|
|
11377
|
-
useInitiateOrderEdit({ preview });
|
|
11378
|
-
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11379
|
-
if (isError) {
|
|
11380
|
-
throw error;
|
|
11381
|
-
}
|
|
11382
|
-
if (isPreviewError) {
|
|
11383
|
-
throw previewError;
|
|
11384
|
-
}
|
|
11385
|
-
const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
|
|
11386
|
-
const isReady = preview && !isPreviewPending && order && !isPending;
|
|
11387
|
-
return /* @__PURE__ */ jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
|
|
11388
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
|
|
11389
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16 px-6", children: [
|
|
11390
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
|
|
11391
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "This draft order currently has no items. Add items to the order before adding shipping." }) })
|
|
11392
|
-
] }) }) }),
|
|
11393
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
|
|
11394
|
-
] }) : isReady ? /* @__PURE__ */ jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxs("div", { children: [
|
|
11395
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
|
|
11396
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
|
|
11397
|
-
] }) });
|
|
11398
|
-
};
|
|
11399
|
-
const ShippingForm = ({ preview, order }) => {
|
|
11400
|
-
var _a;
|
|
11401
|
-
const { setIsOpen } = useStackedModal();
|
|
11402
|
-
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
11403
|
-
const [data, setData] = useState(null);
|
|
11404
|
-
const appliedShippingOptionIds = (_a = preview.shipping_methods) == null ? void 0 : _a.map((method) => method.shipping_option_id).filter(Boolean);
|
|
11405
|
-
const { shipping_options } = useShippingOptions(
|
|
11406
|
-
{
|
|
11407
|
-
id: appliedShippingOptionIds,
|
|
11408
|
-
fields: "+service_zone.*,+service_zone.fulfillment_set.*,+service_zone.fulfillment_set.location.*"
|
|
11409
|
-
},
|
|
11410
|
-
{
|
|
11411
|
-
enabled: appliedShippingOptionIds.length > 0
|
|
11495
|
+
enabled: appliedShippingOptionIds.length > 0
|
|
11412
11496
|
}
|
|
11413
11497
|
);
|
|
11414
11498
|
const uniqueShippingProfiles = useMemo(() => {
|
|
@@ -12847,37 +12931,33 @@ const Illustration = () => {
|
|
|
12847
12931
|
const schema$1 = objectType({
|
|
12848
12932
|
customer_id: stringType().min(1)
|
|
12849
12933
|
});
|
|
12850
|
-
const
|
|
12934
|
+
const SalesChannel = () => {
|
|
12851
12935
|
const { id } = useParams();
|
|
12852
|
-
const {
|
|
12853
|
-
|
|
12854
|
-
|
|
12936
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
12937
|
+
id,
|
|
12938
|
+
{
|
|
12939
|
+
fields: "+sales_channel_id"
|
|
12940
|
+
},
|
|
12941
|
+
{
|
|
12942
|
+
enabled: !!id
|
|
12943
|
+
}
|
|
12944
|
+
);
|
|
12855
12945
|
if (isError) {
|
|
12856
12946
|
throw error;
|
|
12857
12947
|
}
|
|
12858
|
-
const
|
|
12948
|
+
const ISrEADY = !!draft_order && !isPending;
|
|
12859
12949
|
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12860
12950
|
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12861
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit
|
|
12862
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "
|
|
12951
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
|
|
12952
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
12863
12953
|
] }),
|
|
12864
|
-
|
|
12954
|
+
ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
|
|
12865
12955
|
] });
|
|
12866
12956
|
};
|
|
12867
|
-
const
|
|
12868
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12957
|
+
const SalesChannelForm = ({ order }) => {
|
|
12869
12958
|
const form = useForm({
|
|
12870
12959
|
defaultValues: {
|
|
12871
|
-
|
|
12872
|
-
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12873
|
-
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
12874
|
-
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12875
|
-
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12876
|
-
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
12877
|
-
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
12878
|
-
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12879
|
-
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12880
|
-
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
12960
|
+
sales_channel_id: order.sales_channel_id || ""
|
|
12881
12961
|
},
|
|
12882
12962
|
resolver: zodResolver(schema)
|
|
12883
12963
|
});
|
|
@@ -12885,9 +12965,12 @@ const BillingAddressForm = ({ order }) => {
|
|
|
12885
12965
|
const { handleSuccess } = useRouteModal();
|
|
12886
12966
|
const onSubmit = form.handleSubmit(async (data) => {
|
|
12887
12967
|
await mutateAsync(
|
|
12888
|
-
{
|
|
12968
|
+
{
|
|
12969
|
+
sales_channel_id: data.sales_channel_id
|
|
12970
|
+
},
|
|
12889
12971
|
{
|
|
12890
12972
|
onSuccess: () => {
|
|
12973
|
+
toast.success("Sales channel updated");
|
|
12891
12974
|
handleSuccess();
|
|
12892
12975
|
},
|
|
12893
12976
|
onError: (error) => {
|
|
@@ -12902,132 +12985,7 @@ const BillingAddressForm = ({ order }) => {
|
|
|
12902
12985
|
className: "flex flex-1 flex-col overflow-hidden",
|
|
12903
12986
|
onSubmit,
|
|
12904
12987
|
children: [
|
|
12905
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */
|
|
12906
|
-
/* @__PURE__ */ jsx(
|
|
12907
|
-
Form$2.Field,
|
|
12908
|
-
{
|
|
12909
|
-
control: form.control,
|
|
12910
|
-
name: "country_code",
|
|
12911
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12912
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
12913
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
12914
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12915
|
-
] })
|
|
12916
|
-
}
|
|
12917
|
-
),
|
|
12918
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12919
|
-
/* @__PURE__ */ jsx(
|
|
12920
|
-
Form$2.Field,
|
|
12921
|
-
{
|
|
12922
|
-
control: form.control,
|
|
12923
|
-
name: "first_name",
|
|
12924
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12925
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
12926
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12927
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12928
|
-
] })
|
|
12929
|
-
}
|
|
12930
|
-
),
|
|
12931
|
-
/* @__PURE__ */ jsx(
|
|
12932
|
-
Form$2.Field,
|
|
12933
|
-
{
|
|
12934
|
-
control: form.control,
|
|
12935
|
-
name: "last_name",
|
|
12936
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12937
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
12938
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12939
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12940
|
-
] })
|
|
12941
|
-
}
|
|
12942
|
-
)
|
|
12943
|
-
] }),
|
|
12944
|
-
/* @__PURE__ */ jsx(
|
|
12945
|
-
Form$2.Field,
|
|
12946
|
-
{
|
|
12947
|
-
control: form.control,
|
|
12948
|
-
name: "company",
|
|
12949
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12950
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12951
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12952
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12953
|
-
] })
|
|
12954
|
-
}
|
|
12955
|
-
),
|
|
12956
|
-
/* @__PURE__ */ jsx(
|
|
12957
|
-
Form$2.Field,
|
|
12958
|
-
{
|
|
12959
|
-
control: form.control,
|
|
12960
|
-
name: "address_1",
|
|
12961
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12962
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
12963
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12964
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12965
|
-
] })
|
|
12966
|
-
}
|
|
12967
|
-
),
|
|
12968
|
-
/* @__PURE__ */ jsx(
|
|
12969
|
-
Form$2.Field,
|
|
12970
|
-
{
|
|
12971
|
-
control: form.control,
|
|
12972
|
-
name: "address_2",
|
|
12973
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12974
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12975
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12976
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12977
|
-
] })
|
|
12978
|
-
}
|
|
12979
|
-
),
|
|
12980
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12981
|
-
/* @__PURE__ */ jsx(
|
|
12982
|
-
Form$2.Field,
|
|
12983
|
-
{
|
|
12984
|
-
control: form.control,
|
|
12985
|
-
name: "postal_code",
|
|
12986
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12987
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
12988
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12989
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12990
|
-
] })
|
|
12991
|
-
}
|
|
12992
|
-
),
|
|
12993
|
-
/* @__PURE__ */ jsx(
|
|
12994
|
-
Form$2.Field,
|
|
12995
|
-
{
|
|
12996
|
-
control: form.control,
|
|
12997
|
-
name: "city",
|
|
12998
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12999
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
13000
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13001
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13002
|
-
] })
|
|
13003
|
-
}
|
|
13004
|
-
)
|
|
13005
|
-
] }),
|
|
13006
|
-
/* @__PURE__ */ jsx(
|
|
13007
|
-
Form$2.Field,
|
|
13008
|
-
{
|
|
13009
|
-
control: form.control,
|
|
13010
|
-
name: "province",
|
|
13011
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13012
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
13013
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13014
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13015
|
-
] })
|
|
13016
|
-
}
|
|
13017
|
-
),
|
|
13018
|
-
/* @__PURE__ */ jsx(
|
|
13019
|
-
Form$2.Field,
|
|
13020
|
-
{
|
|
13021
|
-
control: form.control,
|
|
13022
|
-
name: "phone",
|
|
13023
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13024
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
13025
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13026
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13027
|
-
] })
|
|
13028
|
-
}
|
|
13029
|
-
)
|
|
13030
|
-
] }) }),
|
|
12988
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
|
|
13031
12989
|
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
13032
12990
|
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
13033
12991
|
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
@@ -13036,7 +12994,49 @@ const BillingAddressForm = ({ order }) => {
|
|
|
13036
12994
|
}
|
|
13037
12995
|
) });
|
|
13038
12996
|
};
|
|
13039
|
-
const
|
|
12997
|
+
const SalesChannelField = ({ control, order }) => {
|
|
12998
|
+
const salesChannels = useComboboxData({
|
|
12999
|
+
queryFn: async (params) => {
|
|
13000
|
+
return await sdk.admin.salesChannel.list(params);
|
|
13001
|
+
},
|
|
13002
|
+
queryKey: ["sales-channels"],
|
|
13003
|
+
getOptions: (data) => {
|
|
13004
|
+
return data.sales_channels.map((salesChannel) => ({
|
|
13005
|
+
label: salesChannel.name,
|
|
13006
|
+
value: salesChannel.id
|
|
13007
|
+
}));
|
|
13008
|
+
},
|
|
13009
|
+
defaultValue: order.sales_channel_id || void 0
|
|
13010
|
+
});
|
|
13011
|
+
return /* @__PURE__ */ jsx(
|
|
13012
|
+
Form$2.Field,
|
|
13013
|
+
{
|
|
13014
|
+
control,
|
|
13015
|
+
name: "sales_channel_id",
|
|
13016
|
+
render: ({ field }) => {
|
|
13017
|
+
return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13018
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
13019
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
13020
|
+
Combobox,
|
|
13021
|
+
{
|
|
13022
|
+
options: salesChannels.options,
|
|
13023
|
+
fetchNextPage: salesChannels.fetchNextPage,
|
|
13024
|
+
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
13025
|
+
searchValue: salesChannels.searchValue,
|
|
13026
|
+
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
13027
|
+
placeholder: "Select sales channel",
|
|
13028
|
+
...field
|
|
13029
|
+
}
|
|
13030
|
+
) }),
|
|
13031
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13032
|
+
] });
|
|
13033
|
+
}
|
|
13034
|
+
}
|
|
13035
|
+
);
|
|
13036
|
+
};
|
|
13037
|
+
const schema = objectType({
|
|
13038
|
+
sales_channel_id: stringType().min(1)
|
|
13039
|
+
});
|
|
13040
13040
|
const widgetModule = { widgets: [] };
|
|
13041
13041
|
const routeModule = {
|
|
13042
13042
|
routes: [
|
|
@@ -13057,6 +13057,10 @@ const routeModule = {
|
|
|
13057
13057
|
handle,
|
|
13058
13058
|
loader,
|
|
13059
13059
|
children: [
|
|
13060
|
+
{
|
|
13061
|
+
Component: BillingAddress,
|
|
13062
|
+
path: "/draft-orders/:id/billing-address"
|
|
13063
|
+
},
|
|
13060
13064
|
{
|
|
13061
13065
|
Component: CustomItems,
|
|
13062
13066
|
path: "/draft-orders/:id/custom-items"
|
|
@@ -13077,10 +13081,6 @@ const routeModule = {
|
|
|
13077
13081
|
Component: Promotions,
|
|
13078
13082
|
path: "/draft-orders/:id/promotions"
|
|
13079
13083
|
},
|
|
13080
|
-
{
|
|
13081
|
-
Component: SalesChannel,
|
|
13082
|
-
path: "/draft-orders/:id/sales-channel"
|
|
13083
|
-
},
|
|
13084
13084
|
{
|
|
13085
13085
|
Component: Shipping,
|
|
13086
13086
|
path: "/draft-orders/:id/shipping"
|
|
@@ -13094,8 +13094,8 @@ const routeModule = {
|
|
|
13094
13094
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13095
13095
|
},
|
|
13096
13096
|
{
|
|
13097
|
-
Component:
|
|
13098
|
-
path: "/draft-orders/:id/
|
|
13097
|
+
Component: SalesChannel,
|
|
13098
|
+
path: "/draft-orders/:id/sales-channel"
|
|
13099
13099
|
}
|
|
13100
13100
|
]
|
|
13101
13101
|
}
|