Skip to content

Commit

Permalink
fix(chore-flows): update shipping method price
Browse files Browse the repository at this point in the history
  • Loading branch information
carlos-r-l-rodrigues committed Aug 14, 2024
1 parent 3d3fd9e commit c659bf3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export const updateClaimShippingMethodWorkflow = createWorkflow(

const action = {
id: originalAction.id,
amount: data.custom_price,
internal_note: data.internal_note,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export const updateExchangeShippingMethodWorkflow = createWorkflow(

const action = {
id: originalAction.id,
amount: data.custom_price,
internal_note: data.internal_note,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export const updateOrderEditShippingMethodWorkflow = createWorkflow(

const action = {
id: originalAction.id,
amount: data.custom_price,
internal_note: data.internal_note,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ export const updateReturnShippingMethodWorkflow = createWorkflow(
list: false,
}).config({ name: "order-change-query" })

updateReturnShippingMethodValidationStep({ orderReturn, orderChange, input })
updateReturnShippingMethodValidationStep({
orderReturn,
orderChange,
input,
})

const updateData = transform(
{ orderChange, input },
Expand All @@ -102,6 +106,7 @@ export const updateReturnShippingMethodWorkflow = createWorkflow(

const action = {
id: originalAction.id,
amount: data.custom_price,
internal_note: data.internal_note,
}

Expand Down

0 comments on commit c659bf3

Please sign in to comment.