This plugin is free for personal and commercial use. Just follow the instructions below.
- Make order picking easy by syncing placed orders to GoedGepickt
- Manage stock across multiple webshops
- Manage stock with wholesale products
Make order picking and stock keeping easy by integrating Vendure with GoedGepickt with this plugin
yarn install vendure-plugin-goedgepickt
Vendure's responsibilities vs GoedGepickt's responsibilities:
vendure-config.ts
:import { GoedgepicktPlugin } from 'vendure-plugin-goedgepickt';
plugins: [
GoedgepicktPlugin.init({
vendureHost: tunnel.url,
endpointSecret: 'some-secret', // Used to validate incoming requests to /fullsync
setWebhook: true // Automatically set webhooks in Goedgepickt or not
}),
...
]
plugins: [
AdminUiPlugin.init({
port: 3002,
route: 'admin',
app: compileUiExtensions({
outputPath: path.join(__dirname, '__admin-ui'),
extensions: [GoedgepicktPlugin.ui],
}),
}),
];
Read more about Admin UI compilation in the Vendure docs
Settings > Goedgepickt
. Make sure you have the SetGoedGepicktConfig
permission.apiKey
and webshopUuid
per channel.test
to check your credentials.When you save the credentials, the plugin will make sure the configured vendureHost is set as webhook for order and stock updates. The plugin will never delete webhooks, so if you ever change your url, you should manually delete the old webhook via GoedGepickt.
/goedgepickt/fullsync/<webhook-secret>/
. A full sync is processed in the worker and can take a few hours to
finishThis plugin uses custom fields on an order as pickup location address. You can set a pickup points on an order with this mutation, the plugin will then send the address to Goedgepickt:
mutation {
setOrderCustomFields(
input: {
customFields: {
pickupLocationNumber: "1234"
pickupLocationCarrier: "1"
pickupLocationName: "Local shop"
pickupLocationStreet: "Shopstreet"
pickupLocationHouseNumber: "13"
pickupLocationZipcode: "8888HG"
pickupLocationCity: "Leeuwarden"
pickupLocationCountry: "nl"
}
}
) {
... on Order {
id
code
}
... on NoActiveOrderError {
errorCode
message
}
}
}