feat(medusa-fulfillment-webshipper): Support personal customs no in orders (#2167)

* feat(webshipper): support personal customs no in orders

* docs: update readme with personal customs number info
This commit is contained in:
Sebastian Rindom
2022-09-09 10:30:20 +02:00
committed by GitHub
parent f5b41288f4
commit e36301ac14
2 changed files with 31 additions and 0 deletions

View File

@@ -15,3 +15,32 @@ A webhook listener is exposed at `/webshipper/shipments` to listen for shipment
coo_countries: [an array of countries in which a Certificate of Origin will be attached] (default: "all")
delete_on_cancel [determines whether Webshipper orders are deleted when a Medusa fulfillment is canceled] (default: false)
```
## Personal Customs Numbers
In countries like South Korea a personal customs number is required to clear customs. The Webshipper fulfillment plugin is able pass this information to Webshipper given that the number is stored in `order.shipping_address.metadata.personal_customs_no`.
### Modifications in checkout flow
To pass the information along you should dynamically show an input field to the customer when they are shopping from a region that requires a personal customs number, and make sure that the metadata field is set when updating the cart shipping address.
```js
const onUpdateAddress = async () => {
const address = {
first_name: "John",
last_name: "Johnson",
...,
metadata: {
personal_customs_no: "my-customs-number"
}
}
await medusaClient.carts
.update(cartId, {
shipping_address: address
})
.then(() => {
console.log("Good stuff - Webshipper will pass along the customs number")
})
}
```

View File

@@ -390,6 +390,8 @@ class WebshipperFulfillmentService extends FulfillmentService {
state: shipping_address.province,
phone: shipping_address.phone,
email: fromOrder.email,
personal_customs_no:
shipping_address.metadata?.personal_customs_no || null,
},
currency: fromOrder.currency_code.toUpperCase(),
},