PT Sukses Abadi Korporindo | Authorized National Distributor Dahua
021 54396281 | 0811 989 3334 | 0815 8441 6245
sales@suksesabadikorporindo.com

Audio

Dahua’s security audio products are designed to deliver high-quality sound capture and transmission for professional surveillance environments. Built with advanced noise reduction, wide dynamic range, and durable components, Dahua microphones, speakers, and audio modules ensure clear communication and accurate audio monitoring even in challenging conditions.

Digital Signage

Dahua Digital Signage is an advanced display solution designed for commercial environments that require clear, dynamic, and efficient communication. Built with high-definition screens and reliable hardware, Dahua’s signage systems deliver vibrant visuals suitable for retail stores, shopping malls, transportation hubs, corporate offices, hospitality, and public facilities.

LCD Video Walls

Dahua LCD Video Walls are high-performance display solutions designed to deliver large, seamless visual surfaces for professional monitoring and commercial display applications. Using ultra-narrow bezel LCD panels, Dahua video walls provide sharp image quality, vibrant colors, and wide viewing angles, making them ideal for security control rooms, command centers, transportation monitoring, retail environments, and corporate facilities.

LED Displays

Dahua LED Displays are advanced large-format visual solutions designed to deliver exceptional brightness, color accuracy, and long-term reliability for both indoor and outdoor applications. Built with fine-pitch LED technology, Dahua panels offer seamless splicing, high refresh rates, and superior visual uniformity—making them ideal for command centers, control rooms, shopping malls, transportation hubs, conference venues, and digital advertising environments.

Monitors

Dahua monitors are specifically designed to meet the demanding needs of modern security and surveillance environments. Built with high-resolution panels and superior image processing technology, these monitors deliver sharp, accurate, and consistent video quality—ensuring that operators can clearly view critical details in live and recorded footage.

Public Broadcasting

Public broadcasting systems are designed to deliver clear and effective audio announcements across large or distributed areas. Commonly used in public facilities such as schools, shopping centers, transportation hubs, offices, and industrial sites, these systems ensure that important information, reminders, and emergency alerts can be heard instantly and reliably by everyone in the vicinity.

4G Series

4G Series

Dahua 4G Series cameras leverage cellular networks for remote surveillance, enabling monitoring in locations without wired internet access.
LOAD MORE

Access Control

Access Control

Dahua Security Access Control is a physical security solution designed to regulate and monitor who can enter specific areas within a building or facility. It replaces traditional locks and keys with electronic systems that authenticate individuals before granting access, improving safety and administrative control.
LOAD MORE

Access Control & Time Attendance

Access Control & Time Attendance

Dahua Security Access Control & Time Attendance systems are designed to manage and monitor entry points, track employee attendance, and enhance overall security for organizations. These systems integrate a variety of technologies, including biometric recognition, RFID, and PIN/password access methods, ensuring both security and convenience.
LOAD MORE

Accessories

Accessories

Dahua Security Network Recorder (NVR) accessories are essential components designed to enhance, support, and maintain the performance and reliability of your Dahua surveillance system. These accessories ensure seamless integration, expand system capabilities, and provide the necessary tools for installation, maintenance, and optimal operation of Dahua NVRs.
LOAD MORE

Accessories

Accessories

Access Control & Time Attendance Accessories are the supporting hardware components used with Dahua access control and attendance systems. These accessories extend, enhance, and complete the core system’s functionality by enabling secure door operation, reliable credential reading, power management, and environmental protection.
LOAD MORE

Addressable Fire Alarm System

Addressable Fire Alarm System

An Addressable Fire Alarm System is an advanced type of fire detection system that provides a higher level of precision and control compared to traditional conventional fire alarm systems. Unlike conventional systems, which only indicate the general area where an alarm is triggered, addressable fire alarm systems allow for precise identification of the specific device (such as a smoke detector, heat detector, or manual call point) that has detected smoke, heat, or a fire hazard. This makes them especially suitable for large, complex buildings or facilities with multiple zones.
LOAD MORE

AI

AI

Dahua Security Access Control & Time Attendance AI refers to the intelligent versions of Dahua’s access control and employee attendance systems that use artificial intelligence to make identity verification and attendance tracking faster, more reliable, and more secure. These AI‑enhanced products combine access control hardware with deep learning algorithms for features like face recognition, anti‑spoofing, behavioral analysis, and advanced attendance logging.
LOAD MORE

Alarms

Alarms

Dahua Alarm Systems provide intelligent, reliable, and real-time protection for residential, commercial, and industrial environments. Designed to detect security threats quickly and accurately, Dahua alarms integrate advanced sensors, smart analytics, and seamless connectivity to enhance overall safety and situational awareness.
LOAD MORE

Anti-Corrosion Cameras

Anti-Corrosion Cameras

Protect your assets with Anti-Corrosion Cameras, specially designed for extreme and challenging environments. Built with rugged materials and certified with NEMA 4X or similar anti-corrosion standards, these cameras ensure long-lasting performance in industrial, marine, and outdoor applications.
LOAD MORE

Audio

Audio

Dahua’s security audio products are designed to deliver high-quality sound capture and transmission for professional surveillance environments. Built with advanced noise reduction, wide dynamic range, and durable components, Dahua microphones, speakers, and audio modules ensure clear communication and accurate audio monitoring even in challenging conditions.
LOAD MORE

PHGOA2.97-PH

Overseas Dahua Indonesia outdoor fixed installation LED projectDHI-PHGOA2.97-PH (3mx1.5m) (WxH)

PHSIA1.2-SH

国内大华小间距LED演示机(2*2)_DH-PHSIA1.2-SH(-010)

PHSIA1.5-CH

Overseas Dahua indoor fine pixel pitch Project DHI-PHSIA1.5-CH (4.2mx2.03m)-Jun-30

PHGOA4.81-PH

Overseas Dahua ID UNESA1 Fixed Outdoor Project DHI-PHGOA4.81-PH (8mx5m)

PHMIA135-CF

Smart All-In-One LED Display (COB Foldable)

LS550UCM-UF

LS550UEM-EF

LS550UCM-BF

LS550UCM-EF

LS460UDM-UF

<?php
$term = get_queried_object();
if ($term && 'product-category' === $term->taxonomy) {
  
    // Ambil slug kategori yang aktif
    $selected_category_slug = $term->slug;
    $args = array(
        'post_type'      => 'product',
        'posts_per_page' => -1,
        'tax_query'      => array(
            array(
                'taxonomy' => 'product-category',
                'field'    => 'slug',
                'terms'    => $selected_category_slug,
                'operator' => 'IN',
            ),
        ),
    );

    // Query untuk produk
    $query = new WP_Query($args);
    $product_types = array();
    if ($query->have_posts()) :
        while ($query->have_posts()) : $query->the_post();
            $product_types_terms = get_the_terms(get_the_ID(), 'product-type');
            if ($product_types_terms && !is_wp_error($product_types_terms)) {
                foreach ($product_types_terms as $term) {
                    if (!in_array($term->slug, $product_types)) {
                        $product_types[] = $term->slug; 
                    }
                }
            }
        endwhile;
        $selected_product_type_slugs = $product_types;
        wp_reset_postdata();
    endif;

    // Menampilkan hasil tipe produk yang unik
    if (!empty($selected_product_type_slugs)) {
        echo '<ul class="unique-product-types">';
        foreach ($selected_product_type_slugs as $type) {
            $term = get_term_by('slug', $type, 'product-type' );
           
          $args = array(
                'post_type'      => 'product', // Or your custom post type like 'product', 'book', etc.
                'posts_per_page' => -1,     // To retrieve all matching posts, or a specific number
                'tax_query'      => array(
                    array(
                        'taxonomy' => 'product-type', // Replace with your taxonomy slug (e.g., 'category', 'post_tag', or custom taxonomy)
                        'field'    => 'slug',    // Specify that we are querying by the term slug
                        'terms'    => $type, // Replace with the actual slug of the term you want to filter by
                    ),
                ),
            );
          
           echo $term->name;
          echo "<br/>";
          
           $query = new WP_Query( $args );

  if ( $query->have_posts() ) {
      while ( $query->have_posts() ) {
          $query->the_post();
          // Display post content here
          echo the_title();
          echo the_content();
      }
      wp_reset_postdata(); // Restore original post data
  }

            echo '<li>' . esc_html($type) . '</li>';
        }
        echo '</ul>';
    }
}
?>