feat(core-flows, dashboard, link-modules,medusa, types, utils): fulfillment shipping changes (#10902)
**What** - product <> shipping profile link - create and update product workflows/endpoints accepts shipping profile - pass shipping option id when creating fulfillment to allow overriding customer selected SO - validate shipping profile delete - dashboard - set shipping profile on product create - manage shipping profile for a product - **update the create fulfillment form** - other - fix create product form infinite rerenders --- CLOSES CMRC-831 CMRC-834 CMRC-836 CMRC-837 CMRC-838 CMRC-857 TRI-761
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -554,6 +554,10 @@
|
||||
"label": "Discountable",
|
||||
"hint": "When unchecked, discounts will not be applied to this product"
|
||||
},
|
||||
"shipping_profile": {
|
||||
"label": "Shipping profile",
|
||||
"hint": "Connect the product to a shipping profile"
|
||||
},
|
||||
"type": {
|
||||
"label": "Type"
|
||||
},
|
||||
@@ -681,6 +685,20 @@
|
||||
"alreadyManagedWithSku": "This inventory item is already editable under {{title}} ({{sku}})."
|
||||
}
|
||||
},
|
||||
"shippingProfile": {
|
||||
"header": "Shipping configuration",
|
||||
"edit": {
|
||||
"header": "Shipping Configuration",
|
||||
"toasts": {
|
||||
"success": "Successfully updated the shipping profile for {{title}}."
|
||||
}
|
||||
},
|
||||
"create": {
|
||||
"errors": {
|
||||
"required": "Shipping profile is required"
|
||||
}
|
||||
}
|
||||
},
|
||||
"toasts": {
|
||||
"delete": {
|
||||
"success": {
|
||||
@@ -1249,6 +1267,8 @@
|
||||
"fulfillment": {
|
||||
"cancelWarning": "You are about to cancel a fulfillment. This action cannot be undone.",
|
||||
"markAsDeliveredWarning": "You are about to mark fulfillment as delivered. This action cannot be undone.",
|
||||
"differentOptionSelected": "The selected shipping option is different from the one selected by the customer.",
|
||||
"disabledItemTooltip": "The shipping option you have selected don’t allow fulfillment of this item",
|
||||
"unfulfilledItems": "Unfulfilled Items",
|
||||
"statusLabel": "Fulfillment status",
|
||||
"statusTitle": "Fulfillment Status",
|
||||
@@ -1269,7 +1289,9 @@
|
||||
"error": {
|
||||
"wrongQuantity": "Only one item is available for fulfillment",
|
||||
"wrongQuantity_other": "Quantity should be a number between 1 and {{number}}",
|
||||
"noItems": "No items to fulfill."
|
||||
"noItems": "No items to fulfill.",
|
||||
"noShippingOption": "Shipping option is required",
|
||||
"noLocation": "Location is required"
|
||||
},
|
||||
"status": {
|
||||
"notFulfilled": "Not fulfilled",
|
||||
@@ -2749,7 +2771,9 @@
|
||||
"added": "Added",
|
||||
"removed": "Removed",
|
||||
"from": "From",
|
||||
"to": "To"
|
||||
"to": "To",
|
||||
"beaware": "Be aware",
|
||||
"loading": "Loading"
|
||||
},
|
||||
"fields": {
|
||||
"amount": "Amount",
|
||||
|
||||
Reference in New Issue
Block a user