Choco Noisella 400gr
Produit en province de Liège
En direct du producteur
Prix de vente : 3.73 € l'unité
3.73 €400 g
- 9.33 € / kg
- Producteur : SIROPERIE DELVAUX
- Conditionnement : 400 g
Produit commandable jusqu'à 1 jour(s) avant la livraison
Choco Noisella 400gr
function initArticleProduit() {
if (!!getGlobalData('PRODUCT_ID')) {
// pas de WIP (execution en arrière plan)
eshopProductService.getById(getGlobalData('PRODUCT_ID'))
.then((res) => insererInfos(res.data))
// les erreurs 404 sont ignorées
.catch((err) => err.response.status != 404 && RestApi.defaultXhrErrorHandler(err))
.finally(chargerRestriction);
}
}
whenGlobalDataLoad()
.then(initArticleProduit);