TAPPING TEE ELECTROFUSIÓN HDPE-100, PN-16, SDR 11

Especificaciones Técnicas

TAPPING TEE ELECTROFUSIÓN HDPE-100, PN-16, SDR 11
DIMENSIÓN CÓDIGO UNIDADES PRECIO UNITARIO
TAPPING TEE 63 x 20 3900001005-6320 1 9.900
TAPPING TEE 63 x 25 3900001005-6325 1 9.900
TAPPING TEE 63 x 32 3900001005-6332 1 9.900
TAPPING TEE 90 x 20 3900001005-9020 1 10.008
TAPPING TEE 90 x 25 3900001005-9025 1 10.008
TAPPING TEE 90 x 32 3900001005-9032 1 10.008
TAPPING TEE 110 x 20 3900001005-1120 1 10.281
TAPPING TEE 110 x 25 3900001005-1125 1 10.281
TAPPING TEE 110 x 32 3900001005-1132 1 10.281
TAPPING TEE 160 x 20 3900001005-1620 1 11.198
TAPPING TEE 160 x 25 3900001005-1625 1 11.198
TAPPING TEE 160 x 32 3900001005-1632 1 11.198
const registerAllyAction = () => { if ( ! window?.elementorAppConfig?.hasPro || ! window?.elementorFrontend?.utils?.urlActions ) { return; } elementorFrontend.utils.urlActions.addAction( 'allyWidget:open', () => { if ( window?.ea11yWidget?.widget?.open ) { window.ea11yWidget.widget.open(); } } ); }; const waitingLimit = 30; let retryCounter = 0; const waitForElementorPro = () => { return new Promise( ( resolve ) => { const intervalId = setInterval( () => { if ( retryCounter === waitingLimit ) { resolve( null ); } retryCounter++; if ( window.elementorFrontend && window?.elementorFrontend?.utils?.urlActions ) { clearInterval( intervalId ); resolve( window.elementorFrontend ); } }, 100 ); // Check every 100 milliseconds for availability of elementorFrontend }); }; waitForElementorPro().then( () => { registerAllyAction(); });