fix(dashboard): Matching product profile with shipping profile (#11183)
This commit is contained in:
+1
-1
@@ -350,7 +350,7 @@ export function OrderCreateFulfillmentForm({
|
|||||||
form={form}
|
form={form}
|
||||||
item={item}
|
item={item}
|
||||||
locationId={selectedLocationId}
|
locationId={selectedLocationId}
|
||||||
disabled={isShippingProfileMatching}
|
disabled={!isShippingProfileMatching}
|
||||||
itemReservedQuantitiesMap={
|
itemReservedQuantitiesMap={
|
||||||
itemReservedQuantitiesMap
|
itemReservedQuantitiesMap
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import { AdminProductCategory } from "../../product-category"
|
|||||||
import { AdminProductTag } from "../../product-tag"
|
import { AdminProductTag } from "../../product-tag"
|
||||||
import { AdminProductType } from "../../product-type"
|
import { AdminProductType } from "../../product-type"
|
||||||
import { AdminSalesChannel } from "../../sales-channel"
|
import { AdminSalesChannel } from "../../sales-channel"
|
||||||
|
import { AdminShippingProfile } from "../../shipping-profile"
|
||||||
import {
|
import {
|
||||||
BaseProduct,
|
BaseProduct,
|
||||||
BaseProductImage,
|
BaseProductImage,
|
||||||
@@ -86,6 +87,10 @@ export interface AdminProduct
|
|||||||
* The sales channels that the product is available in.
|
* The sales channels that the product is available in.
|
||||||
*/
|
*/
|
||||||
sales_channels?: AdminSalesChannel[] | null
|
sales_channels?: AdminSalesChannel[] | null
|
||||||
|
/**
|
||||||
|
* The shipping profile that the product is available in.
|
||||||
|
*/
|
||||||
|
shipping_profile?: AdminShippingProfile | null
|
||||||
/**
|
/**
|
||||||
* The product's variants.
|
* The product's variants.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user