-1, 'orderby' => 'date', 'order' => 'DESC', 'status' => array_keys( wc_get_order_statuses() ), ] );/* ── 2. Stats rapides ── */ $stat_total = count( $orders ); $stat_pending = 0; $stat_devis = 0; $stat_revenue = 0.0;foreach ( $orders as $o ) { $s = $o->get_status(); if ( in_array( $s, [ 'pending', 'on-hold' ], true ) ) $stat_pending++; if ( $s === 'ywraq-new' ) $stat_devis++; if ( $s === 'completed' ) $stat_revenue += (float) $o->get_total(); }/* ── 3. Correspondance statut → classe badge ── */ $badge_map = [ 'pending' => 'badge-amber', 'processing' => 'badge-blue', 'completed' => 'badge-green', 'cancelled' => 'badge-red', 'refunded' => 'badge-purple', 'failed' => 'badge-rose', 'on-hold' => 'badge-orange', 'ywraq-new' => 'badge-sky', ];ob_start(); /* ── 4. CDN (chargés une seule fois via flag) ── */ static $cdn_done = false; if ( ! $cdn_done ) : $cdn_done = true; ?>
Demandes de Devis
Gestion des commandes & devis WooCommerce
Total
En attente
Devis
DZD
CA complétés
Chargement des commandes…
';/* Données print JSON (stockées sur la ligne) */ $print_json = wp_json_encode( [ 'num' => $order->get_order_number(), 'date' => $date_disp, 'status' => $status_label, 'total' => wp_strip_all_tags( $total_fmt ), 'client' => $client, 'email' => $email, 'phone' => $phone, 'company' => $company, 'addr_f' => $addr_f, 'addr_l' => $addr_l, 'payment' => $order->get_payment_method_title(), 'message' => $message, ], JSON_HEX_QUOT | JSON_HEX_APOS );$view_url = $order->get_edit_order_url(); ?> + #get_order_number() ); ?>
—'; ?>
'); win.document.close();win.onload = function () { win.focus(); win.print(); /* Ne pas fermer automatiquement pour laisser l'utilisateur choisir */ }; }}); /* fin jQuery */ /* ===== VARIABLES ===== */ :root { --nav-primary: #2563eb; --nav-hover: #1d4ed8; --nav-active-bg: linear-gradient(135deg, #2563eb, #7c3aed); --nav-text: #374151; --nav-bg: #ffffff; --nav-border: #e5e7eb; --nav-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); --nav-radius: 12px; --nav-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* ===== NAVIGATION CONTAINER ===== */ .woocommerce-MyAccount-navigation { background: var(--nav-bg); border-radius: var(--nav-radius); box-shadow: var(--nav-shadow); padding: 12px; border: 1px solid var(--nav-border); overflow: hidden; } /* ===== LISTE ===== */ .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; } /* ===== ITEMS ===== */ .woocommerce-MyAccount-navigation-link { position: relative; border-radius: 10px; overflow: hidden; transition: var(--nav-transition); opacity: 0; } /* ===== LIENS ===== */ .woocommerce-MyAccount-navigation-link a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; text-decoration: none; color: var(--nav-text); font-size: 14px; font-weight: 500; border-radius: 10px; transition: var(--nav-transition); position: relative; z-index: 1; overflow: hidden; } /* ===== ICÔNES SVG ===== */ .woocommerce-MyAccount-navigation-link a .nav-icon { width: 20px; height: 20px; flex-shrink: 0; transition: var(--nav-transition); color: #6b7280; } /* ===== HOVER ÉTAT ===== */ .woocommerce-MyAccount-navigation-link a:hover { background: #f3f4f6; color: var(--nav-primary); padding-left: 22px; } .woocommerce-MyAccount-navigation-link a:hover .nav-icon { color: var(--nav-primary); transform: scale(1.15) rotate(-5deg); } /* ===== ACTIF ÉTAT ===== */ .woocommerce-MyAccount-navigation-link.is-active a { background: var(--nav-active-bg); color: #ffffff !important; font-weight: 600; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35); } .woocommerce-MyAccount-navigation-link.is-active a .nav-icon { color: #ffffff !important; } .woocommerce-MyAccount-navigation-link.is-active a:hover { padding-left: 16px; background: var(--nav-active-bg); } /* ===== SÉPARATEUR AVANT DÉCONNEXION ===== */ .woocommerce-MyAccount-navigation-link--customer-logout { margin-top: 8px; padding-top: 4px; border-top: 1px solid var(--nav-border); } /* ===== DÉCONNEXION ===== */ .woocommerce-MyAccount-navigation-link--customer-logout a { color: #ef4444 !important; } .woocommerce-MyAccount-navigation-link--customer-logout a .nav-icon { color: #ef4444 !important; } .woocommerce-MyAccount-navigation-link--customer-logout a:hover { background: #fef2f2 !important; color: #dc2626 !important; } /* ===== GESTIONNAIRE FRONTEND ===== */ .woocommerce-MyAccount-navigation-link--yith-wcfm a { color: #7c3aed !important; } .woocommerce-MyAccount-navigation-link--yith-wcfm a .nav-icon { color: #7c3aed !important; } .woocommerce-MyAccount-navigation-link--yith-wcfm a:hover { background: #f5f3ff !important; color: #6d28d9 !important; } /* ===== TEXTE LIEN ===== */ .woocommerce-MyAccount-navigation-link a span.nav-text { flex: 1; } /* ===== RIPPLE ===== */ .nav-ripple { position: absolute; border-radius: 50%; background: rgba(37, 99, 235, 0.15); transform: scale(0); animation: navRipple 0.6s linear; pointer-events: none; z-index: 0; } @keyframes navRipple { to { transform: scale(4); opacity: 0; } } /* ===== ANIMATION ENTRÉE ===== */ @keyframes navSlideIn { from { opacity: 0; transform: translateX(-15px); } to { opacity: 1; transform: translateX(0); } } .woocommerce-MyAccount-navigation-link.nav-ready { animation: navSlideIn 0.4s ease forwards; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(1) { animation-delay: 0.05s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(2) { animation-delay: 0.10s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(3) { animation-delay: 0.15s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(4) { animation-delay: 0.20s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(5) { animation-delay: 0.25s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(6) { animation-delay: 0.30s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(7) { animation-delay: 0.35s; } .woocommerce-MyAccount-navigation-link.nav-ready:nth-child(8) { animation-delay: 0.40s; } /* ===== RESPONSIVE MOBILE ===== */ @media (max-width: 768px) { .woocommerce-MyAccount-navigation { padding: 8px; } .woocommerce-MyAccount-navigation ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; } .woocommerce-MyAccount-navigation-link--customer-logout { grid-column: 1 / -1; margin-top: 4px; } .woocommerce-MyAccount-navigation-link a { flex-direction: column; text-align: center; padding: 14px 8px !important; font-size: 12px; gap: 8px; justify-content: center; } .woocommerce-MyAccount-navigation-link a .nav-icon { width: 24px; height: 24px; } } @media (max-width: 480px) { .woocommerce-MyAccount-navigation ul { grid-template-columns: repeat(2, 1fr); } } /* ===== FIX LIEN ACTIF - TEXTE BLANC VISIBLE ===== */ /* Force le texte blanc sur le lien actif */ .woocommerce-MyAccount-navigation-link.is-active > a, .woocommerce-MyAccount-navigation-link.is-active > a span.nav-text, .woocommerce-MyAccount-navigation-link.is-active > a .nav-text { color: #ffffff !important; } /* Force l'icône blanche sur le lien actif */ .woocommerce-MyAccount-navigation-link.is-active > a .nav-icon, .woocommerce-MyAccount-navigation-link.is-active > a svg { color: #ffffff !important; stroke: #ffffff !important; } /* Fond gradient bleu-violet bien visible */ .woocommerce-MyAccount-navigation-link.is-active > a { background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important; color: #ffffff !important; font-weight: 600 !important; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4) !important; border-radius: 10px !important; } /* Annule le hover sur le lien actif */ .woocommerce-MyAccount-navigation-link.is-active > a:hover { background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%) !important; color: #ffffff !important; padding-left: 16px !important; } /* Sécurité : tous les enfants du lien actif en blanc */ .woocommerce-MyAccount-navigation-link.is-active > a * { color: #ffffff !important; stroke: #ffffff !important; }

Retrouvez notre Stang au NAPEC 2025 – Oran

napec oran 2025

Nos marques

Tous les produits Schneider

Produits récemment consultés

Aucun produit récemment consulté à afficher

MGU66.008.238

UGS : 4ab2dc0a4fff Catégorie :
Unica Top - ramă de acoperire - 8 m - 4 porţi orizontale - grafit

Caractéristiques principales

Produits associés

Options et accessoires compatibles

Autres produits associés

Voir tous les produits →
Description du produit

Schneider Réf. 4ab2dc0a4fff
Noter cette article

Référence :

MGU66.008.238
Marque : Schneider
Disponibilité : En Stock



MGU66.008.238
Caracteristici
Unica Top
ramă de acoperire - 8 m - 4 porţi
orizontale
grafit
 
Caracteristici Principale
Nume estetic Unica Top
Tip produs sau componenta Rama de capac
Numar de porti 4 benzi orizontal
Mod de fixare Clipsare
Tenta de culoare cadru capac Crom lucios
Culoare decoraţiune Grafit
Complementare
Material ASA + PC decorative frame
ASA + PC intermediate part
Zamak cover frame
Standarde EN 60669
1
Înălţime 80 mm
Lăţime 303 mm
Adâncime 14 mm
Distanţa între centre 71 mm
Greutate produs 0.16 kg
Segment de piață Rezidențial
Clădiri comerciale mici
Mediu
grad de protectie IK IK01
grad de protectie IP IP20
caracteristica de mediu Acetonă
Alcool
Amoniac
Decolorant
Săpun lichid
Ulei
Benzină
Rezistent UV
Fluid de curăţare a geamurilor
protectia mediului si probleme Fara halogen
Durabilitatea ofertei
Sustainable offer status Green Premium product
RoHS Compliant
since 0610 - Schneider Electric declaration of conformity
REACh Referinta nu contine SVHC peste prag
Profil de mediu pentru produs Disponibil
Instrucţiuni sfârşit de viaţă produs Nu necesită operații specifice de reciclare
Contractual warranty
Perioada 18 months
1 / 1
Informaţiile oferite în această documentaţie conţin descrieri generale şi caracteristici tehnice legate de produsele prezentate.
Această documentaţie nu este un substitut pentru şi nu trebuie folosită pentru a determina compatibilitatea şi fiabilitatea acestor produse în aplicaţiile specifice ale clienţilor.
Este de datoria utilizatorului sau a integratorului să efectueze analiza completă de risc, evaluarea şi testarea produselor pentru utilizarea în aplicaţiile specifice.
Schneider Electric Industries SAS şi filialele sale nu pot fi răspunzătoare pentru întrebuinţarea greşită a informaţiilor conţinute în această documentaţie.

Produits récemment consultés

Aucun produit récemment consulté à afficher

20 000 de références

Trouvez tout ce dont vous avez besoin dans notre catalogue

Livraison adaptée à vos besoins

Nos solutions de livraison fiables et rapides facilitent votre quotidien

Des conseils d’expert

Recevez une assistance technique de spécialistes pour soutenir vos projets