Produkteigenschaften:Sie besteht aus leichtem KunststoffFür WinkelschleiferDer Kunststoff-Aufbewahrungskoffer ermöglicht eine sichere Aufbewahrung und einen sicheren Transport der Bosch ElektrowerkzeugeTechnische Daten:Materialausführung: KunststoffBreite mm: 720Höhe mm: 317Tiefe mm: 170Passt zu (Produktlinks): GWS 22-230 LVI (0601891D00), GWS 24-230 LVI (0601893F00), GWS 22-180 LVI (0601890D00), PWS 20-230 (0603349003), PWS 20-230 (0603359903), PWS 20-230 (0603359W00), PWS 20-230 J (0603359803), PWS 20-230 J (0603359V00), GWS 18-180 (31601), GWS 25-230 (32522)Lieferumfang:1x Bosch Kunststoffkoffer 721 x 317 x 170 mm
- Hersteller
- Robert Bosch Power Tools GmbH
-
Max-Lang-Str. 40-46,
70771 Leinfelden-Echterdingen,
Deutschland
- https://www.bosch-pt.com
- 0711/8110
Bosch Kunststoffkoffer 721 x 317 x 170 mm

const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "215cbd0078efbf3fa066aa09b534891e");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "215cbd0078efbf3fa066aa09b534891e");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
Weitere Modelle
Bosch Kunststoffkoffer 445 x 360 x 123 mm 25,99 €
UVP: 37,73 €
-31%
Bosch Kunststoffkoffer 350 x 294 x 105 mm 13,59 €
UVP: 19,92 €
-32%
Bosch Kunststoffkoffer 391 x 345 x 115 mm 18,99 €
UVP: 31,05 €
-39%
Bosch Kunststoffkoffer 387 x 117 x 296 mm 18,99 €
UVP: 20,61 €
-8%
Bosch Kunststoffkoffer 445 x 360 x 114 mm 21,99 €
UVP: 29,46 €
-25%
Bosch Kunststoffkoffer 446 x 316 x 124 mm 25,29 €
UVP: 36,46 €
-31%
Bosch Kunststoffkoffer 505 x 395 x 145 mm 62,99 €
UVP: 96,74 €
-35%
Bosch Kunststoffkoffer 360 x 480 x 131 mm 35,99 €
UVP: 51,80 €
-31%
Bosch Kunststoffkoffer 480 x 360 x 220 mm 35,99 €
UVP: 51,96 €
-31%
Bosch Kunststoffkoffer 341 x 400 x 210 mm 33,98 €
UVP: 40,94 €
-17%
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});