yarn add @pinelab/vendure-plugin-myparcel
to install this plugin.
yarn add @pinelab/vendure-plugin-myparcel
to install this plugin.
Plugin for sending placed orders to MyParcel.
vendure-config.ts
:import { MyparcelPlugin } from '@pinelab/vendure-plugin-myparcel';
plugins: [
MyparcelPlugin.init({
vendureHost: 'https://your-vendure-host.io',
syncWebhookOnStartup: true, // If you want to automatically set vendureHost as webhook on MyParcel account
}),
...
]
MyparcelPlugin.ui
to your AdminUiPlugin extensions:import { MyparcelPlugin } from '@pinelab/vendure-plugin-myparcel';
plugins: [
AdminUiPlugin.init({
port: 3002,
route: 'admin',
app: compileUiExtensions({
outputPath: path.join(__dirname, '__admin-ui'),
extensions: [MyparcelPlugin.ui],
}),
}),
];
Read more about Admin UI compilation in the Vendure docs
Settings
> MyParcel
and fill in your MyParcel API key.MyParcel fulfillment
.fulfill
MyParcel requires additional customs information for shipments outside the EU. When you ship outside the EU, you should
implement the getCustomsInformationFn
when initializing the plugin:
MyparcelPlugin.init({
vendureHost: 'https://your-vendure-host.io',
getCustomsInformationFn: (orderItem) => {
return {
weightInGrams: (orderItem.line.productVariant.product.customFields as any)
.weight,
classification: (
orderItem.line.productVariant.product.customFields as any
).hsCode,
countryCodeOfOrigin: 'NL',
};
},
});
You can find more information about the classification codes here.