diff --git a/src/app/(main)/buildpc/page.tsx b/src/app/(main)/buildpc/page.tsx new file mode 100644 index 0000000..b36dc0e --- /dev/null +++ b/src/app/(main)/buildpc/page.tsx @@ -0,0 +1,12 @@ +import BuildPc from "@/components/buildpc" +import type { Metadata } from "next"; +export const metadata: Metadata = { + title: "Xây Dựng Cấu Hình PC, Build PC Chuẩn Nhất✔️Giá Rẻ", + description: "Xây dựng cấu hình máy tính PC chuyên nghiệp ✳️ máy tính đồ họa, máy tính làm việc giá rẻ ✳️ Build PC.", +}; + +export default function Home() { + return( + + ) +} \ No newline at end of file diff --git a/src/app/(main)/deal/page.tsx b/src/app/(main)/deal/page.tsx new file mode 100644 index 0000000..e4e9f56 --- /dev/null +++ b/src/app/(main)/deal/page.tsx @@ -0,0 +1,13 @@ +import DealPage from "@/components/deal" + +import type { Metadata } from "next"; +export const metadata: Metadata = { + title: "Flash Sale Mỗi Ngày Cực Sốc - Hoàng Hà PC ", + description: "Flash Sale Mỗi Ngày Cực Sốc - Hoàng Hà PC", +}; + +export default function Home() { + return( + + ) +} \ No newline at end of file diff --git a/src/app/(main)/designer-tool/[slug]/page.tsx b/src/app/(main)/designer-tool/[slug]/page.tsx index 78700de..9697240 100644 --- a/src/app/(main)/designer-tool/[slug]/page.tsx +++ b/src/app/(main)/designer-tool/[slug]/page.tsx @@ -1,15 +1,29 @@ -import { findBySlug } from "@/lib/slug/slugMap"; +import type { Metadata } from "next"; import { notFound } from "next/navigation"; -import LayoutTypeSetter from "@/components/layout/LayoutTypeSetter" +import { findBySlug } from "@/lib/slug/slugMap"; +import { metadataBySlug } from "@/app/[slug]/metadataBySlug"; import { SLUG_CONFIG } from "@/app/[slug]/slugConfig"; import { renderBySlug } from "@/app/[slug]/renderBySlug"; +import LayoutTypeSetter from "@/components/layout/LayoutTypeSetter" + + +export async function generateMetadata({ + params, +}: { + params: Promise<{ slug: string }>; +}): Promise { + const { slug } = await params; + const result = await findBySlug(slug); + + return metadataBySlug(result); +} export default async function SlugPage({ params }: { params: { slug: string } }) { - console.log("designer-tool layout check"); + const { slug } = await params; const result = await findBySlug(slug); - if (!result) notFound(); + if (!result) notFound(); const config = SLUG_CONFIG[result.type]; if (!config) notFound(); diff --git a/src/app/(main)/tim/[slug]/page.tsx b/src/app/(main)/tim/[slug]/page.tsx new file mode 100644 index 0000000..9697240 --- /dev/null +++ b/src/app/(main)/tim/[slug]/page.tsx @@ -0,0 +1,37 @@ +import type { Metadata } from "next"; +import { notFound } from "next/navigation"; +import { findBySlug } from "@/lib/slug/slugMap"; +import { metadataBySlug } from "@/app/[slug]/metadataBySlug"; +import { SLUG_CONFIG } from "@/app/[slug]/slugConfig"; +import { renderBySlug } from "@/app/[slug]/renderBySlug"; +import LayoutTypeSetter from "@/components/layout/LayoutTypeSetter" + + +export async function generateMetadata({ + params, +}: { + params: Promise<{ slug: string }>; +}): Promise { + const { slug } = await params; + const result = await findBySlug(slug); + + return metadataBySlug(result); +} + + +export default async function SlugPage({ params }: { params: { slug: string } }) { + + const { slug } = await params; + const result = await findBySlug(slug); + if (!result) notFound(); + + const config = SLUG_CONFIG[result.type]; + if (!config) notFound(); + + return ( + + {renderBySlug(result)} + + ); + +} \ No newline at end of file diff --git a/src/app/(main)/tim/page.tsx b/src/app/(main)/tim/page.tsx new file mode 100644 index 0000000..4cbc7f1 --- /dev/null +++ b/src/app/(main)/tim/page.tsx @@ -0,0 +1,13 @@ +import ProductSearch from "@/components/search" + +import type { Metadata } from "next"; +export const metadata: Metadata = { + title: "Danh sách tìm kiếm ", + description: "Danh sách kết quả thỏa mãn", +}; + +export default function Search() { + return( + + ) +} \ No newline at end of file diff --git a/src/app/(static)/layout.tsx b/src/app/(static)/layout.tsx index a5d3ff9..f395806 100644 --- a/src/app/(static)/layout.tsx +++ b/src/app/(static)/layout.tsx @@ -1,16 +1,13 @@ import type { ReactNode } from 'react'; import LayoutTypeSetter from "@/components/layout/LayoutTypeSetter"; -import StaticStyleLoader from "@/components/layout/StaticStyleLoader"; -// import '@/styles/static_page.css'; -// import '@/styles/tuyen_dung.css'; +import '@/styles/static_page.css'; +import '@/styles/tuyen_dung.css'; export default function StaticLayout({ children }: { children: ReactNode }) { return ( - <> - - + <> {children} diff --git a/src/app/[slug]/metadataBySlug.tsx b/src/app/[slug]/metadataBySlug.tsx index 03b7275..11691b5 100644 --- a/src/app/[slug]/metadataBySlug.tsx +++ b/src/app/[slug]/metadataBySlug.tsx @@ -1,7 +1,7 @@ import type { Metadata } from "next"; export function metadataBySlug(result: any): Metadata { - + switch (result.type) { case "product_category": return { @@ -69,6 +69,15 @@ export function metadataBySlug(result: any): Metadata { } }; + case "designer_detail": + return { + title: result.data.title, + description: result.data.meta_description, + openGraph: { + type: 'website', + } + }; + default: return { diff --git a/src/app/[slug]/page.tsx b/src/app/[slug]/page.tsx index 9077d9e..0188a69 100644 --- a/src/app/[slug]/page.tsx +++ b/src/app/[slug]/page.tsx @@ -1,4 +1,3 @@ -import { cache } from "react"; import { renderBySlug } from "./renderBySlug"; import { metadataBySlug } from "./metadataBySlug"; import { findBySlug } from "@/lib/slug/slugMap"; @@ -15,7 +14,7 @@ export async function generateMetadata({ }): Promise { const { slug } = await params; const result = await findBySlug(slug); - if (!result) return { title: "Local PC" }; + return metadataBySlug(result); } diff --git a/src/app/[slug]/renderBySlug.tsx b/src/app/[slug]/renderBySlug.tsx index b182b58..8626f83 100644 --- a/src/app/[slug]/renderBySlug.tsx +++ b/src/app/[slug]/renderBySlug.tsx @@ -4,7 +4,7 @@ import { notFound } from "next/navigation"; export function renderBySlug(result: any) { const config = SLUG_CONFIG[result.type]; - + if (!config) notFound(); return config.render(result.data); diff --git a/src/components/about/Info.tsx b/src/components/about/Info.tsx index 26961a5..09eb8fd 100644 --- a/src/components/about/Info.tsx +++ b/src/components/about/Info.tsx @@ -266,13 +266,13 @@ export default function Info() { customer-image
    -
  • Doanh nghiệp nhà nước
  • -
  • Tập đoàn lớn
  • -
  • Doanh nghiệp tư nhân vừa và nhỏ
  • -
  • Tổ chức phi chính phủ
  • -
  • Doanh nghiệp vốn đầu tư nước ngoài
  • -
  • Trường học, bệnh viện
  • -
  • Team Youtube, MMO
  • +
  • Doanh nghiệp nhà nước
  • +
  • Tập đoàn lớn
  • +
  • Doanh nghiệp tư nhân vừa và nhỏ
  • +
  • Tổ chức phi chính phủ
  • +
  • Doanh nghiệp vốn đầu tư nước ngoài
  • +
  • Trường học, bệnh viện
  • +
  • Team Youtube, MMO
diff --git a/src/components/buildpc/index.tsx b/src/components/buildpc/index.tsx new file mode 100644 index 0000000..c409b1f --- /dev/null +++ b/src/components/buildpc/index.tsx @@ -0,0 +1,3 @@ +export default function BuildPc() { + return(<> cpn buildpc ) +} \ No newline at end of file diff --git a/src/components/deal/DealItemType2.tsx b/src/components/deal/DealItemType2.tsx new file mode 100644 index 0000000..bf22e88 --- /dev/null +++ b/src/components/deal/DealItemType2.tsx @@ -0,0 +1,93 @@ +'use client'; +import Link from "next/link"; +import parse from "html-react-parser"; +import { formatPrice } from "@/lib/utils"; +import { useDealItem } from "@/hooks/useDealItem" +import { useCart } from '@/hooks/useCart'; +import { DealCountdown } from "@/lib/times" + +export default function DealItem( {item}: any ) { + + const deal = useDealItem(item); + if (!deal) return null; + + const { addToCart, isInCart } = useCart(); + + const { + productInfo, + price, + marketPrice, + discount, + remain, + saleRemainPercent, + specialOffer, + } = deal; + + const discountView = discount > 0 ? (<> + {formatPrice(marketPrice)} đ + -{discount}% + + ) : null; + const checkIncart = isInCart(productInfo.id); + + return( +
+ + { + + +
+ { item.title } + +
+
+

{formatPrice(price)} đ

+ + {discountView} +
+ + +
+ +
+ + + { Number(item.sale_quantity) < Number(item.quantity) + ? `Còn ${remain}/${item.quantity} sản phẩm` + : 'Hết DEAL' + } + +
+ +
+

Kết thúc sau:

+ +
+ +
+
+ + {specialOffer && ( +
+ Quà tặng: + + {parse(specialOffer)} +
+ )} +
+ +
+ ) +} + diff --git a/src/components/deal/index.tsx b/src/components/deal/index.tsx new file mode 100644 index 0000000..50fddb8 --- /dev/null +++ b/src/components/deal/index.tsx @@ -0,0 +1,46 @@ +'use client'; +import { dealList } from "@/data/deals" + +import { useMemo } from "react"; +import { usePagination } from "@/hooks/usePagination"; +import ButtonShowMore from "@/components/shared/ProductShowMore"; +import DealItemType2 from "@/components/deal/DealItemType2" + + +export default function DealPage() { + + const data = useMemo(() => { + return dealList.flatMap((item: any) => item.list); + }, []); + + const { + currentData, + hasMore, + loadMore, + total + } = usePagination(data); + + return ( +
+
+ DEAL +
+ + +
+ {currentData.map((item: any) => ( + + ))} +
+ + {hasMore && + + } +
+ + ) +} \ No newline at end of file diff --git a/src/components/designer-tool/DesignerItem.tsx b/src/components/designer-tool/DesignerItem.tsx deleted file mode 100644 index 8ed107b..0000000 --- a/src/components/designer-tool/DesignerItem.tsx +++ /dev/null @@ -1,37 +0,0 @@ -export default function DesignerItem({ item }: any) { - console.log('DesignerItem: ', item) - return ( - <> -
- - {{ _item.productName }} - -
- -

{'{'}{'{'} _item.productName {'}'}{'}'}

-
-
-

- {'{'}% if _item.price > 0 %{'}'} {'{'}{'{'} _item.price | format_price {'}'}{'}'} đ - {'{'}% else %{'}'} Liên hệ - {'{'}% endif %{'}'} -

- {'{'}% if _item.price_off > 0 %{'}'} - {'{'}{'{'} _item.marketPrice | format_price {'}'}{'}'} đ - -{'{'}{'{'} _item.price_off {'}'}{'}'}% - {'{'}% endif %{'}'} -
- {'{'}% if _item.productSummary %{'}'} -
- {'{'}% assign _summary = _item.productSummary | get_line %{'}'} - {'{'}% for _item in _summary | limit: 5 %{'}'} -
{'{'}{'{'} _item {'}'}{'}'}
- {'{'}% endfor %{'}'} -
- {'{'}% endif %{'}'} -
-
- - - ) -} \ No newline at end of file diff --git a/src/components/designer-tool/Detail.tsx b/src/components/designer-tool/Detail.tsx index 0a82e1d..b0ff57e 100644 --- a/src/components/designer-tool/Detail.tsx +++ b/src/components/designer-tool/Detail.tsx @@ -1,18 +1,41 @@ 'use client'; -import { usePathname } from 'next/navigation'; +import parse from "html-react-parser"; +import { useState } from 'react'; +import { useSearchParams } from 'next/navigation'; import Link from "next/link"; import FAQ from "./Faq"; +import DesignerItem from "@/components/shared/DesignerItem"; +import { usePagination } from "@/hooks/usePagination"; +import ButtonShowMore from "@/components/shared/ProductShowMore"; export default function Detail({ slug }: any) { - // console.log('DesignerDetail: ', slug) - const title = usePathname().includes('device=laptop') ? 'Laptop' : 'PC'; + const deviceTitle = useSearchParams().get('device') == 'laptop' ? 'Laptop' : 'PC'; - const ignoreKeys = ["Loại máy", "Loại máy tính"]; + const { + attribute_list, + product_list + } = slug - const filteredAttribute = slug.attribute_list.filter( - (item: any) => !ignoreKeys.includes(item.name) + const ignoreKeys = ["loại máy", "loại máy tính"]; + + const filteredAttribute = attribute_list.filter( + (item: any) => + !ignoreKeys.map((key: string) => + key.toLowerCase()).includes(item.name.toLowerCase()) ); + const [attribute, setAttribute] = useState(0) + const result = product_list.filter((item: any) => + attribute === 0 || item.attribute?.includes(attribute) + ); + + const { + currentData, + hasMore, + loadMore, + total + } = usePagination(result, 24); + return ( <> @@ -45,38 +68,54 @@ export default function Detail({ slug }: any) {

- {title} dành cho {slug.item_info.name} + {deviceTitle} dành cho {slug.item_info.name}

- {filteredAttribute && + {filteredAttribute.length > 0 &&
-
- { - filteredAttribute.map((item: any) => - - )} + ) + )}
}
-
+ {currentData.length == 0 + ? parse(`
+

Sản phẩm đang được cập nhật ...!

+ Quay lại trang chủ +
+ `) : ( +
+ {currentData.map((item: any) => + + )} +
+ ) + } -
- -
- -

-
+ {hasMore && + + }
-
{slug.item_info.description && diff --git a/src/components/designer-tool/index.tsx b/src/components/designer-tool/index.tsx index 1d5e42e..d897cdb 100644 --- a/src/components/designer-tool/index.tsx +++ b/src/components/designer-tool/index.tsx @@ -1,9 +1,9 @@ 'use client'; import Link from "next/link"; -import { useEffect, useState, useMemo } from "react"; +import { useState, useMemo } from "react"; import { DesignerToolData } from "@/data/designer-tool" +import { convertToSlug } from "@/lib/utils"; import FAQ from "./Faq"; -import { convertToSlug } from "@/lib/utils" export default function DesignerTool() { @@ -21,13 +21,12 @@ export default function DesignerTool() { const [ device, setDevice ] = useState("desktop"); - useEffect(() => { - document.body.style.background = '#FFFFFF'; - console.log('device: ', device) - }, [device]); - return ( - <> +
    @@ -57,11 +56,12 @@ export default function DesignerTool() {
    setKeyword(e.target.value)} - placeholder="Nhập phần mềm cần tìm" - className="w-[calc(100%_-_36px)] pr-3 placeholder:!text-[#5F5F5F] placeholder:!text-[14px] h-9" /> + /> + )}
    @@ -128,6 +129,6 @@ export default function DesignerTool() {
- + ) } \ No newline at end of file diff --git a/src/components/layout/StaticStyleLoader.tsx b/src/components/layout/StaticStyleLoader.tsx deleted file mode 100644 index 0eef980..0000000 --- a/src/components/layout/StaticStyleLoader.tsx +++ /dev/null @@ -1,14 +0,0 @@ -// components/layout/StaticStyleLoader.tsx -'use client'; - -import { useEffect } from 'react'; - -export default function StaticStyleLoader() { - useEffect(() => { - // Import CSS chỉ khi component được mount - import('@/styles/static_page.css'); - import('@/styles/tuyen_dung.css'); - }, []); - - return null; -} \ No newline at end of file diff --git a/src/components/other/Header/index.tsx b/src/components/other/Header/index.tsx index e38c2df..4168521 100644 --- a/src/components/other/Header/index.tsx +++ b/src/components/other/Header/index.tsx @@ -66,7 +66,7 @@ export default function Header() { -
+
diff --git a/src/components/other/otherHeader/index.tsx b/src/components/other/otherHeader/index.tsx index c66602b..6861c4f 100644 --- a/src/components/other/otherHeader/index.tsx +++ b/src/components/other/otherHeader/index.tsx @@ -6,13 +6,13 @@ export default function otherHeader() {
- + HoangHaPc - +
Hệ thống Showroom diff --git a/src/components/product/Category/productList/index.tsx b/src/components/product/Category/productList/index.tsx index d2e0296..d91356f 100644 --- a/src/components/product/Category/productList/index.tsx +++ b/src/components/product/Category/productList/index.tsx @@ -1,41 +1,48 @@ 'use client'; -import { useState } from "react"; +import parse from "html-react-parser"; import { productList } from "@/data/products/productList"; import ProductItem from "@/components/shared/ProductItem"; -const PRODUCT_PER_PAGE = 30; +import { usePagination } from "@/hooks/usePagination"; +import ButtonShowMore from "@/components/shared/ProductShowMore"; -export default function ProductList( {id} : any) { + +export default function ProductList({ id }: any) { + + const data = productList.find(item => item.id === id)?.list || []; - const productsFilter = productList.find(item => item.id === id)?.list || []; - const total = productsFilter?.length; - - const [page, setPage] = useState(1); - const displayCount = page * PRODUCT_PER_PAGE; - const hasMore = displayCount < total; - const products = productsFilter.slice(0, displayCount); + const { + currentData, + hasMore, + loadMore, + total + } = usePagination(data); return ( <> -
- {products.map((item: any) => ( - - ))} -
+ {currentData.length == 0 + ? parse(` +
+

Sản phẩm đang được cập nhật ...!

+ Quay lại trang chủ +
+ `) + : ( +
+ {currentData.map((item: any) => ( + + ))} +
+ ) + } - { hasMore && -
- -

- Hiển thị {Math.min(displayCount, total)} trên tổng số {total} sản phẩm -

-
- } + {hasMore && + + } ) } \ No newline at end of file diff --git a/src/components/product/detail/index.tsx b/src/components/product/detail/index.tsx index 0eb9bac..a112ad0 100644 --- a/src/components/product/detail/index.tsx +++ b/src/components/product/detail/index.tsx @@ -35,6 +35,8 @@ export default async function ProductDetail({ slug }: any) { quantity : slug.quantity } + console.log('aaaaaaaa: ', priceData) + return ( <>
diff --git a/src/components/product/detail/price/DealPrice.tsx b/src/components/product/detail/price/DealPrice.tsx index 348aa6b..a6f71a0 100644 --- a/src/components/product/detail/price/DealPrice.tsx +++ b/src/components/product/detail/price/DealPrice.tsx @@ -7,8 +7,8 @@ export default function DealPrice( {item} : any ) { const normal_price = item.sale_rules.normal_price; const discount = Math.ceil(((normal_price - price) / normal_price) * 100); - const sale_quantity = item.deal_list[0].sale_quantity; - const quantity = item.deal_list[0].quantity; + const sale_quantity = Number(item.deal_list[0].sale_quantity); + const quantity = Number(item.deal_list[0].quantity); const saleRemainPercent = 100 - (sale_quantity / quantity) * 100; return ( diff --git a/src/components/product/detail/summary/index.tsx b/src/components/product/detail/summary/index.tsx index 1021706..3e5f2d4 100644 --- a/src/components/product/detail/summary/index.tsx +++ b/src/components/product/detail/summary/index.tsx @@ -1,6 +1,7 @@ 'use client'; import { useEffect, useState } from 'react' +import { renderSummary } from "@/lib/utils" export default function ProductSummary({ item }: any) { const [mounted, setMounted] = useState(false) @@ -22,33 +23,4 @@ export default function ProductSummary({ item }: any) { } -function renderSummary(data: any) { - if (!data) return null; - if (typeof data === 'string' && data.includes('<')) { - const parser = new DOMParser() - const doc = parser.parseFromString(data, 'text/html') - - return Array.from(doc.body.childNodes) - .filter( - node => - node.nodeType === 1 && - node.textContent && - node.textContent.trim() !== '' - ) - .map((node, index) => ( -
- {node.textContent!.trim()} -
- )) - } - - return data - .split(/\r?\n/) - .filter((line: string) => line.trim() !== '') - .map((line: string, index: number) => ( -
- {line.trim()} -
- )) -} diff --git a/src/components/recruit/Detail.tsx b/src/components/recruit/Detail.tsx index a128415..f3edf13 100644 --- a/src/components/recruit/Detail.tsx +++ b/src/components/recruit/Detail.tsx @@ -5,8 +5,6 @@ import parse from "html-react-parser" import { JobData } from "@/data/articles/Job"; import RecruitForm from "./Form"; -import '@/styles/static_page.css'; -import '@/styles/tuyen_dung.css'; export default function JobDetail({ slug }: any) { diff --git a/src/components/search/index.tsx b/src/components/search/index.tsx new file mode 100644 index 0000000..cb6ce40 --- /dev/null +++ b/src/components/search/index.tsx @@ -0,0 +1,96 @@ +'use client'; +import parse from "html-react-parser"; +import { useSearchParams } from 'next/navigation'; +import { productCategory } from "@/data/products/productCategory"; +import { productList } from "@/data/products/productList"; +import { usePagination } from "@/hooks/usePagination"; +import ButtonShowMore from "@/components/shared/ProductShowMore"; +import ProductFilter from "@/components/product/category/filter"; +import SortByCollection from "@/components/product/category/sort"; +import ProductItem from "@/components/shared/ProductItem"; +import { useMemo } from "react"; + + +export default function ProductSearch() { + const searchParams = useSearchParams(); + const search_query = searchParams.get('q') || ""; + + const { + sort_by_collection, + } = productCategory.current_category; + + const totalProduct = useMemo(() => { + return productList.flatMap((item: any) => item.list); + }, []); + + const filterData = useMemo(() => { + return totalProduct.filter((item: any) => + item.productName?.trim() + .toLowerCase() + .includes(search_query.trim().toLowerCase()) + ); + }, [totalProduct, search_query]); + + const { + currentData, + hasMore, + loadMore, + total + } = usePagination(filterData); + + return ( +
+

+ Tìm kiếm sản phẩm: "{search_query}" +

+ + {currentData.length == 0 + ? parse(` +
+

+ Rất tiếc, chúng tôi không tìm thấy kết quả của "${search_query}" +

+ +
+

Để tìm được kết quả chính xác hơn, xin vui lòng

+
    +
  • Kiểm tra lại chính tả của từ khóa đã nhập
  • +
  • Thử lại bằng từ khóa khác
  • +
  • Thử lại bằng các từ khóa tổng quát hơn
  • +
  • Thử lại bằng các từ khóa ngắn gọn hơn
  • +
+
+
+ `) : ( +
+
+ +
+ +
+
+ + + +
+ {currentData.map((item: any) => ( + + ))} +
+ + {hasMore && + + } +
+ +
+
+ )} + +
+ ) +} \ No newline at end of file diff --git a/src/components/shared/DealItem.tsx b/src/components/shared/DealItem.tsx index 1cba834..0113ce2 100644 --- a/src/components/shared/DealItem.tsx +++ b/src/components/shared/DealItem.tsx @@ -63,9 +63,11 @@ export default function DealItem( {item} : any) {
- Còn: - {remain}/{item.quantity} - sản phẩm + + { Number(item.sale_quantity) < Number(item.quantity) + ? `Còn ${remain}/${item.quantity} sản phẩm` + : 'Hết DEAL' + }
diff --git a/src/components/shared/DesignerItem.tsx b/src/components/shared/DesignerItem.tsx new file mode 100644 index 0000000..2928bdd --- /dev/null +++ b/src/components/shared/DesignerItem.tsx @@ -0,0 +1,43 @@ +import { formatPrice, renderSummary } from "@/lib/utils"; + +export default function DesignerItem({ item }: any) { + return ( +
+ + {item.productName} + + +
+ +

{item.productName}

+
+ +
+

+ {item.price > 0 + ? formatPrice(item.price) + 'đ' + : 'Liên hệ' + } +

+ + {Number(item.price_off) > 0 && + <> + {formatPrice(item.marketPrice)} đ + -{item.price_off}% + + } +
+ + {item.productSummary && +
+ {renderSummary(item.productSummary)} +
+ } +
+
+ ) +} \ No newline at end of file diff --git a/src/components/shared/ProductShowMore.tsx b/src/components/shared/ProductShowMore.tsx new file mode 100644 index 0000000..099f9b2 --- /dev/null +++ b/src/components/shared/ProductShowMore.tsx @@ -0,0 +1,35 @@ +interface ButtonShowMoreProps { + onClick: () => void; + label?: string; + loading?: boolean; + displayCount: number; + total: number; +} + +export default function ButtonShowMore({ + onClick, + label = "TẢI THÊM", + loading = false, + displayCount, + total +}: ButtonShowMoreProps) { + + return ( +
+ + +

+ Hiển thị {displayCount} trên tổng số {total} sản phẩm +

+
+ ); +} diff --git a/src/data/deals/index.tsx b/src/data/deals/index.tsx index 115d7ed..0be2032 100644 --- a/src/data/deals/index.tsx +++ b/src/data/deals/index.tsx @@ -14,13 +14,13 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "22-02-2026, 8:30 am", "is_featured": "0", "last_update": "1767576809", "sale_order": "0", "deal_time_happen": 796220, "deal_time_left": 1624780, - "sale_quantity": "0", + "sale_quantity": "10", "request_path": "\/deal\/342", "is_start": 1, "is_end": 0, @@ -79,7 +79,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576805", "sale_order": "0", @@ -144,7 +144,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576799", "sale_order": "0", @@ -180,7 +180,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576954", "sale_order": "0", @@ -216,7 +216,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576950", "sale_order": "0", @@ -252,7 +252,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576946", "sale_order": "0", @@ -288,7 +288,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767577069", "sale_order": "0", @@ -324,7 +324,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576941", "sale_order": "0", @@ -360,7 +360,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576936", "sale_order": "0", @@ -396,7 +396,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576932", "sale_order": "0", @@ -442,7 +442,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1768017144", "sale_order": "0", @@ -507,7 +507,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1768017107", "sale_order": "0", @@ -543,7 +543,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767853933", "sale_order": "1", @@ -579,7 +579,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767585250", "sale_order": "2", @@ -615,7 +615,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576873", "sale_order": "0", @@ -651,7 +651,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576869", "sale_order": "0", @@ -687,7 +687,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576982", "sale_order": "0", @@ -723,7 +723,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576860", "sale_order": "0", @@ -759,7 +759,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576852", "sale_order": "0", @@ -795,7 +795,7 @@ export const dealList = [ "quantity": "10", "min_purchase": "1", "max_purchase": "10", - "to_time": "02-02-2026, 8:30 am", + "to_time": "02-02-2027, 8:30 am", "is_featured": "0", "last_update": "1767576848", "sale_order": "0", diff --git a/src/data/designer-tool/Detail.tsx b/src/data/designer-tool/Detail.tsx index a15885c..f90912b 100644 --- a/src/data/designer-tool/Detail.tsx +++ b/src/data/designer-tool/Detail.tsx @@ -25,13 +25,13 @@ export const DesignerToolDetail = [ "id": 5975, "productId": 5975, "marketPrice": 50000000, - "price": 47740000, - "price_off": "5", + "price": 48230000, + "price_off": "4", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G`, - "productSummary": `

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

+ "productSummary": `

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

RAM : DDR5 32GB 6000 MHz (2x16G)

-

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

`, +

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

`, "productUrl": `/pc-i7-14700kf-rtx-5060-ti-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg", @@ -39,15 +39,16 @@ export const DesignerToolDetail = [ "original": "", }, "sale_rules": { - "price": 47740000, - "normal_price": 47740000, + "price": 48230000, + "normal_price": 48230000, "min_purchase": 1, "max_purchase": 1, "remain_quantity": 1, "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [25, 26] }, { @@ -58,9 +59,9 @@ export const DesignerToolDetail = [ "price_off": "6", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i5 14600K | 32G | NVIDIA RTX 5060 Ti 16G`, - "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

-

RAM : DDR4 32GB (2x16G) 3200 MHz

-

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3 FAN

`, + "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

+

RAM : DDR4 32GB (2x16G) 3200 MHz

+

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3 FAN

`, "productUrl": `/hhpc-core-i5-14600k-32g-rtx-5060-ti-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_5989_pc_gaming_x_ii_a620.jpg", @@ -76,7 +77,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -89,7 +91,7 @@ export const DesignerToolDetail = [ "productName": `HHPC CORE i9 14900KF | 32G | RX 7800 XT 16G`, "productSummary": `

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

RAM : DDR4 32GB 3200 MHz (2x16G)

-

VGA: RADEON RX 7800 XT 16G GDDR6

`, +

VGA: RADEON RX 7800 XT 16G GDDR6

`, "productUrl": `/hhpc-core-i9-14900kf-32g-rx-7800-xt-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6011_pc_anubis_le360_k_logo_ha3.jpg", @@ -105,7 +107,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -116,9 +119,9 @@ export const DesignerToolDetail = [ "price_off": "6", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i7 14700KF | 32GB | RX 7800 XT 16G`, - "productSummary": `

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

-

RAM : DDR4 32GB (2x16G) 3200 MHz

-

VGA: RADEON RX 7800 XT 16G GDDR6

`, + "productSummary": `

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

+

RAM : DDR4 32GB (2x16G) 3200 MHz

+

VGA: RADEON RX 7800 XT 16G GDDR6

`, "productUrl": `/pc-core-i7-14700kf-32gb-rx-7800-xt-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6012_pc_anubis_le360_k_logo_ha1.jpg", @@ -134,7 +137,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -145,9 +149,9 @@ export const DesignerToolDetail = [ "price_off": "5", "warranty": `theo từng linh kiện`, "productName": `HHPC GAMING CORE i5 14600K | 16GB | NVIDIA RTX 5070 Ti 16G`, - "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

-

RAM : DDR4 16GB (1x16G) 3200 MHz

-

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, + "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

+

RAM : DDR4 16GB (1x16G) 3200 MHz

+

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, "productUrl": `/pc-gaming-core-i5-14600kf-16gb-nvidia-rtx-5070-ti`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6045_pc_blast_m_ha1.jpg", @@ -163,7 +167,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -174,9 +179,9 @@ export const DesignerToolDetail = [ "price_off": "6", "warranty": `theo từng linh kiện`, "productName": `HHPC GAMING CORE i5 14600K | 16GB | RX 7800 XT 16G`, - "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

-

RAM : DDR4 16GB (1x16G) 3200 MHz

-

VGA: RADEON RX 7800 XT 16G GDDR6

`, + "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

+

RAM : DDR4 16GB (1x16G) 3200 MHz

+

VGA: RADEON RX 7800 XT 16G GDDR6

`, "productUrl": `/hhpc-gaming-core-i5-14600k-16gb-rx-7800-xt`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6046_pc_blast_m_ha1.jpg", @@ -192,7 +197,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -203,9 +209,9 @@ export const DesignerToolDetail = [ "price_off": "3", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i5 14600K | 32G | NVIDIA RTX 5060 8G`, - "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

-

RAM : DDR4 32GB (2x16G) 3200 MHz

-

VGA: NVIDIA RTX 5060 8G GDDR7

`, + "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

+

RAM : DDR4 32GB (2x16G) 3200 MHz

+

VGA: NVIDIA RTX 5060 8G GDDR7

`, "productUrl": `/pc-core-i5-14600k-32g-rtx-5060-8g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6139_pc_gaming_x_ii_a620.jpg", @@ -221,7 +227,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -232,9 +239,9 @@ export const DesignerToolDetail = [ "price_off": "", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5060 8G`, - "productSummary": `

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

-

RAM : DDR4 32GB (2x16G) 3200 MHz

-

VGA: NVIDIA RTX 5060 8G GDDR7

`, + "productSummary": `

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

+

RAM : DDR4 32GB (2x16G) 3200 MHz

+

VGA: NVIDIA RTX 5060 8G GDDR7

`, "productUrl": `/pc-i7-14700-32g-rtx-5060-8g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6140_pc_anubis_lt720_ram_d4_14900k_ha6ss.jpg", @@ -250,7 +257,8 @@ export const DesignerToolDetail = [ "from_time": 1767574800, "to_time": 1772415000, "type": "deal" - } + }, + "attribute": [24, 27] }, { @@ -261,9 +269,9 @@ export const DesignerToolDetail = [ "price_off": "0", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i5 14600K | 16G | NVIDIA QUADRO P400 2GB`, - "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

-

RAM : DDR4 16GB (1x16G) 3200 MHz

-

VGA : NVIDIA QUADRO P400 2GB GDDR5

`, + "productSummary": `

CPU : INTEL CORE i5 14600K UP 5.3GHz | 14 CORES | 20 THREADS

+

RAM : DDR4 16GB (1x16G) 3200 MHz

+

VGA : NVIDIA QUADRO P400 2GB GDDR5

`, "productUrl": `/pc-core-i5-14600k-16g-quadro-p400-2gb`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6240_pc_gaming_x_ii_a620_ha1.jpg", @@ -279,7 +287,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -292,8 +301,8 @@ export const DesignerToolDetail = [ "productName": `HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 5090 32G`, "productSummary": `

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

RAM : DDR5 64GB 6000 MHz (2x32G)

-

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

-

VGA: NVIDIA RTX 5090 32G GDDR7

`, +

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

+

VGA: NVIDIA RTX 5090 32G GDDR7

`, "productUrl": `/pc-core-i9-14900kf-rtx-5090-32g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha2.jpg", @@ -309,7 +318,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -320,9 +330,9 @@ export const DesignerToolDetail = [ "price_off": "6", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G`, - "productSummary": `

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

+ "productSummary": `

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

RAM : DDR5 32GB 6000 MHz (2x16G)

-

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

`, +

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

`, "productUrl": `/pc-ultra-9-285-32gb-d5-rtx-5070-ti-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha3.jpg", @@ -338,7 +348,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -351,7 +362,7 @@ export const DesignerToolDetail = [ "productName": `HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16G`, "productSummary": `

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

RAM : DDR5 64GB 6000 MHz (2x32G)

-

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, +

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, "productUrl": `/pc-core-i9-14900kf-rtx-5070-ti-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha3.jpg", @@ -367,7 +378,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -378,10 +390,10 @@ export const DesignerToolDetail = [ "price_off": "", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G`, - "productSummary": `

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

+ "productSummary": `

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

RAM : DDR5 32GB 6000 MHz (2x16G)

-

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

-

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, +

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

+

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, "productUrl": `/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5070-ti-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_5877_pc_view_290_tg_lc360_sale.jpg", @@ -397,7 +409,8 @@ export const DesignerToolDetail = [ "from_time": 1767574800, "to_time": 1772415000, "type": "deal" - } + }, + "attribute": [24, 26] }, { @@ -408,9 +421,9 @@ export const DesignerToolDetail = [ "price_off": "5", "warranty": `theo từng linh kiện`, "productName": `HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5070 Ti 16G`, - "productSummary": `

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

+ "productSummary": `

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

RAM : DDR5 32GB 6000Mhz (2x16GB)

-

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, +

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

`, "productUrl": `/pc-ryzen-9-9950x-32g-d5-rtx-5070-ti-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha3.jpg", @@ -426,7 +439,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 26] }, { @@ -437,9 +451,9 @@ export const DesignerToolDetail = [ "price_off": "3", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5070 12G`, - "productSummary": `

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

+ "productSummary": `

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

RAM : DDR5 32GB 6000 MHz (2x16G)

-

VGA : NVIDIA RTX 5070 12G GDDR7

`, +

VGA : NVIDIA RTX 5070 12G GDDR7

`, "productUrl": `/hhpc-ultra-7-265kf-5070-12g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_do_hoa.jpg", @@ -455,7 +469,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -466,10 +481,10 @@ export const DesignerToolDetail = [ "price_off": "", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 12G`, - "productSummary": `

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

+ "productSummary": `

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

RAM : DDR5 32GB 6000 MHz (2x16G)

-

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

-

VGA : NVIDIA RTX 5070 12G GDDR7

`, +

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

+

VGA : NVIDIA RTX 5070 12G GDDR7

`, "productUrl": `/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5070-12g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_sale_2.jpg", @@ -485,7 +500,8 @@ export const DesignerToolDetail = [ "from_time": 1767574800, "to_time": 1772415000, "type": "deal" - } + }, + "attribute": [24, 27] }, { @@ -496,9 +512,9 @@ export const DesignerToolDetail = [ "price_off": "6", "warranty": `theo từng linh kiện`, "productName": `HHPC RYZEN 9 9950X | 32G DDR5 | RX 7800 XT 16G`, - "productSummary": `

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

+ "productSummary": `

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

RAM : DDR5 32GB 6000Mhz (2x16GB)

-

VGA: RADEON RX 7800 XT 16G GDDR6

`, +

VGA: RADEON RX 7800 XT 16G GDDR6

`, "productUrl": `/hhpc-ryzen-9-9950x-32g-ddr5-rx-7800-xt-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6007_pc_anubis_le360_k_logo_ha3.jpg", @@ -514,7 +530,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -525,10 +542,10 @@ export const DesignerToolDetail = [ "price_off": "7", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 9 285K | 32GB DDR5 | RX 7800 XT 16G`, - "productSummary": `

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

+ "productSummary": `

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

RAM : DDR5 32GB 6000 MHz (2x16G)

-

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

-

VGA: RADEON RX 7800 XT 16G GDDR6

`, +

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

+

VGA: RADEON RX 7800 XT 16G GDDR6

`, "productUrl": `/hhpc-ultra-9-285k-32gb-ddr5-rx-7800-xt-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha2.jpg", @@ -544,7 +561,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -555,9 +573,9 @@ export const DesignerToolDetail = [ "price_off": "5", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 7 265KF | 32GB DDR5 | RX 7800 XT 16G`, - "productSummary": `

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

+ "productSummary": `

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

RAM : DDR5 32GB 6000 MHz (2x16G)

-

VGA: RADEON RX 7800 XT 16G GDDR6

`, +

VGA: RADEON RX 7800 XT 16G GDDR6

`, "productUrl": `/hhpc-ultra-7-265kf-32gb-d5-rx-7800-xt-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6010_pc_gaming_x_ii_a620.jpg", @@ -573,7 +591,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -584,9 +603,9 @@ export const DesignerToolDetail = [ "price_off": "7", "warranty": `theo từng linh kiện`, "productName": `HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5070 12G`, - "productSummary": `

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

+ "productSummary": `

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

RAM : DDR5 32GB 6000 MHz (2x16G)

-

VGA: NVIDIA RTX 5070 12G GDDR7

`, +

VGA: NVIDIA RTX 5070 12G GDDR7

`, "productUrl": `/hhpc-ultra-9-285-32gb-ddr5-nvidia-rtx-5070-12g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha2.jpg", @@ -602,7 +621,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, { @@ -613,9 +633,9 @@ export const DesignerToolDetail = [ "price_off": "4", "warranty": `theo từng linh kiện`, "productName": `HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5080 16G`, - "productSummary": `

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

+ "productSummary": `

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

RAM : DDR5 32GB 6000 MHz (2x16G)

-

VGA: NVIDIA RTX 5080 16G GDDR7

`, +

VGA: NVIDIA RTX 5080 16G GDDR7

`, "productUrl": `/pc-core-i7-14700kf-32gb-d5-rtx-5080-16g`, "productImage": { "small": "https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha3.jpg", @@ -631,7 +651,8 @@ export const DesignerToolDetail = [ "from_time": 0, "to_time": 0, "type": "component" - } + }, + "attribute": [24, 27] }, ], diff --git a/src/data/products/productList/index.tsx b/src/data/products/productList/index.tsx index 1c9cfbe..6aec778 100644 --- a/src/data/products/productList/index.tsx +++ b/src/data/products/productList/index.tsx @@ -2,7 +2,7 @@ export const productList = [ { "id": 1, "total": 108, - "list": [{"id":6729,"productId":6729,"priceUnit":"chiếc","marketPrice":600000000,"price":551350000,"price_off":8,"currency":"vnd","sale_rules":{"price":551350000,"normal_price":551350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:47:04","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX PRO 5000 BLACKWELL 48GB | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x NVIDIA RTX PRO 5000 BLACKWELL 48GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6729_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6729_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6729_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6729_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6729_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6729_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-dual-rtx-pro-5000-threadripper-9960x-256gb","brand":{"id":0,"name":"","image":"","url":""},"visit":5,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6730,"productId":6730,"priceUnit":"chiếc","marketPrice":400000000,"price":382690000,"price_off":4,"currency":"vnd","sale_rules":{"price":382690000,"normal_price":382690000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:53:10","warranty":"theo từng linh kiện","productName":"HH AI PC RTX PRO 5000 BLACKWELL 48GB | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : NVIDIA RTX PRO 5000 BLACKWELL 48GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6730_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6730_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6730_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6730_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6730_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6730_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-rtx-pro-5000-threadripper-9960x-256gb","brand":{"id":0,"name":"","image":"","url":""},"visit":2,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6417,"productId":6417,"priceUnit":"chiếc","marketPrice":0,"price":718060000,"price_off":"","currency":"vnd","sale_rules":{"price":718060000,"normal_price":718060000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:22:33","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER PRO 7995WX | 1024GB DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU AMD RYZEN THREADRIPPER PRO 7995WX UP TO 5.1GHz | 96 CORES | 192 THREADS

\r\n

MAINBOARD GIGABYTE TRX50 AI TOP

\r\n

TẢN NHIỆT NƯỚC AIO THERMALTAKE AW420

\r\n

RAM DDR5 SAMSUNG 1024GB (8x128GB) 4800MHz ECC RDIMM

\r\n

SSD SAMSUNG 990 PRO 12TB (3x4TB) M.2 NVME PCIE GEN 4x4 - 7450MB/s

\r\n

HDD WD ULTRASTAR 20TB DC HC555 7200RPM SATA

\r\n

VGA NVIDIA RTX PRO 6000 BLACKWELL 96GB

\r\n

PSU CORSAIR AX1600i 1600W - 80 PLUS TITANIUM

\r\n

CASE AERIS WS1 ULTRA WORKSTATION

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-ryzen-threadripper-pro-7995wx-1024gb-d5-rtx-pro-6000-blackwell-96gb","brand":{"id":0,"name":"","image":"","url":""},"visit":1665,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá RAM

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá RAM

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6732,"productId":6732,"priceUnit":"chiếc","marketPrice":600000000,"price":523190000,"price_off":13,"currency":"vnd","sale_rules":{"price":523190000,"normal_price":523190000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 14:27:20","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX 5880 ADA 48GB | THREADRIPPER 9960X | 128GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 128GB ECC REGISTERED TỰ SỬA LỖI (2x64G)

\r\n

VGA : 2x NVIDIA RTX 5880 ADA 48GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6732_ai_xeon_2vga_rtx_infinity_revenge_pro_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6732_ai_xeon_2vga_rtx_infinity_revenge_pro_ha3.jpg","original":""},"alt":""}],"productUrl":"/pcai-dual-rtx-5880-ada-48gb-threadripper-9960x-128gb","brand":{"id":0,"name":"","image":"","url":""},"visit":1,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6418,"productId":6418,"priceUnit":"chiếc","marketPrice":0,"price":89120000,"price_off":"","currency":"vnd","sale_rules":{"price":89120000,"normal_price":89120000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:31:18","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP CORE ULTRA 7 265KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16GB","productSummary":"

CPU INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAINBOARD GIGABYTE Z890 AERO G DDR5

\r\n

TẢN NHIỆT NƯỚC CPU DEEPCOOL LT720 WHITE

\r\n

RAM DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB) - WHITE

\r\n

SSD WD BLACK SN770 2TB M.2 NVMe PCIE Gen 4x4 - RW 5150 MB/s

\r\n

HDD WD ULTRASTAR 12TB 3.5 INCH SATA

\r\n

VGA COLORFUL IGAME GEFORCE RTX 5070 Ti ULTRA W OC 16GB-V

\r\n

PSU SUPER FLOWER LEADEX V GOLD PRO 1000W WHITE PCIE 5.0 - 80 PLUS GOLD

\r\n

CASE LIAN LI V100 WHITE

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-dep-core-ultra-7-265kf-64g-rx-5070-ti-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":237,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6095,"productId":6095,"priceUnit":"chiếc","marketPrice":160000000,"price":151350000,"price_off":5,"currency":"vnd","sale_rules":{"price":151350000,"normal_price":151350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 10:44:11","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":1405,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6453,"productId":6453,"priceUnit":"chiếc","marketPrice":135000000,"price":129000000,"price_off":4,"currency":"vnd","sale_rules":{"price":129000000,"normal_price":129000000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-12 13:29:02","warranty":"36 tháng","productName":"MSI EdgeXpert AI Supercomputer Based On Nvidia DGX Spark Platform","productSummary":"

GPU: NVIDIA® Blackwell Architecture

\r\n

CPU: 20 core Arm, 10 Cortex-X925 + 10 Cortex-A725 Arm

\r\n

Tensor Performance: 1000 AI TOPS (FP4, Sparse)

\r\n

System Memory: 128 GB LPDDR5x, unified system memory

\r\n

Cổng kết nối: 4x USB 3.2 Type C, 1x HDMI 2.1a

\r\n

Ethernet: 1x RJ-45 connector 10 GbE

\r\n

Wi-Fi/ Bluetooth: WiFi 7/ BT 5.4

","package_accessory":"","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha1.jpg","original":""},"alt":""}],"productUrl":"/msi-edgexpert-ai-supercomputer-nvidia-dgx-spark-platform","brand":{"id":7,"brand_index":"msi","name":"MSI","image":"https://hoanghapccdn.com/media/brand/msi.jpg","url":"/brand/msi"},"visit":554,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6421,"productId":6421,"priceUnit":"chiếc","marketPrice":200000000,"price":192990000,"price_off":4,"currency":"vnd","sale_rules":{"price":192990000,"normal_price":192990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-12-31 16:22:02","warranty":"36 tháng","productName":"GIGABYTE AI TOP 100 Z890 | ULTRA 9 285K | 128G D5 | RTX 5090 32G","productSummary":"

CPU: INTEL CORE ULTRA 9 285K

\r\n

MAINBOARD: Z890 AI TOP

\r\n

TẢN NHIỆT AIO: AORUS 360

\r\n

RAM: 128GB (4x32GB) DDR5 U-DIMM

\r\n

SSD: AORUS GEN 4 7300 2TB / AI TOP 100E 320GB

\r\n

VGA: NVIDIA RTX 5090 32G

\r\n

PSU: 1600W 80 PLUS PLATINUM ATX 3.1

","package_accessory":"","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha3.jpg","original":""},"alt":""}],"productUrl":"/pc-gigabyte-ai-top-100-z890-ultra-9-285k-128g-d5-rtx-5090","brand":{"id":6,"brand_index":"gigabyte","name":"GIGABYTE","image":"https://hoanghapccdn.com/media/brand/gigabyte.jpg","url":"/brand/gigabyte"},"visit":501,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6126,"productId":6126,"priceUnit":"chiếc","marketPrice":55000000,"price":53060000,"price_off":4,"currency":"vnd","sale_rules":{"price":53060000,"normal_price":53060000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:08:59","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285-32gb-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":621,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6127,"productId":6127,"priceUnit":"chiếc","marketPrice":63000000,"price":60070000,"price_off":5,"currency":"vnd","sale_rules":{"price":60070000,"normal_price":60070000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:07:33","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-32gb-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":798,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6128,"productId":6128,"priceUnit":"chiếc","marketPrice":80000000,"price":83850000,"price_off":-5,"currency":"vnd","sale_rules":{"price":83850000,"normal_price":83850000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:19:33","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 64GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-64gb-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1396,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6640,"productId":6640,"priceUnit":"chiếc","marketPrice":72000000,"price":70690000,"price_off":2,"currency":"vnd","sale_rules":{"price":70690000,"normal_price":70690000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-16 15:08:14","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-64g-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":214,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6349,"productId":6349,"priceUnit":"chiếc","marketPrice":67000000,"price":62610000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":62610000,"normal_price":62610000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-20 13:53:16","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-32g-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":6038,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6096,"productId":6096,"priceUnit":"chiếc","marketPrice":130000000,"price":153980000,"price_off":-18,"currency":"vnd","sale_rules":{"price":153980000,"normal_price":153980000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-10-23 16:53:06","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":2270,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"}]},{"id":5997,"productId":5997,"priceUnit":"chiếc","marketPrice":78000000,"price":71600000,"price_off":8,"currency":"vnd","sale_rules":{"price":71600000,"normal_price":71600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:10:38","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":7123,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5998,"productId":5998,"priceUnit":"chiếc","marketPrice":80000000,"price":72850000,"price_off":9,"currency":"vnd","sale_rules":{"price":72850000,"normal_price":72850000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:01:47","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1757,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6106,"productId":6106,"priceUnit":"chiếc","marketPrice":0,"price":49050000,"price_off":"","currency":"vnd","sale_rules":{"price":49050000,"normal_price":50040000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":324},"lastUpdate":"2026-01-05 09:50:38","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_d5_sale_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_d5_sale_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_14700k_4080s_ha5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_14700k_4080s_ha5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":844,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":324,"pro_id":6106,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","price":49050000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6125,"productId":6125,"priceUnit":"chiếc","marketPrice":50000000,"price":50120000,"price_off":0,"currency":"vnd","sale_rules":{"price":50120000,"normal_price":50120000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:09:51","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-32gb-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":931,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6002,"productId":6002,"priceUnit":"chiếc","marketPrice":80000000,"price":75410000,"price_off":6,"currency":"vnd","sale_rules":{"price":75410000,"normal_price":75410000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:16:40","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9950x-32g-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1494,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"}]},{"id":6003,"productId":6003,"priceUnit":"chiếc","marketPrice":70000000,"price":67070000,"price_off":4,"currency":"vnd","sale_rules":{"price":67070000,"normal_price":67070000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 13:52:12","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 7800X3D | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : AMD RYZEN 7 7800X3D up 5.0GHz | 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-7800x3d-32g-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1466,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6108,"productId":6108,"priceUnit":"chiếc","marketPrice":0,"price":51000000,"price_off":"","currency":"vnd","sale_rules":{"price":51000000,"normal_price":52040000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":325},"lastUpdate":"2026-01-05 09:49:55","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_d5_sale_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_d5_sale_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_14700k_4080s_ha6s.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_14700k_4080s_ha6s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_ultra_7_ml360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_ultra_7_ml360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_ultra_7_ml360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_ultra_7_ml360_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":912,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":325,"pro_id":6108,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 12G","price":51000000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6654,"productId":6654,"priceUnit":"chiếc","marketPrice":110000000,"price":101550000,"price_off":8,"currency":"vnd","sale_rules":{"price":101550000,"normal_price":101550000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 14:06:10","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d5s.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d9_1.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d9_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d15.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d15.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d14.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d14.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":55,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6129,"productId":6129,"priceUnit":"chiếc","marketPrice":130000000,"price":149790000,"price_off":-15,"currency":"vnd","sale_rules":{"price":149790000,"normal_price":149790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-03 15:15:04","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 64GB DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-64gb-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":877,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"}]},{"id":6109,"productId":6109,"priceUnit":"chiếc","marketPrice":0,"price":58800000,"price_off":"","currency":"vnd","sale_rules":{"price":58800000,"normal_price":59980000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":326},"lastUpdate":"2025-12-31 15:36:29","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_d5_sale_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_d5_sale_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_d5_sale_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_d5_sale_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_14700k_4080s_ha4s.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_14700k_4080s_ha4s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_ultra_7_ml360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_ultra_7_ml360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_ultra_7_ml360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_ultra_7_ml360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_ultra_7_ml360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_ultra_7_ml360_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":2105,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":326,"pro_id":6109,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 Ti 16G","price":58800000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6110,"productId":6110,"priceUnit":"chiếc","marketPrice":0,"price":71050000,"price_off":"","currency":"vnd","sale_rules":{"price":71050000,"normal_price":72480000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":327},"lastUpdate":"2026-01-12 14:07:58","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_d5_sale_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_d5_sale_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_14700k_4080s_ha6s.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_14700k_4080s_ha6s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_ultra_7_ml360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_ultra_7_ml360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_ultra_7_ml360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_ultra_7_ml360_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1802,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":327,"pro_id":6110,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5080 16G","price":71050000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6111,"productId":6111,"priceUnit":"chiếc","marketPrice":0,"price":134350000,"price_off":"","currency":"vnd","sale_rules":{"price":134350000,"normal_price":137090000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":328},"lastUpdate":"2026-01-05 09:47:52","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6111_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6111_pc_endura_d5_sale_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6111_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6111_pc_endura_d5_sale_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_14700k_4080s_ha5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_14700k_4080s_ha5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":1229,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":328,"pro_id":6111,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5090 32G","price":134350000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6647,"productId":6647,"priceUnit":"chiếc","marketPrice":105000000,"price":97600000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":97600000,"normal_price":97600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-18 10:13:36","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE i9 14900K UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-64g-d5-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":32,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6672,"productId":6672,"priceUnit":"chiếc","marketPrice":58000000,"price":54450000,"price_off":6,"currency":"vnd","sale_rules":{"price":54450000,"normal_price":54450000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-15 11:36:35","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha11.jpg","original":""},"alt":""}],"productUrl":"/pc-ultr7-265kf-rtx5070-ti","brand":{"id":0,"name":"","image":"","url":""},"visit":168,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6052,"productId":6052,"priceUnit":"chiếc","marketPrice":0,"price":97480000,"price_off":"","currency":"vnd","sale_rules":{"price":97480000,"normal_price":97480000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:18:36","warranty":"theo từng linh kiện","productName":"HHPC KING CORE ULTRA 9 285K | 64G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU: INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

MAINBOARD: ASUS ROG STRIX Z890-F GAMING WIFI

\r\n

TẢN NHIỆT NƯỚC: ASUS PRIME LC360 ARGB LCD

\r\n

RAM: DDR5 TEAMGROUP T-FORCE DELTA RGB 64GB 6000MHz (2x32G)

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: GIGABYTE RTX 5080 WINDFORCE OC SFF 16G GDDR7

\r\n

PSU: ASUS TUF GAMING 1000G 1000W 80 PLUS GOLD

\r\n

CASE: MONTECH KING 95 PRO BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-king-core-ultra-9-285k-64g-ddr5-nvidia-rtx-5080","brand":{"id":0,"name":"","image":"","url":""},"visit":957,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":5755,"productId":5755,"priceUnit":"chiếc","marketPrice":0,"price":91700000,"price_off":"","currency":"vnd","sale_rules":{"price":91700000,"normal_price":91700000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:17:52","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP CORE i9 14900K | 64G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE i9 14900K UP 6.0GHz | 24 CORE | 32 THREAD

\r\n

RAM : DDR5 GSKILL TRIDENT Z5 RGB 64GB (2x32G) 6000MHz WHITE

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

HDD: SEAGATE BARRACUDA 2TB 7200

\r\n

VGA: GIGABYTE RTX 5080 WINDFORCE OC SFF 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5755_pc_cubi_ii_lc_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5755_pc_cubi_ii_lc_360_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5755_pc_cubi_ii_lc_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5755_pc_cubi_ii_lc_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5755_pc_cubi_ii_lc_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5755_pc_cubi_ii_lc_360_ha2.jpg","original":""},"alt":""}],"productUrl":"/hhpc-dep-core-i9-14900k-64g-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1752,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"other":[{"id":0,"title":"

🎁Tặng ngay FAN ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁Tặng ngay FAN ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"}]},{"id":5789,"productId":5789,"priceUnit":"chiếc","marketPrice":0,"price":317290000,"price_off":"","currency":"vnd","sale_rules":{"price":317290000,"normal_price":317290000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-21 14:16:51","warranty":"theo từng linh kiện","productName":"HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX 5090 32G","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : NVIDIA RTX 5090 32GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":3333,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5791,"productId":5791,"priceUnit":"chiếc","marketPrice":0,"price":431800000,"price_off":"","currency":"vnd","sale_rules":{"price":431800000,"normal_price":431800000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:53:31","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL NVIDIA RTX 5090 32G | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x NVIDIA RTX 5090 32GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot_3.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot_2.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot_1.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_h5.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_h5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_h6.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_h6.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-dual-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":10675,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5818,"productId":5818,"priceUnit":"chiếc","marketPrice":0,"price":273850000,"price_off":"","currency":"vnd","sale_rules":{"price":273850000,"normal_price":273850000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-10 08:52:40","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 7970X | 256G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU: AMD RYZEN THREADRIPPER 7970X UP TO 5.3 GHz | 32 CORE | 64 THREAD

\r\n

MAINBOARD: ASUS PRO WS TRX50-SAGE WIFI

\r\n

TẢN NHIỆT: CUSTOM CHO CPU 7970X

\r\n

RAM: DDR5 SAMSUNG ECC 256GB 4800MHz (64Gx4)

\r\n

SSD: SAMSUNG 990 PRO 1TB + 2TB NVME M.2 PCIE GEN 4x4

\r\n

VGA: GIGABYTE RTX 5090 WINDFORCE OC 32GB GDDR7

\r\n

PSU: ASUS TUF GAMING 1200W 80 PLUS GOLD PCIE 5.0

\r\n

CASE: LIAN LI LANCOOL O11 DYNAMIC EVO RGB BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-dep-ryzen-threadripper-7970x-256g-ddr5-nvidia-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":5611,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6683,"productId":6683,"priceUnit":"chiếc","marketPrice":300000000,"price":301310000,"price_off":0,"currency":"vnd","sale_rules":{"price":301310000,"normal_price":301310000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:54:36","warranty":"theo từng linh kiện","productName":"HH AI PC ĐẸP DUAL RTX 5090 32GB | RYZEN 9 9950X | 128G","productSummary":"

CPU: AMD RYZEN 9 9950X UP 5.7G | 16 CORES | 32 THREADS

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 NEO RGB 128G 6000MHz (2x64G) - TZ5NR - BLACK

\r\n

SSD: SAMSUNG 990 PRO 2TB NVMe M.2 PCIE GEN 4 - RW 7450MB/s

\r\n

VGA: 2x GIGABYTE RTX 5090 WINDFORCE OC 32GB

","package_accessory":"","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha7.jpg","original":""},"alt":""}],"productUrl":"/hh-ai-pc-ryzen-9-9950x-128g-dualrtx-5090-32gb","brand":{"id":0,"name":"","image":"","url":""},"visit":250,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6538,"productId":6538,"priceUnit":"chiếc","marketPrice":190000000,"price":176790000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":176790000,"normal_price":176790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 10:39:23","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 128G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 128GB 6000 MHz (2x64G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt720_ram_d4_14900k_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt720_ram_d4_14900k_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt360_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt360_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt360_ha11.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-128g-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":326,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5843,"productId":5843,"priceUnit":"chiếc","marketPrice":130000000,"price":155090000,"price_off":-19,"currency":"vnd","sale_rules":{"price":155090000,"normal_price":155090000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:17:58","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_anubis_d8.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_anubis_d8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_anubis_lt720_ram_d4_14900k_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_anubis_lt720_ram_d4_14900k_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra9-285k-rtx5090","brand":{"id":0,"name":"","image":"","url":""},"visit":10380,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5866,"productId":5866,"priceUnit":"chiếc","marketPrice":48000000,"price":46750000,"price_off":3,"currency":"vnd","sale_rules":{"price":46750000,"normal_price":46750000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-15 11:34:55","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-7-265kf-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":10972,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5867,"productId":5867,"priceUnit":"chiếc","marketPrice":0,"price":55950000,"price_off":"","currency":"vnd","sale_rules":{"price":55950000,"normal_price":57090000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":304},"lastUpdate":"2025-12-31 16:05:09","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_sale_2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_sale_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_ha11.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":1358,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":304,"pro_id":5867,"title":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 12G","price":55950000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5875,"productId":5875,"priceUnit":"chiếc","marketPrice":55000000,"price":51230000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":51230000,"normal_price":51230000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 10:24:24","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":8315,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5877,"productId":5877,"priceUnit":"chiếc","marketPrice":0,"price":61850000,"price_off":"","currency":"vnd","sale_rules":{"price":61850000,"normal_price":63090000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":303},"lastUpdate":"2025-12-31 16:02:55","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_sale_1.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_sale_1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_sale_1.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_sale_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":198385,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":303,"pro_id":5877,"title":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","price":61850000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5880,"productId":5880,"priceUnit":"chiếc","marketPrice":80000000,"price":75570000,"price_off":6,"currency":"vnd","sale_rules":{"price":75570000,"normal_price":75570000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:08:51","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha6s.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha6s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":3050,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":5881,"productId":5881,"priceUnit":"chiếc","marketPrice":72000000,"price":67870000,"price_off":6,"currency":"vnd","sale_rules":{"price":67870000,"normal_price":67870000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 13:46:59","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-7-265kf-32gb-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1439,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5893,"productId":5893,"priceUnit":"chiếc","marketPrice":58000000,"price":55900000,"price_off":4,"currency":"vnd","sale_rules":{"price":55900000,"normal_price":55900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 16:00:10","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9950x-32g-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":1832,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5916,"productId":5916,"priceUnit":"chiếc","marketPrice":48000000,"price":46610000,"price_off":3,"currency":"vnd","sale_rules":{"price":46610000,"normal_price":46610000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 10:16:05","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 7800X3D | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 7 7800X3D up 5.0GHz | 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-7800x3d-32g-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":2059,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6498,"productId":6498,"priceUnit":"chiếc","marketPrice":0,"price":532150000,"price_off":"","currency":"vnd","sale_rules":{"price":532150000,"normal_price":532150000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:21:56","warranty":"theo từng linh kiện","productName":"HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-rtx-pro-6000","brand":{"id":0,"name":"","image":"","url":""},"visit":328,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5975,"productId":5975,"priceUnit":"chiếc","marketPrice":46000000,"price":45720000,"price_off":1,"currency":"vnd","sale_rules":{"price":45720000,"normal_price":45720000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-30 09:55:27","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-i7-14700kf-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":26049,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5991,"productId":5991,"priceUnit":"chiếc","marketPrice":53000000,"price":53020000,"price_off":0,"currency":"vnd","sale_rules":{"price":53020000,"normal_price":53020000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:49:05","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9950x-32g-ddr5-nvidia-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1623,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5992,"productId":5992,"priceUnit":"chiếc","marketPrice":42000000,"price":41520000,"price_off":1,"currency":"vnd","sale_rules":{"price":41520000,"normal_price":41520000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:46:42","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 7800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 7800X3D up 5.0GHz | 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha2s.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha2s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-7800x3d-32g-ddr5-nvidia-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":2388,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5993,"productId":5993,"priceUnit":"chiếc","marketPrice":0,"price":52100000,"price_off":"","currency":"vnd","sale_rules":{"price":52100000,"normal_price":53150000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":305},"lastUpdate":"2025-12-31 15:45:56","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_sale_3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_sale_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_ha12.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":160075,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":305,"pro_id":5993,"title":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","price":52100000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5995,"productId":5995,"priceUnit":"chiếc","marketPrice":55000000,"price":50400000,"price_off":8,"currency":"vnd","sale_rules":{"price":50400000,"normal_price":50400000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:13:05","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-32g-ddr5-nvidia-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":2565,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6272,"productId":6272,"priceUnit":"chiếc","marketPrice":56000000,"price":53900000,"price_off":4,"currency":"vnd","sale_rules":{"price":53900000,"normal_price":53900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 14:50:56","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 9 9900X up to 5.6 GHz 12 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9900x-32g-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":621,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6188,"productId":6188,"priceUnit":"chiếc","marketPrice":49000000,"price":47710000,"price_off":3,"currency":"vnd","sale_rules":{"price":47710000,"normal_price":47710000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:45:49","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":1809,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6189,"productId":6189,"priceUnit":"chiếc","marketPrice":70000000,"price":66620000,"price_off":5,"currency":"vnd","sale_rules":{"price":66620000,"normal_price":66620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 13:45:20","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1314,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"}]},{"id":6256,"productId":6256,"priceUnit":"chiếc","marketPrice":45000000,"price":43750000,"price_off":3,"currency":"vnd","sale_rules":{"price":43750000,"normal_price":43750000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-15 11:31:19","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-ultr7-265kf-rtx5060-ti","brand":{"id":0,"name":"","image":"","url":""},"visit":2590,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6259,"productId":6259,"priceUnit":"chiếc","marketPrice":0,"price":1021320000,"price_off":"","currency":"vnd","sale_rules":{"price":1021320000,"normal_price":1021320000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:10:16","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 9970X | 256G DDR5 | NVIDIA RTX 5880 ADA 48G","productSummary":"

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORE | 64 THREAD

\r\n

MAINBOARD: GIGABYTE TRX50 AI TOP

\r\n

TẢN NHIỆT: CUSTOM CHO CPU 9970X

\r\n

RAM: DDR5 KINGSTON ECC 256GB 5600MHz (64Gx4)

\r\n

SSD: CORSAIR MP600 PRO XT 8TB NVME M.2 PCIE GEN 4x4

\r\n

SSD: SAMSUNG 990 PRO 4TB NVME M.2 PCIE GEN 4x4

\r\n

HDD: WD ULTRASTAR 12TB 3.5\" SATA

\r\n

VGA: NVIDIA RTX 5880 ADA 48GB GDDR6 (BULK)

\r\n

PSU: SUPER FLOWER LEADEX PLATINUM 2000W - 80 PLUS PLATINUM

\r\n

CASE: SEGOTEP AERIS WS1 ULTRA

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-ryzen-threadripper-9970x-256g-d5-rtx-5880","brand":{"id":0,"name":"","image":"","url":""},"visit":2797,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"other":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6293,"productId":6293,"priceUnit":"chiếc","marketPrice":0,"price":455620000,"price_off":"","currency":"vnd","sale_rules":{"price":455620000,"normal_price":455620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:14:04","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 9970X | 128G DDR5 | DUAL NVIDIA RTX 5090 32G","productSummary":"

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORE | 64 THREAD

\r\n

MAINBOARD: ASUS PRO WS TRX50-SAGE WIFI

\r\n

TẢN NHIỆT: CUSTOM CHO CPU 9970X

\r\n

RAM: DDR5 KINGSTON ECC 128GB 5600MHz (64Gx2)

\r\n

SSD: SAMSUNG 990 PRO 4TB NVME M.2 PCIE GEN 4x4

\r\n

VGA: 2 x GIGABYTE GEFORCE RTX 5090 WINDFORCE OC 32G GDDR7

\r\n

PSU: SUPER FLOWER LEADEX PLATINUM 2000W - 80 PLUS PLATINUM

\r\n

CASE: SEGOTEP AERIS WS1 ULTRA

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha1.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-threadripper-9970x-128g-d5-dual-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":766,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":7,"specialOffer":{"other":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6375,"productId":6375,"priceUnit":"chiếc","marketPrice":0,"price":79220000,"price_off":"","currency":"vnd","sale_rules":{"price":79220000,"normal_price":79220000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:35:46","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP RYZEN 9 9950X | 64G | NVIDIA RTX 5070 12G","productSummary":"

CPU: AMD RYZEN 9 9950X UP 5.7G | 16 CORES | 32 THREADS

\r\n

MAINBOARD: ASROCK X870 STEEL LEGEND WIFI D5

\r\n

TẢN NHIỆT NƯỚC CPU: DEEPCOOL LT720 WHITE

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 64G 6000MHz (2x32G) RGB

\r\n

SSD: SAMSUNG 990 PRO 2TB NVMe M.2 PCIE

\r\n

VGA: COLORFUL IGAME GEFORCE RTX 5070 ULTRA W OC 12G GDDR7

\r\n

PSU: GIGABYTE GP UD850GM 850W 80 PLUS GOLD 

\r\n

CASE: MONTECH KING 95 PRO WHITE

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha2.jpg","original":""},"alt":""}],"productUrl":"/pc-dep-ryzen-9-9950x-64g-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":234,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6376,"productId":6376,"priceUnit":"chiếc","marketPrice":0,"price":80320000,"price_off":"","currency":"vnd","sale_rules":{"price":80320000,"normal_price":80320000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:05:28","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP CORE ULTRA 9 285K | 64G | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU: INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

MAINBOARD: MSI GAMING Z890 PLUS WIFI DDR5

\r\n

TẢN NHIỆT NƯỚC CPU: THERMALRIGHT GRAND VISION 360 ARGB BLACK

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB) BLACK

\r\n

SSD: SAMSUNG 990 PRO 2TB NVMe M.2 PCIE

\r\n

VGA: GIGABYTE RTX 5070 Ti WINDFORCE SFF OC 16G

\r\n

PSU: MSI MAG A850GL 850W - 80 PLUS GOLD

\r\n

CASE: THERMALTAKE VIEW 290 TG ARGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23.jpg","original":""},"alt":""}],"productUrl":"/pc-dep-ultra-9-285k-64g-nvidia-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":310,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6408,"productId":6408,"priceUnit":"chiếc","marketPrice":0,"price":39950000,"price_off":"","currency":"vnd","sale_rules":{"price":39950000,"normal_price":40750000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":322},"lastUpdate":"2025-12-31 14:45:12","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 9700X UP 5.5GHz | 8 CORES | 16 THREADS

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha2s.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha2s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha3s.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha3s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha4s.png","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha4s.png","original":""},"alt":""}],"productUrl":"/pc-ryzen-7-9700x-32g-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1083,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":322,"pro_id":6408,"title":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","price":39950000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6409,"productId":6409,"priceUnit":"chiếc","marketPrice":0,"price":41900000,"price_off":"","currency":"vnd","sale_rules":{"price":41900000,"normal_price":42750000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":321},"lastUpdate":"2025-12-31 14:38:14","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 7 9700X UP 5.5GHz | 8 CORES | 16 THREADS

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha2s.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha2s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha3s.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha3s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha4s.png","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha4s.png","original":""},"alt":""}],"productUrl":"/pc-ryzen-7-9700x-32g-d5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":659,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":321,"pro_id":6409,"title":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5070 12G","price":41900000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6427,"productId":6427,"priceUnit":"chiếc","marketPrice":0,"price":51280000,"price_off":"","currency":"vnd","sale_rules":{"price":51280000,"normal_price":51280000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:27:05","warranty":"theo từng linh kiện","productName":"HHPC WHITE CORE ULTRA 7 265KF | 32G DDR5 | NVIDIA RTX 5060 Ti 16GB","productSummary":"

CPU INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAIN COLORFUL CVN Z890M GAMING FROZEN V20 DDR5

\r\n

TẢN NHIỆT AIO DEEPCOOL MYSTIQUE 360 WHITE

\r\n

RAM DDR5 GSKILL TRIDENT Z5 RGB 32GB 6000 MHz (2x16GB) SILVER

\r\n

SSD MSI M480 SPATIUM PRO 1TB PCIE 4.0 - RW 7400MB/s

\r\n

VGA PALIT RTX 5060 Ti INFINITY 3 16GB GDDR7

\r\n

PSU DEEPCOOL PL750D 750W ATX 3.1 - 80 PLUS BRONZE

\r\n

CASE DEEPCOOL CH260 WHITE

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-white-core-ultra-7-265kf-32g-rx-5060-ti-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":350,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6429,"productId":6429,"priceUnit":"chiếc","marketPrice":0,"price":61220000,"price_off":"","currency":"vnd","sale_rules":{"price":61220000,"normal_price":61220000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 13:51:52","warranty":"theo từng linh kiện","productName":"HHPC RGB CORE ULTRA 7 265KF | 64G DDR5 | NVIDIA RTX 5060 Ti 16GB","productSummary":"

CPU INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAINBOARD MSI PRO Z890-S WIFI DDR5

\r\n

TẢN NHIỆT CPU AIO DEEPCOOL LE360 V2

\r\n

RAM DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB) BLACK

\r\n

SSD TEAMGROUP G50 1TB PCIE Gen4x4 - RW 5000MB/s

\r\n

HDD SEAGATE BARRACUDA 4TB 5400RPM

\r\n

VGA PALIT RTX 5060 Ti INFINITY 3 16GB GDDR7

\r\n

PSU OCYPUS DELTA P750 750W ATX3.1 - PCIe5.1

\r\n

CASE DARK FLASH DY470 BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ga4.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ga4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha3.jpg","original":""},"alt":""}],"productUrl":"/pc-rgb-core-ultra-7-265k-64g-rx-5060-ti-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":323,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"other":[{"id":0,"title":"

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB

\r\n

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB REVERSE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB

\r\n

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB REVERSE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6454,"productId":6454,"priceUnit":"chiếc","marketPrice":140000000,"price":129990000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":129990000,"normal_price":129990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-17 14:20:34","warranty":"36 tháng","productName":"GIGABYTE AI TOP ATOM (ATAGB10-9000 | SSD 4TB Gen5)","productSummary":"

GPU: NVIDIA® GB10 Grace Blackwell Superchip

\r\n

CPU: 20-core Arm,10 Cortex-X925 + 10 Cortex A725

\r\n

Tensor Performance: 1 petaFLOP AI performance

\r\n

System Memory: 128GB LPDDR5x, unified system memory

\r\n

Cổng kết nối: 1 x USB 3.2 Gen 2x2 Type C, 3 x USB 3.2 Gen 2x2 Type-C, 1 x NVIDIA ConnectX-7, 1 x HDMI 2.1a

\r\n

Networking: 10GbE Ethernet, Wi-Fi 7, Bluetooth 5.3

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha2.jpg","original":""},"alt":""}],"productUrl":"/gigabyte-ai-top-atom-4tb","brand":{"id":6,"brand_index":"gigabyte","name":"GIGABYTE","image":"https://hoanghapccdn.com/media/brand/gigabyte.jpg","url":"/brand/gigabyte"},"visit":5335,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6456,"productId":6456,"priceUnit":"chiếc","marketPrice":0,"price":168240000,"price_off":"","currency":"vnd","sale_rules":{"price":168240000,"normal_price":168240000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 14:38:40","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP RYZEN 9 9950X3D | 64G D5 | NVIDIA RTX 5090 32G","productSummary":"

CPU: AMD RYZEN 9 9950X3D UP 5.7GHz | 16 CORES | 32 THREADS

\r\n

MAINBOARD: ASUS TUF X870- PLUS GAMING WIFI DDR5

\r\n

TẢN NHIỆT NƯỚC: THERMALRIGHT WONDER VISION 360 UB ARGB BLACK

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 RGB 64G 6000MHz (2x32G) - TZ5RK - BLACK

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: ASUS TUF GEFORCE RTX 5090 32G GAMING

\r\n

NGUỒN: SUPER FLOWER LEADEX V GOLD PRO 1000W BLACK PCIE 5.0 - 80 PLUS GOLD

\r\n

CASE JONSBO TK-3 BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha6.jpg","original":""},"alt":""}],"productUrl":"/hhpc-dep-ryzen-9-9950x3d-64g-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":434,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL-M12-S BLACK ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL-M12-S BLACK ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6457,"productId":6457,"priceUnit":"chiếc","marketPrice":0,"price":51130000,"price_off":"","currency":"vnd","sale_rules":{"price":51130000,"normal_price":51130000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:25:07","warranty":"theo từng linh kiện","productName":"HHPC WHITE CORE ULTRA 7 265KF | 64G DDR5 | NVIDIA RTX 5070 12GB","productSummary":"

CPU: INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAINBOARD: GIGABYTE Z890 AORUS ELITE WF7 ICE

\r\n

TẢN NHIỆT NƯỚC: THERMALRIGHT GRAND VISION 360 ARGB WHITE

\r\n

RAM: DDR5 CORSAIR DOMINATOR TITANIUM 64G/6000 (2x32G) RGB WHITE

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: COLORFUL IGAME GEFORCE RTX 5070 ULTRA W OC 12GB-V

\r\n

NGUỒN: THERMALTAKE TOUGHPOWER GT 850W SNOW

\r\n

CASE: ART ULTRA HM1 WHITE (ATX)

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-white-ultra-7-265kf-64g-d5-rtx-5070-12gb","brand":{"id":0,"name":"","image":"","url":""},"visit":333,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL- S12W -S ARGB WHITE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL- S12W -S ARGB WHITE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6489,"productId":6489,"priceUnit":"chiếc","marketPrice":0,"price":49900000,"price_off":"","currency":"vnd","sale_rules":{"price":49900000,"normal_price":49900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-05 14:29:35","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 64GB 3200 MHz (2x32G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha4__2_.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha4__2_.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-64g-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":418,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6490,"productId":6490,"priceUnit":"chiếc","marketPrice":60000000,"price":59840000,"price_off":0,"currency":"vnd","sale_rules":{"price":59840000,"normal_price":59840000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-04 15:48:57","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 64GB 3200 MHz (2x32G)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-64g-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":558,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6497,"productId":6497,"priceUnit":"chiếc","marketPrice":0,"price":839300000,"price_off":"","currency":"vnd","sale_rules":{"price":839300000,"normal_price":839300000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:54:28","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX PRO 6000 BLACKWELL 96GB | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha2.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-dual-rtx-pro-6000","brand":{"id":0,"name":"","image":"","url":""},"visit":655,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6500,"productId":6500,"priceUnit":"chiếc","marketPrice":0,"price":5990000,"price_off":"","currency":"vnd","sale_rules":{"price":5990000,"normal_price":5990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-23 14:30:07","warranty":"7 ngày","productName":"HH SERVER - DUAL XEON E5 2676 V3 | 64G | NVIDIA GT 730 2GB - Hàng lướt","productSummary":"

CPU: 2x XEON E5 2676 V3 TURBO 3.3G - 24 CORE / 48 THREAD

\r\n

RAM: 64G ECC REGISTERED DDR3 (4x16G )

\r\n

VGA : NVIDIA GT 730 2GB GDDR3

\r\n

Cấu hình máy chuyên phục vụ chạy giả lập Android Nox Player , Máy ảo VMWare Bluestack...Phục vụ chơi Game nhiều acc như Võ Lâm Truyền Kỳ, Võ Lâm Mobile, MU, Phong Thần , Kiếm Thế...

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5136_pc_gaming_x_ii_ws_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5136_pc_gaming_x_ii_ws_hot.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5136_pc_gaming_x_ii_ws_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5136_pc_gaming_x_ii_ws_hot.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5965_pc_gaming_x_ii_hyper_212_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5965_pc_gaming_x_ii_hyper_212_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5965_pc_gaming_x_ii_hyper_212_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5965_pc_gaming_x_ii_hyper_212_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5965_pc_gaming_x_ii_hyper_212_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5965_pc_gaming_x_ii_hyper_212_ha4.jpg","original":""},"alt":""}],"productUrl":"/hh-server-dual-xeon-e5-2676-v3-64g-gt-730-2gb-hl","brand":{"id":0,"name":"","image":"","url":""},"visit":1258,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":103,"catPath":":103:1","name":"Server, Máy Ảo, Giả Lập","url":"/server-may-ao-gia-lap"}]},{"id":6519,"productId":6519,"priceUnit":"chiếc","marketPrice":63000000,"price":58900000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":58900000,"normal_price":58900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:08:02","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE i9 14900K up 6.0GHz | 24 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-32gb-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":196,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6518,"productId":6518,"priceUnit":"chiếc","marketPrice":57000000,"price":54210000,"price_off":5,"currency":"vnd","sale_rules":{"price":54210000,"normal_price":54210000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:44:33","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":151,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6512,"productId":6512,"priceUnit":"chiếc","marketPrice":0,"price":99990000,"price_off":"","currency":"vnd","sale_rules":{"price":99990000,"normal_price":99990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-08 10:33:19","warranty":"12 tháng","productName":"HH AI PC RYZEN THREADRIPPER PRO 5995WX | 256GB | SSD 2TB","productSummary":"

CPU: AMD RYZEN THREADRIPPER PRO 5995WX UP 4.5 GHz | 64 CORES | 128 THREADS

\r\n

MAINBOARD: ASUS PRO WS WRX80E-SAGE SE WIFI

\r\n

TẢN NHIỆT NƯỚC AIO ENERMAX

\r\n

RAM: DDR4 SAMSUNG ECC 256GB 3200MHz (64Gx4)

\r\n

SSD: SAMSUNG 990 PRO 2TB NVME M.2 PCIE GEN 4x4

\r\n

PSU: SEASONIC TX1600W PRIME - 80 PLUS TITANIUM

\r\n

CASE: ASUS PROART PA602

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha5.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha1.jpg","original":""},"alt":""}],"productUrl":"/ai-pc-ryzen-threadripper-pro-5995-wx-256gb-ssd-2t","brand":{"id":0,"name":"","image":"","url":""},"visit":429,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6621,"productId":6621,"priceUnit":"chiếc","marketPrice":0,"price":55750000,"price_off":"","currency":"vnd","sale_rules":{"price":55750000,"normal_price":56870000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":316},"lastUpdate":"2025-12-09 11:12:08","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_sale_3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_sale_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_sale_4.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_sale_4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_h13.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_h13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kfi_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kfi_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":376,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":316,"pro_id":6621,"title":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 Ti 16G","price":55750000,"quantity":10,"sale_quantity":1,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6539,"productId":6539,"priceUnit":"chiếc","marketPrice":150000000,"price":179980000,"price_off":-20,"currency":"vnd","sale_rules":{"price":179980000,"normal_price":179980000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-14 16:14:13","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 128G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 128GB 6000 MHz (2x64G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-128g-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":387,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6540,"productId":6540,"priceUnit":"chiếc","marketPrice":150000000,"price":181080000,"price_off":-21,"currency":"vnd","sale_rules":{"price":181080000,"normal_price":181080000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:15:40","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 128G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 128GB 6000 MHz (2x64G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra9-285k-128g-rtx5090","brand":{"id":0,"name":"","image":"","url":""},"visit":482,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6541,"productId":6541,"priceUnit":"chiếc","marketPrice":72000000,"price":71900000,"price_off":0,"currency":"vnd","sale_rules":{"price":71900000,"normal_price":71900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-04 10:15:18","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":165,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6542,"productId":6542,"priceUnit":"chiếc","marketPrice":57000000,"price":53920000,"price_off":5,"currency":"vnd","sale_rules":{"price":53920000,"normal_price":53920000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:10:58","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 NVME Gen 4x4

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":203,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6594,"productId":6594,"priceUnit":"chiếc","marketPrice":75000000,"price":74100000,"price_off":1,"currency":"vnd","sale_rules":{"price":74100000,"normal_price":74100000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 10:16:17","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-2000-ada-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":79,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6600,"productId":6600,"priceUnit":"chiếc","marketPrice":100000000,"price":97490000,"price_off":3,"currency":"vnd","sale_rules":{"price":97490000,"normal_price":97490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 09:32:08","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_hhpc_anubis_pro_4fx_ram_rgb_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_hhpc_anubis_pro_4fx_ram_rgb_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt360_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt360_ha12.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":76,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6601,"productId":6601,"priceUnit":"chiếc","marketPrice":82000000,"price":77370000,"price_off":6,"currency":"vnd","sale_rules":{"price":77370000,"normal_price":77370000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:09:52","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 NVME Gen 4x4

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_360_ha13.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_360_ha13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_360_ha9.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":73,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6602,"productId":6602,"priceUnit":"chiếc","marketPrice":99000000,"price":95350000,"price_off":4,"currency":"vnd","sale_rules":{"price":95350000,"normal_price":95350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-04 11:36:46","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":45,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6603,"productId":6603,"priceUnit":"chiếc","marketPrice":96000000,"price":93600000,"price_off":3,"currency":"vnd","sale_rules":{"price":93600000,"normal_price":93600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-04 11:37:57","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE i9 14900K UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha12.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-64g-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":38,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6608,"productId":6608,"priceUnit":"chiếc","marketPrice":0,"price":40150000,"price_off":"","currency":"vnd","sale_rules":{"price":40150000,"normal_price":40940000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":310},"lastUpdate":"2025-12-09 11:13:44","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-32gb-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1377,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":310,"pro_id":6608,"title":"HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5060 Ti 16G","price":40150000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6611,"productId":6611,"priceUnit":"chiếc","marketPrice":45000000,"price":43900000,"price_off":2,"currency":"vnd","sale_rules":{"price":43900000,"normal_price":43900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-05 14:30:05","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G | NVIDIA RTX 5060 8G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 64GB 3200 MHz (2x32G)

\r\n

VGA: NVIDIA RTX 5060 8G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha12.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-64g-rtx-5060-8g","brand":{"id":0,"name":"","image":"","url":""},"visit":351,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6612,"productId":6612,"priceUnit":"chiếc","marketPrice":0,"price":46000000,"price_off":"","currency":"vnd","sale_rules":{"price":46000000,"normal_price":46930000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":314},"lastUpdate":"2025-12-09 11:13:03","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_5060ti_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_5060ti_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_14700kf_5060ti_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_14700kf_5060ti_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_14700kf_5060ti_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_14700kf_5060ti_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_14700kf_5060ti_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_14700kf_5060ti_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":377,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":314,"pro_id":6612,"title":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5060 Ti 16G","price":46000000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6616,"productId":6616,"priceUnit":"chiếc","marketPrice":0,"price":48950000,"price_off":"","currency":"vnd","sale_rules":{"price":48950000,"normal_price":49930000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":315},"lastUpdate":"2025-12-08 14:52:02","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_sale_2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_sale_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_5060ti_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_5060ti_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_h11.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_h11.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":270,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":315,"pro_id":6616,"title":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 12G","price":48950000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6622,"productId":6622,"priceUnit":"chiếc","marketPrice":400000000,"price":382490000,"price_off":4,"currency":"vnd","sale_rules":{"price":382490000,"normal_price":382490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-22 14:11:09","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 128GB DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 128GB 6400 MHz (2x64G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha5.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-ultra-9-285k-128gb-rtx-pro-6000-blackwell-96gb","brand":{"id":0,"name":"","image":"","url":""},"visit":297,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6628,"productId":6628,"priceUnit":"chiếc","marketPrice":0,"price":384350000,"price_off":"","currency":"vnd","sale_rules":{"price":384350000,"normal_price":384350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-22 14:10:39","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN 9 9950X | 128G DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU : AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM : DDR5 128GB 6400 MHz (2x64G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha3.jpg","original":""},"alt":""}],"productUrl":"/hh-ai-pc-ryzen-9-9950x-128g-d5-nvidia-rtx-pro-6000","brand":{"id":0,"name":"","image":"","url":""},"visit":193,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6634,"productId":6634,"priceUnit":"chiếc","marketPrice":170000000,"price":181890000,"price_off":-7.000000000000001,"currency":"vnd","sale_rules":{"price":181890000,"normal_price":181890000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-12 13:20:07","warranty":"theo từng linh kiện","productName":"HHPC ASUS ULTRA 9 285K | 64GB DDR5 | ROG STRIX RTX 5090 32GB","productSummary":"

CPU: INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB)

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: ASUS ROG ASTRAL LC GEFORCE RTX 5090 32GB GDDR7 OC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-asus-ultra-9-285k-64gb-d5-rog-strix-rtx-5090-32gb","brand":{"id":0,"name":"","image":"","url":""},"visit":196,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6636,"productId":6636,"priceUnit":"chiếc","marketPrice":450000000,"price":455600000,"price_off":-1,"currency":"vnd","sale_rules":{"price":455600000,"normal_price":455600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-12 15:14:09","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 9970X | 256GB DDR5 | DUAL RTX 5090 32GB","productSummary":"

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORES | 64 THREADS

\r\n

RAM: DDR5 KINGSTON ECC 256GB 4800MHz (64Gx4)

\r\n

VGA: 2 x ASUS TUF GAMING GEFORCE RTX 5090 32GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-threadripper-9970x-256g-d5-dual-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":166,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6641,"productId":6641,"priceUnit":"chiếc","marketPrice":100000000,"price":95490000,"price_off":5,"currency":"vnd","sale_rules":{"price":95490000,"normal_price":95490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 09:42:17","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":28,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6642,"productId":6642,"priceUnit":"chiếc","marketPrice":72000000,"price":72100000,"price_off":0,"currency":"vnd","sale_rules":{"price":72100000,"normal_price":72100000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 10:56:01","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha11.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":40,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6650,"productId":6650,"priceUnit":"chiếc","marketPrice":107000000,"price":99550000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":99550000,"normal_price":99550000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-18 11:35:59","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d9.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d12.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d11.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d11.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-pro-4000-blackwell-24gb","brand":{"id":0,"name":"","image":"","url":""},"visit":36,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6651,"productId":6651,"priceUnit":"chiếc","marketPrice":108000000,"price":104150000,"price_off":4,"currency":"vnd","sale_rules":{"price":104150000,"normal_price":104150000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:22:34","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d13.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d10.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-d5-rtx-pro-4000-blackwell-24gb","brand":{"id":0,"name":"","image":"","url":""},"visit":172,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6652,"productId":6652,"priceUnit":"chiếc","marketPrice":88000000,"price":81370000,"price_off":8,"currency":"vnd","sale_rules":{"price":81370000,"normal_price":81370000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:07:10","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-pro-4000-blackwell-24gb","brand":{"id":0,"name":"","image":"","url":""},"visit":47,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6655,"productId":6655,"priceUnit":"chiếc","marketPrice":145000000,"price":141490000,"price_off":2,"currency":"vnd","sale_rules":{"price":141490000,"normal_price":141490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 14:46:16","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU: AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM: DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d13.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d10.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":42,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6656,"productId":6656,"priceUnit":"chiếc","marketPrice":120000000,"price":121360000,"price_off":-1,"currency":"vnd","sale_rules":{"price":121360000,"normal_price":121360000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:04:28","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_360_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":47,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6657,"productId":6657,"priceUnit":"chiếc","marketPrice":145000000,"price":139350000,"price_off":4,"currency":"vnd","sale_rules":{"price":139350000,"normal_price":139350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 15:59:08","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d5s.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d9_1.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d9_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d15.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d15.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d14.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d14.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":42,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6658,"productId":6658,"priceUnit":"chiếc","marketPrice":145000000,"price":139490000,"price_off":4,"currency":"vnd","sale_rules":{"price":139490000,"normal_price":139490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 16:14:30","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d9.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d12.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d11.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d11.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":65,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6660,"productId":6660,"priceUnit":"chiếc","marketPrice":145000000,"price":137600000,"price_off":5,"currency":"vnd","sale_rules":{"price":137600000,"normal_price":137600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 10:38:00","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_d5_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_d5_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_14700kf_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_14700kf_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_14700kf_5060ti_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_14700kf_5060ti_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_14700kf_h11.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_14700kf_h11.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-64g-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":50,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6661,"productId":6661,"priceUnit":"chiếc","marketPrice":83000000,"price":77620000,"price_off":6,"currency":"vnd","sale_rules":{"price":77620000,"normal_price":77620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:41:12","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_360_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_360_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_360_ha9.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":49,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6662,"productId":6662,"priceUnit":"chiếc","marketPrice":85000000,"price":81620000,"price_off":4,"currency":"vnd","sale_rules":{"price":81620000,"normal_price":81620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:40:09","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":43,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6663,"productId":6663,"priceUnit":"chiếc","marketPrice":120000000,"price":121610000,"price_off":-1,"currency":"vnd","sale_rules":{"price":121610000,"normal_price":121610000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:39:18","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_360_ha13.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_360_ha13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_360_ha9.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":59,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6667,"productId":6667,"priceUnit":"chiếc","marketPrice":0,"price":43150000,"price_off":"","currency":"vnd","sale_rules":{"price":43150000,"normal_price":43990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":340},"lastUpdate":"2025-12-24 13:51:41","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 64GB (2x32G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_5060ti_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_5060ti_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d9.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d12.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d11.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d5_ha3.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-64gb-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":699,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":340,"pro_id":6667,"title":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5060 Ti 16G","price":43150000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6668,"productId":6668,"priceUnit":"chiếc","marketPrice":0,"price":46100000,"price_off":"","currency":"vnd","sale_rules":{"price":46100000,"normal_price":46990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":341},"lastUpdate":"2025-12-24 14:05:02","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 64GB (2x32G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_14700kf_sale_3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_14700kf_sale_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d13.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d10.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-64gb-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":549,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":341,"pro_id":6668,"title":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 12G","price":46100000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6669,"productId":6669,"priceUnit":"chiếc","marketPrice":0,"price":52850000,"price_off":"","currency":"vnd","sale_rules":{"price":52850000,"normal_price":53890000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":342},"lastUpdate":"2025-12-24 14:12:28","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 64GB (2x32G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_14700kf_sale_4.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_14700kf_sale_4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_14700kf_sale_4.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_14700kf_sale_4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d9_1.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d9_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d15.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d15.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d14.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d14.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-64gb-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":664,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":342,"pro_id":6669,"title":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 Ti 16G","price":52850000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6721,"productId":6721,"priceUnit":"chiếc","marketPrice":280000000,"price":271490000,"price_off":3,"currency":"vnd","sale_rules":{"price":271490000,"normal_price":271490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-21 14:09:42","warranty":"theo từng linh kiện","productName":"HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":26,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6722,"productId":6722,"priceUnit":"chiếc","marketPrice":350000000,"price":322950000,"price_off":8,"currency":"vnd","sale_rules":{"price":322950000,"normal_price":322950000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:53:39","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX PRO 4000 BLACKWELL 24G | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-dual-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":32,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]}] + "list": [{"id":6729,"productId":6729,"priceUnit":"chiếc","marketPrice":600000000,"price":551350000,"price_off":8,"currency":"vnd","sale_rules":{"price":551350000,"normal_price":551350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:47:04","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX PRO 5000 BLACKWELL 48GB | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x NVIDIA RTX PRO 5000 BLACKWELL 48GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6729_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6729_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6729_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6729_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6729_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6729_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-dual-rtx-pro-5000-threadripper-9960x-256gb","brand":{"id":0,"name":"","image":"","url":""},"visit":5,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6730,"productId":6730,"priceUnit":"chiếc","marketPrice":400000000,"price":382690000,"price_off":4,"currency":"vnd","sale_rules":{"price":382690000,"normal_price":382690000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:53:10","warranty":"theo từng linh kiện","productName":"HH AI PC RTX PRO 5000 BLACKWELL 48GB | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : NVIDIA RTX PRO 5000 BLACKWELL 48GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6730_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6730_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6730_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6730_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6730_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6730_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-rtx-pro-5000-threadripper-9960x-256gb","brand":{"id":0,"name":"","image":"","url":""},"visit":2,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6417,"productId":6417,"priceUnit":"chiếc","marketPrice":0,"price":718060000,"price_off":"","currency":"vnd","sale_rules":{"price":718060000,"normal_price":718060000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:22:33","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER PRO 7995WX | 1024GB DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU AMD RYZEN THREADRIPPER PRO 7995WX UP TO 5.1GHz | 96 CORES | 192 THREADS

\r\n

MAINBOARD GIGABYTE TRX50 AI TOP

\r\n

TẢN NHIỆT NƯỚC AIO THERMALTAKE AW420

\r\n

RAM DDR5 SAMSUNG 1024GB (8x128GB) 4800MHz ECC RDIMM

\r\n

SSD SAMSUNG 990 PRO 12TB (3x4TB) M.2 NVME PCIE GEN 4x4 - 7450MB/s

\r\n

HDD WD ULTRASTAR 20TB DC HC555 7200RPM SATA

\r\n

VGA NVIDIA RTX PRO 6000 BLACKWELL 96GB

\r\n

PSU CORSAIR AX1600i 1600W - 80 PLUS TITANIUM

\r\n

CASE AERIS WS1 ULTRA WORKSTATION

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6417_pc_dep_so_25_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6417_pc_dep_so_25_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-ryzen-threadripper-pro-7995wx-1024gb-d5-rtx-pro-6000-blackwell-96gb","brand":{"id":0,"name":"","image":"","url":""},"visit":1665,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá RAM

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá RAM

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6732,"productId":6732,"priceUnit":"chiếc","marketPrice":600000000,"price":523190000,"price_off":13,"currency":"vnd","sale_rules":{"price":523190000,"normal_price":523190000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 14:27:20","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX 5880 ADA 48GB | THREADRIPPER 9960X | 128GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 128GB ECC REGISTERED TỰ SỬA LỖI (2x64G)

\r\n

VGA : 2x NVIDIA RTX 5880 ADA 48GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6732_ai_xeon_2vga_rtx_infinity_revenge_pro_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6732_ai_xeon_2vga_rtx_infinity_revenge_pro_ha3.jpg","original":""},"alt":""}],"productUrl":"/pcai-dual-rtx-5880-ada-48gb-threadripper-9960x-128gb","brand":{"id":0,"name":"","image":"","url":""},"visit":1,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6418,"productId":6418,"priceUnit":"chiếc","marketPrice":0,"price":89120000,"price_off":"","currency":"vnd","sale_rules":{"price":89120000,"normal_price":89120000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:31:18","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP CORE ULTRA 7 265KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16GB","productSummary":"

CPU INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAINBOARD GIGABYTE Z890 AERO G DDR5

\r\n

TẢN NHIỆT NƯỚC CPU DEEPCOOL LT720 WHITE

\r\n

RAM DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB) - WHITE

\r\n

SSD WD BLACK SN770 2TB M.2 NVMe PCIE Gen 4x4 - RW 5150 MB/s

\r\n

HDD WD ULTRASTAR 12TB 3.5 INCH SATA

\r\n

VGA COLORFUL IGAME GEFORCE RTX 5070 Ti ULTRA W OC 16GB-V

\r\n

PSU SUPER FLOWER LEADEX V GOLD PRO 1000W WHITE PCIE 5.0 - 80 PLUS GOLD

\r\n

CASE LIAN LI V100 WHITE

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6418_pc_dep_so_26_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6418_pc_dep_so_26_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-dep-core-ultra-7-265kf-64g-rx-5070-ti-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":237,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6095,"productId":6095,"priceUnit":"chiếc","marketPrice":160000000,"price":151350000,"price_off":5,"currency":"vnd","sale_rules":{"price":151350000,"normal_price":151350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 10:44:11","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6095_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6095_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":1405,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6453,"productId":6453,"priceUnit":"chiếc","marketPrice":135000000,"price":129000000,"price_off":4,"currency":"vnd","sale_rules":{"price":129000000,"normal_price":129000000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-12 13:29:02","warranty":"36 tháng","productName":"MSI EdgeXpert AI Supercomputer Based On Nvidia DGX Spark Platform","productSummary":"

GPU: NVIDIA® Blackwell Architecture

\r\n

CPU: 20 core Arm, 10 Cortex-X925 + 10 Cortex-A725 Arm

\r\n

Tensor Performance: 1000 AI TOPS (FP4, Sparse)

\r\n

System Memory: 128 GB LPDDR5x, unified system memory

\r\n

Cổng kết nối: 4x USB 3.2 Type C, 1x HDMI 2.1a

\r\n

Ethernet: 1x RJ-45 connector 10 GbE

\r\n

Wi-Fi/ Bluetooth: WiFi 7/ BT 5.4

","package_accessory":"","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6453_msi_dgx_spark_platform_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6453_msi_dgx_spark_platform_ha1.jpg","original":""},"alt":""}],"productUrl":"/msi-edgexpert-ai-supercomputer-nvidia-dgx-spark-platform","brand":{"id":7,"brand_index":"msi","name":"MSI","image":"https://hoanghapccdn.com/media/brand/msi.jpg","url":"/brand/msi"},"visit":554,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6421,"productId":6421,"priceUnit":"chiếc","marketPrice":200000000,"price":192990000,"price_off":4,"currency":"vnd","sale_rules":{"price":192990000,"normal_price":192990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-12-31 16:22:02","warranty":"36 tháng","productName":"GIGABYTE AI TOP 100 Z890 | ULTRA 9 285K | 128G D5 | RTX 5090 32G","productSummary":"

CPU: INTEL CORE ULTRA 9 285K

\r\n

MAINBOARD: Z890 AI TOP

\r\n

TẢN NHIỆT AIO: AORUS 360

\r\n

RAM: 128GB (4x32GB) DDR5 U-DIMM

\r\n

SSD: AORUS GEN 4 7300 2TB / AI TOP 100E 320GB

\r\n

VGA: NVIDIA RTX 5090 32G

\r\n

PSU: 1600W 80 PLUS PLATINUM ATX 3.1

","package_accessory":"","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6421_ai_top_100_z890_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6421_ai_top_100_z890_ha3.jpg","original":""},"alt":""}],"productUrl":"/pc-gigabyte-ai-top-100-z890-ultra-9-285k-128g-d5-rtx-5090","brand":{"id":6,"brand_index":"gigabyte","name":"GIGABYTE","image":"https://hoanghapccdn.com/media/brand/gigabyte.jpg","url":"/brand/gigabyte"},"visit":501,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6126,"productId":6126,"priceUnit":"chiếc","marketPrice":55000000,"price":53060000,"price_off":4,"currency":"vnd","sale_rules":{"price":53060000,"normal_price":53060000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:08:59","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6126_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6126_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285-32gb-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":621,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6127,"productId":6127,"priceUnit":"chiếc","marketPrice":63000000,"price":60070000,"price_off":5,"currency":"vnd","sale_rules":{"price":60070000,"normal_price":60070000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:07:33","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6127_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6127_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-32gb-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":798,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6128,"productId":6128,"priceUnit":"chiếc","marketPrice":80000000,"price":83850000,"price_off":-5,"currency":"vnd","sale_rules":{"price":83850000,"normal_price":83850000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:19:33","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 64GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6128_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6128_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-64gb-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1396,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6640,"productId":6640,"priceUnit":"chiếc","marketPrice":72000000,"price":70690000,"price_off":2,"currency":"vnd","sale_rules":{"price":70690000,"normal_price":70690000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-16 15:08:14","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6640_pc_dark_flash_dy470_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6640_pc_dark_flash_dy470_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-64g-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":214,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6349,"productId":6349,"priceUnit":"chiếc","marketPrice":67000000,"price":62610000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":62610000,"normal_price":62610000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-20 13:53:16","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6349_pc_view_290_tg_argb_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6349_pc_view_290_tg_argb_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-32g-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":6038,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6096,"productId":6096,"priceUnit":"chiếc","marketPrice":130000000,"price":153980000,"price_off":-18,"currency":"vnd","sale_rules":{"price":153980000,"normal_price":153980000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-10-23 16:53:06","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6096_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6096_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":2270,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"}]},{"id":5997,"productId":5997,"priceUnit":"chiếc","marketPrice":78000000,"price":71600000,"price_off":8,"currency":"vnd","sale_rules":{"price":71600000,"normal_price":71600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:10:38","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5997_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5997_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":7123,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5998,"productId":5998,"priceUnit":"chiếc","marketPrice":80000000,"price":72850000,"price_off":9,"currency":"vnd","sale_rules":{"price":72850000,"normal_price":72850000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:01:47","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5998_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5998_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1757,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6106,"productId":6106,"priceUnit":"chiếc","marketPrice":0,"price":49050000,"price_off":"","currency":"vnd","sale_rules":{"price":49050000,"normal_price":50040000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":324},"lastUpdate":"2026-01-05 09:50:38","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_d5_sale_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_d5_sale_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_14700k_4080s_ha5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_14700k_4080s_ha5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":844,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":324,"pro_id":6106,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","price":49050000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6125,"productId":6125,"priceUnit":"chiếc","marketPrice":50000000,"price":50120000,"price_off":0,"currency":"vnd","sale_rules":{"price":50120000,"normal_price":50120000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:09:51","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6125_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6125_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-32gb-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":931,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6002,"productId":6002,"priceUnit":"chiếc","marketPrice":80000000,"price":75410000,"price_off":6,"currency":"vnd","sale_rules":{"price":75410000,"normal_price":75410000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:16:40","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6002_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6002_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9950x-32g-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1494,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"}]},{"id":6003,"productId":6003,"priceUnit":"chiếc","marketPrice":70000000,"price":67070000,"price_off":4,"currency":"vnd","sale_rules":{"price":67070000,"normal_price":67070000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 13:52:12","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 7800X3D | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : AMD RYZEN 7 7800X3D up 5.0GHz | 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6003_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6003_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-7800x3d-32g-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1466,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6108,"productId":6108,"priceUnit":"chiếc","marketPrice":0,"price":51000000,"price_off":"","currency":"vnd","sale_rules":{"price":51000000,"normal_price":52040000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":325},"lastUpdate":"2026-01-05 09:49:55","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_d5_sale_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_d5_sale_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_14700k_4080s_ha6s.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_14700k_4080s_ha6s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_ultra_7_ml360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_ultra_7_ml360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6108_pc_endura_ultra_7_ml360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6108_pc_endura_ultra_7_ml360_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":912,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":325,"pro_id":6108,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 12G","price":51000000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6654,"productId":6654,"priceUnit":"chiếc","marketPrice":110000000,"price":101550000,"price_off":8,"currency":"vnd","sale_rules":{"price":101550000,"normal_price":101550000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 14:06:10","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d5s.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d9_1.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d9_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d15.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d15.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6654_pc_anubis_d14.jpg","large":"https://hoanghapccdn.com/media/product/250_6654_pc_anubis_d14.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":55,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6129,"productId":6129,"priceUnit":"chiếc","marketPrice":130000000,"price":149790000,"price_off":-15,"currency":"vnd","sale_rules":{"price":149790000,"normal_price":149790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-03 15:15:04","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285 | 64GB DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285 UP 5.6GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6129_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6129_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285-64gb-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":877,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"}]},{"id":6109,"productId":6109,"priceUnit":"chiếc","marketPrice":0,"price":58800000,"price_off":"","currency":"vnd","sale_rules":{"price":58800000,"normal_price":59980000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":326},"lastUpdate":"2025-12-31 15:36:29","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_d5_sale_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_d5_sale_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_d5_sale_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_d5_sale_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_14700k_4080s_ha4s.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_14700k_4080s_ha4s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_ultra_7_ml360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_ultra_7_ml360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_ultra_7_ml360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_ultra_7_ml360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6109_pc_endura_ultra_7_ml360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6109_pc_endura_ultra_7_ml360_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":2105,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":326,"pro_id":6109,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 Ti 16G","price":58800000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6110,"productId":6110,"priceUnit":"chiếc","marketPrice":0,"price":71050000,"price_off":"","currency":"vnd","sale_rules":{"price":71050000,"normal_price":72480000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":327},"lastUpdate":"2026-01-12 14:07:58","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_d5_sale_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_d5_sale_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_d5_sale_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_14700k_4080s_ha6s.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_14700k_4080s_ha6s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_ultra_7_ml360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_ultra_7_ml360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6110_pc_endura_ultra_7_ml360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6110_pc_endura_ultra_7_ml360_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1802,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":327,"pro_id":6110,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5080 16G","price":71050000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6111,"productId":6111,"priceUnit":"chiếc","marketPrice":0,"price":134350000,"price_off":"","currency":"vnd","sale_rules":{"price":134350000,"normal_price":137090000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":328},"lastUpdate":"2026-01-05 09:47:52","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : AMD RYZEN 7 9800X3D up to 5.2 GHz 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6111_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6111_pc_endura_d5_sale_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6111_pc_endura_d5_sale_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6111_pc_endura_d5_sale_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_14700k_4080s_ha5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_14700k_4080s_ha5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6106_pc_endura_ultra_7_ml360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6106_pc_endura_ultra_7_ml360_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":1229,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":328,"pro_id":6111,"title":"HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5090 32G","price":134350000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6647,"productId":6647,"priceUnit":"chiếc","marketPrice":105000000,"price":97600000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":97600000,"normal_price":97600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-18 10:13:36","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE i9 14900K UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-64g-d5-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":32,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6672,"productId":6672,"priceUnit":"chiếc","marketPrice":58000000,"price":54450000,"price_off":6,"currency":"vnd","sale_rules":{"price":54450000,"normal_price":54450000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-15 11:36:35","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6672_pc_anubis_le360_d5_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6672_pc_anubis_le360_d5_ha11.jpg","original":""},"alt":""}],"productUrl":"/pc-ultr7-265kf-rtx5070-ti","brand":{"id":0,"name":"","image":"","url":""},"visit":168,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6052,"productId":6052,"priceUnit":"chiếc","marketPrice":0,"price":97480000,"price_off":"","currency":"vnd","sale_rules":{"price":97480000,"normal_price":97480000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:18:36","warranty":"theo từng linh kiện","productName":"HHPC KING CORE ULTRA 9 285K | 64G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU: INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

MAINBOARD: ASUS ROG STRIX Z890-F GAMING WIFI

\r\n

TẢN NHIỆT NƯỚC: ASUS PRIME LC360 ARGB LCD

\r\n

RAM: DDR5 TEAMGROUP T-FORCE DELTA RGB 64GB 6000MHz (2x32G)

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: GIGABYTE RTX 5080 WINDFORCE OC SFF 16G GDDR7

\r\n

PSU: ASUS TUF GAMING 1000G 1000W 80 PLUS GOLD

\r\n

CASE: MONTECH KING 95 PRO BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6052_pc_dep_s14_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6052_pc_dep_s14_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-king-core-ultra-9-285k-64g-ddr5-nvidia-rtx-5080","brand":{"id":0,"name":"","image":"","url":""},"visit":957,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":5755,"productId":5755,"priceUnit":"chiếc","marketPrice":0,"price":91700000,"price_off":"","currency":"vnd","sale_rules":{"price":91700000,"normal_price":91700000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:17:52","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP CORE i9 14900K | 64G DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE i9 14900K UP 6.0GHz | 24 CORE | 32 THREAD

\r\n

RAM : DDR5 GSKILL TRIDENT Z5 RGB 64GB (2x32G) 6000MHz WHITE

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

HDD: SEAGATE BARRACUDA 2TB 7200

\r\n

VGA: GIGABYTE RTX 5080 WINDFORCE OC SFF 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5755_pc_cubi_ii_lc_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5755_pc_cubi_ii_lc_360_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5755_pc_cubi_ii_lc_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5755_pc_cubi_ii_lc_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5755_pc_cubi_ii_lc_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5755_pc_cubi_ii_lc_360_ha2.jpg","original":""},"alt":""}],"productUrl":"/hhpc-dep-core-i9-14900k-64g-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1752,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"other":[{"id":0,"title":"

🎁Tặng ngay FAN ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁Tặng ngay FAN ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"}]},{"id":5789,"productId":5789,"priceUnit":"chiếc","marketPrice":0,"price":317290000,"price_off":"","currency":"vnd","sale_rules":{"price":317290000,"normal_price":317290000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-21 14:16:51","warranty":"theo từng linh kiện","productName":"HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX 5090 32G","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : NVIDIA RTX 5090 32GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":3333,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5791,"productId":5791,"priceUnit":"chiếc","marketPrice":0,"price":431800000,"price_off":"","currency":"vnd","sale_rules":{"price":431800000,"normal_price":431800000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:53:31","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL NVIDIA RTX 5090 32G | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x NVIDIA RTX 5090 32GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot_3.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot_2.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_hot_1.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_hot_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_h5.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_h5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5791_pc_aorus_c500_glass_h6.jpg","large":"https://hoanghapccdn.com/media/product/250_5791_pc_aorus_c500_glass_h6.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-dual-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":10675,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5818,"productId":5818,"priceUnit":"chiếc","marketPrice":0,"price":273850000,"price_off":"","currency":"vnd","sale_rules":{"price":273850000,"normal_price":273850000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-10 08:52:40","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 7970X | 256G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU: AMD RYZEN THREADRIPPER 7970X UP TO 5.3 GHz | 32 CORE | 64 THREAD

\r\n

MAINBOARD: ASUS PRO WS TRX50-SAGE WIFI

\r\n

TẢN NHIỆT: CUSTOM CHO CPU 7970X

\r\n

RAM: DDR5 SAMSUNG ECC 256GB 4800MHz (64Gx4)

\r\n

SSD: SAMSUNG 990 PRO 1TB + 2TB NVME M.2 PCIE GEN 4x4

\r\n

VGA: GIGABYTE RTX 5090 WINDFORCE OC 32GB GDDR7

\r\n

PSU: ASUS TUF GAMING 1200W 80 PLUS GOLD PCIE 5.0

\r\n

CASE: LIAN LI LANCOOL O11 DYNAMIC EVO RGB BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5818_pc_d___p_o11_dynamic_evo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5818_pc_d___p_o11_dynamic_evo_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-dep-ryzen-threadripper-7970x-256g-ddr5-nvidia-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":5611,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6683,"productId":6683,"priceUnit":"chiếc","marketPrice":300000000,"price":301310000,"price_off":0,"currency":"vnd","sale_rules":{"price":301310000,"normal_price":301310000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:54:36","warranty":"theo từng linh kiện","productName":"HH AI PC ĐẸP DUAL RTX 5090 32GB | RYZEN 9 9950X | 128G","productSummary":"

CPU: AMD RYZEN 9 9950X UP 5.7G | 16 CORES | 32 THREADS

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 NEO RGB 128G 6000MHz (2x64G) - TZ5NR - BLACK

\r\n

SSD: SAMSUNG 990 PRO 2TB NVMe M.2 PCIE GEN 4 - RW 7450MB/s

\r\n

VGA: 2x GIGABYTE RTX 5090 WINDFORCE OC 32GB

","package_accessory":"","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6683_pc_dep_so_33_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6683_pc_dep_so_33_ha7.jpg","original":""},"alt":""}],"productUrl":"/hh-ai-pc-ryzen-9-9950x-128g-dualrtx-5090-32gb","brand":{"id":0,"name":"","image":"","url":""},"visit":250,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6538,"productId":6538,"priceUnit":"chiếc","marketPrice":190000000,"price":176790000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":176790000,"normal_price":176790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 10:39:23","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 128G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 128GB 6000 MHz (2x64G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt720_ram_d4_14900k_ha3ss.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt720_ram_d4_14900k_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt720_ram_d4_14900k_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt360_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6538_pc_anubis_lt360_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6538_pc_anubis_lt360_ha11.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-128g-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":326,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5843,"productId":5843,"priceUnit":"chiếc","marketPrice":130000000,"price":155090000,"price_off":-19,"currency":"vnd","sale_rules":{"price":155090000,"normal_price":155090000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:17:58","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_anubis_d8.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_anubis_d8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_anubis_lt720_ram_d4_14900k_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_anubis_lt720_ram_d4_14900k_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5843_pc_ai_anubis_lt360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5843_pc_ai_anubis_lt360_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra9-285k-rtx5090","brand":{"id":0,"name":"","image":"","url":""},"visit":10380,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5866,"productId":5866,"priceUnit":"chiếc","marketPrice":48000000,"price":46750000,"price_off":3,"currency":"vnd","sale_rules":{"price":46750000,"normal_price":46750000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-15 11:34:55","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5866_pc_gaming_x_ii_a620_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5866_pc_gaming_x_ii_a620_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-7-265kf-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":10972,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5867,"productId":5867,"priceUnit":"chiếc","marketPrice":0,"price":55950000,"price_off":"","currency":"vnd","sale_rules":{"price":55950000,"normal_price":57090000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":304},"lastUpdate":"2025-12-31 16:05:09","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_sale_2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_sale_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5867_pc_anubis_le360_d5_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5867_pc_anubis_le360_d5_ha11.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":1358,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":304,"pro_id":5867,"title":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 12G","price":55950000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5875,"productId":5875,"priceUnit":"chiếc","marketPrice":55000000,"price":51230000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":51230000,"normal_price":51230000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 10:24:24","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5875_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5875_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":8315,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5877,"productId":5877,"priceUnit":"chiếc","marketPrice":0,"price":61850000,"price_off":"","currency":"vnd","sale_rules":{"price":61850000,"normal_price":63090000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":303},"lastUpdate":"2025-12-31 16:02:55","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_sale_1.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_sale_1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_sale_1.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_sale_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5877_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5877_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":198385,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":303,"pro_id":5877,"title":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5070 Ti 16G","price":61850000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5880,"productId":5880,"priceUnit":"chiếc","marketPrice":80000000,"price":75570000,"price_off":6,"currency":"vnd","sale_rules":{"price":75570000,"normal_price":75570000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 14:08:51","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha6s.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha6s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5880_pc_osiris_lt360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5880_pc_osiris_lt360_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-ddr5-nvidia-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":3050,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":5881,"productId":5881,"priceUnit":"chiếc","marketPrice":72000000,"price":67870000,"price_off":6,"currency":"vnd","sale_rules":{"price":67870000,"normal_price":67870000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 13:46:59","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5881_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5881_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-7-265kf-32gb-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1439,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5893,"productId":5893,"priceUnit":"chiếc","marketPrice":58000000,"price":55900000,"price_off":4,"currency":"vnd","sale_rules":{"price":55900000,"normal_price":55900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 16:00:10","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9950x-32g-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":1832,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5916,"productId":5916,"priceUnit":"chiếc","marketPrice":48000000,"price":46610000,"price_off":3,"currency":"vnd","sale_rules":{"price":46610000,"normal_price":46610000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 10:16:05","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 7800X3D | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 7 7800X3D up 5.0GHz | 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5916_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5916_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-7800x3d-32g-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":2059,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6498,"productId":6498,"priceUnit":"chiếc","marketPrice":0,"price":532150000,"price_off":"","currency":"vnd","sale_rules":{"price":532150000,"normal_price":532150000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:21:56","warranty":"theo từng linh kiện","productName":"HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-rtx-pro-6000","brand":{"id":0,"name":"","image":"","url":""},"visit":328,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":5975,"productId":5975,"priceUnit":"chiếc","marketPrice":46000000,"price":45720000,"price_off":1,"currency":"vnd","sale_rules":{"price":45720000,"normal_price":45720000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-30 09:55:27","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-i7-14700kf-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":26049,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5991,"productId":5991,"priceUnit":"chiếc","marketPrice":53000000,"price":53020000,"price_off":0,"currency":"vnd","sale_rules":{"price":53020000,"normal_price":53020000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:49:05","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9950x-32g-ddr5-nvidia-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1623,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":5992,"productId":5992,"priceUnit":"chiếc","marketPrice":42000000,"price":41520000,"price_off":1,"currency":"vnd","sale_rules":{"price":41520000,"normal_price":41520000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 15:46:42","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 7800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 7800X3D up 5.0GHz | 8 CORE | 16 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha2s.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha2s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5992_pc_gaming_x_ii_620s_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5992_pc_gaming_x_ii_620s_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-7-7800x3d-32g-ddr5-nvidia-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":2388,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5993,"productId":5993,"priceUnit":"chiếc","marketPrice":0,"price":52100000,"price_off":"","currency":"vnd","sale_rules":{"price":52100000,"normal_price":53150000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":305},"lastUpdate":"2025-12-31 15:45:56","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_sale_3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_sale_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_d5_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_d5_ha12.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra-9-285k-32gb-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":160075,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":305,"pro_id":5993,"title":"HHPC ULTRA 9 285K | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","price":52100000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":5995,"productId":5995,"priceUnit":"chiếc","marketPrice":55000000,"price":50400000,"price_off":8,"currency":"vnd","sale_rules":{"price":50400000,"normal_price":50400000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:13:05","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5995_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5995_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-32g-ddr5-nvidia-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":2565,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6272,"productId":6272,"priceUnit":"chiếc","marketPrice":56000000,"price":53900000,"price_off":4,"currency":"vnd","sale_rules":{"price":53900000,"normal_price":53900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-31 14:50:56","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 9 9900X up to 5.6 GHz 12 CORE | 24 THREAD

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6272_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6272_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ryzen-9-9900x-32g-ddr5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":621,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6188,"productId":6188,"priceUnit":"chiếc","marketPrice":49000000,"price":47710000,"price_off":3,"currency":"vnd","sale_rules":{"price":47710000,"normal_price":47710000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:45:49","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6188_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6188_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":1809,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6189,"productId":6189,"priceUnit":"chiếc","marketPrice":70000000,"price":66620000,"price_off":5,"currency":"vnd","sale_rules":{"price":66620000,"normal_price":66620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-12 13:45:20","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 5080 16G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5080 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6189_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6189_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-5080-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1314,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"}]},{"id":6256,"productId":6256,"priceUnit":"chiếc","marketPrice":45000000,"price":43750000,"price_off":3,"currency":"vnd","sale_rules":{"price":43750000,"normal_price":43750000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-15 11:31:19","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_do_hoa.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_do_hoa.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6256_pc_gaming_x_ii_a620_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6256_pc_gaming_x_ii_a620_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-ultr7-265kf-rtx5060-ti","brand":{"id":0,"name":"","image":"","url":""},"visit":2590,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6259,"productId":6259,"priceUnit":"chiếc","marketPrice":0,"price":1021320000,"price_off":"","currency":"vnd","sale_rules":{"price":1021320000,"normal_price":1021320000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:10:16","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 9970X | 256G DDR5 | NVIDIA RTX 5880 ADA 48G","productSummary":"

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORE | 64 THREAD

\r\n

MAINBOARD: GIGABYTE TRX50 AI TOP

\r\n

TẢN NHIỆT: CUSTOM CHO CPU 9970X

\r\n

RAM: DDR5 KINGSTON ECC 256GB 5600MHz (64Gx4)

\r\n

SSD: CORSAIR MP600 PRO XT 8TB NVME M.2 PCIE GEN 4x4

\r\n

SSD: SAMSUNG 990 PRO 4TB NVME M.2 PCIE GEN 4x4

\r\n

HDD: WD ULTRASTAR 12TB 3.5\" SATA

\r\n

VGA: NVIDIA RTX 5880 ADA 48GB GDDR6 (BULK)

\r\n

PSU: SUPER FLOWER LEADEX PLATINUM 2000W - 80 PLUS PLATINUM

\r\n

CASE: SEGOTEP AERIS WS1 ULTRA

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6259_pc_ai_5880_ada_48g_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6259_pc_ai_5880_ada_48g_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-ryzen-threadripper-9970x-256g-d5-rtx-5880","brand":{"id":0,"name":"","image":"","url":""},"visit":2797,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"other":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6293,"productId":6293,"priceUnit":"chiếc","marketPrice":0,"price":455620000,"price_off":"","currency":"vnd","sale_rules":{"price":455620000,"normal_price":455620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:14:04","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 9970X | 128G DDR5 | DUAL NVIDIA RTX 5090 32G","productSummary":"

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORE | 64 THREAD

\r\n

MAINBOARD: ASUS PRO WS TRX50-SAGE WIFI

\r\n

TẢN NHIỆT: CUSTOM CHO CPU 9970X

\r\n

RAM: DDR5 KINGSTON ECC 128GB 5600MHz (64Gx2)

\r\n

SSD: SAMSUNG 990 PRO 4TB NVME M.2 PCIE GEN 4x4

\r\n

VGA: 2 x GIGABYTE GEFORCE RTX 5090 WINDFORCE OC 32G GDDR7

\r\n

PSU: SUPER FLOWER LEADEX PLATINUM 2000W - 80 PLUS PLATINUM

\r\n

CASE: SEGOTEP AERIS WS1 ULTRA

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6293_pc_aeris_dual_5090_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6293_pc_aeris_dual_5090_ha1.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-threadripper-9970x-128g-d5-dual-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":766,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":7,"specialOffer":{"other":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

Giá sản phẩm chưa bao gồm giá tản nhiệt CPU

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6375,"productId":6375,"priceUnit":"chiếc","marketPrice":0,"price":79220000,"price_off":"","currency":"vnd","sale_rules":{"price":79220000,"normal_price":79220000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:35:46","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP RYZEN 9 9950X | 64G | NVIDIA RTX 5070 12G","productSummary":"

CPU: AMD RYZEN 9 9950X UP 5.7G | 16 CORES | 32 THREADS

\r\n

MAINBOARD: ASROCK X870 STEEL LEGEND WIFI D5

\r\n

TẢN NHIỆT NƯỚC CPU: DEEPCOOL LT720 WHITE

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 64G 6000MHz (2x32G) RGB

\r\n

SSD: SAMSUNG 990 PRO 2TB NVMe M.2 PCIE

\r\n

VGA: COLORFUL IGAME GEFORCE RTX 5070 ULTRA W OC 12G GDDR7

\r\n

PSU: GIGABYTE GP UD850GM 850W 80 PLUS GOLD 

\r\n

CASE: MONTECH KING 95 PRO WHITE

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6375_pc_dep_so_22_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6375_pc_dep_so_22_ha2.jpg","original":""},"alt":""}],"productUrl":"/pc-dep-ryzen-9-9950x-64g-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":234,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6376,"productId":6376,"priceUnit":"chiếc","marketPrice":0,"price":80320000,"price_off":"","currency":"vnd","sale_rules":{"price":80320000,"normal_price":80320000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 15:05:28","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP CORE ULTRA 9 285K | 64G | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU: INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

MAINBOARD: MSI GAMING Z890 PLUS WIFI DDR5

\r\n

TẢN NHIỆT NƯỚC CPU: THERMALRIGHT GRAND VISION 360 ARGB BLACK

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB) BLACK

\r\n

SSD: SAMSUNG 990 PRO 2TB NVMe M.2 PCIE

\r\n

VGA: GIGABYTE RTX 5070 Ti WINDFORCE SFF OC 16G

\r\n

PSU: MSI MAG A850GL 850W - 80 PLUS GOLD

\r\n

CASE: THERMALTAKE VIEW 290 TG ARGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6376_pc_dep_so_23.jpg","large":"https://hoanghapccdn.com/media/product/250_6376_pc_dep_so_23.jpg","original":""},"alt":""}],"productUrl":"/pc-dep-ultra-9-285k-64g-nvidia-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":310,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6408,"productId":6408,"priceUnit":"chiếc","marketPrice":0,"price":39950000,"price_off":"","currency":"vnd","sale_rules":{"price":39950000,"normal_price":40750000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":322},"lastUpdate":"2025-12-31 14:45:12","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : AMD RYZEN 7 9700X UP 5.5GHz | 8 CORES | 16 THREADS

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha2s.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha2s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha3s.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha3s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6408_pc_gaming_x_ii_620s_d5_ha4s.png","large":"https://hoanghapccdn.com/media/product/250_6408_pc_gaming_x_ii_620s_d5_ha4s.png","original":""},"alt":""}],"productUrl":"/pc-ryzen-7-9700x-32g-d5-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1083,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":322,"pro_id":6408,"title":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5060 Ti 16G","price":39950000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6409,"productId":6409,"priceUnit":"chiếc","marketPrice":0,"price":41900000,"price_off":"","currency":"vnd","sale_rules":{"price":41900000,"normal_price":42750000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":321},"lastUpdate":"2025-12-31 14:38:14","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5070 12G","productSummary":"

CPU : AMD RYZEN 7 9700X UP 5.5GHz | 8 CORES | 16 THREADS

\r\n

RAM : DDR5 32GB 6000Mhz (2x16GB)

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha2s.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha2s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha3s.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha3s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6409_pc_gaming_x_ii_620s_d5_ha4s.png","large":"https://hoanghapccdn.com/media/product/250_6409_pc_gaming_x_ii_620s_d5_ha4s.png","original":""},"alt":""}],"productUrl":"/pc-ryzen-7-9700x-32g-d5-nvidia-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":659,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":321,"pro_id":6409,"title":"HHPC RYZEN 7 9700X | 32G DDR5 | NVIDIA RTX 5070 12G","price":41900000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6427,"productId":6427,"priceUnit":"chiếc","marketPrice":0,"price":51280000,"price_off":"","currency":"vnd","sale_rules":{"price":51280000,"normal_price":51280000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:27:05","warranty":"theo từng linh kiện","productName":"HHPC WHITE CORE ULTRA 7 265KF | 32G DDR5 | NVIDIA RTX 5060 Ti 16GB","productSummary":"

CPU INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAIN COLORFUL CVN Z890M GAMING FROZEN V20 DDR5

\r\n

TẢN NHIỆT AIO DEEPCOOL MYSTIQUE 360 WHITE

\r\n

RAM DDR5 GSKILL TRIDENT Z5 RGB 32GB 6000 MHz (2x16GB) SILVER

\r\n

SSD MSI M480 SPATIUM PRO 1TB PCIE 4.0 - RW 7400MB/s

\r\n

VGA PALIT RTX 5060 Ti INFINITY 3 16GB GDDR7

\r\n

PSU DEEPCOOL PL750D 750W ATX 3.1 - 80 PLUS BRONZE

\r\n

CASE DEEPCOOL CH260 WHITE

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6427_pc_dep_so_27_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6427_pc_dep_so_27_ha4.jpg","original":""},"alt":""}],"productUrl":"/pc-white-core-ultra-7-265kf-32g-rx-5060-ti-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":350,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6429,"productId":6429,"priceUnit":"chiếc","marketPrice":0,"price":61220000,"price_off":"","currency":"vnd","sale_rules":{"price":61220000,"normal_price":61220000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 13:51:52","warranty":"theo từng linh kiện","productName":"HHPC RGB CORE ULTRA 7 265KF | 64G DDR5 | NVIDIA RTX 5060 Ti 16GB","productSummary":"

CPU INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAINBOARD MSI PRO Z890-S WIFI DDR5

\r\n

TẢN NHIỆT CPU AIO DEEPCOOL LE360 V2

\r\n

RAM DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB) BLACK

\r\n

SSD TEAMGROUP G50 1TB PCIE Gen4x4 - RW 5000MB/s

\r\n

HDD SEAGATE BARRACUDA 4TB 5400RPM

\r\n

VGA PALIT RTX 5060 Ti INFINITY 3 16GB GDDR7

\r\n

PSU OCYPUS DELTA P750 750W ATX3.1 - PCIe5.1

\r\n

CASE DARK FLASH DY470 BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ga4.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ga4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6429_pc_dep_so_28_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6429_pc_dep_so_28_ha3.jpg","original":""},"alt":""}],"productUrl":"/pc-rgb-core-ultra-7-265k-64g-rx-5060-ti-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":323,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":9,"specialOffer":{"other":[{"id":0,"title":"

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB

\r\n

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB REVERSE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB

\r\n

🎁 FAN CASE XIGMATEK INFINITY PRO 2 RGB REVERSE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6454,"productId":6454,"priceUnit":"chiếc","marketPrice":140000000,"price":129990000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":129990000,"normal_price":129990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-17 14:20:34","warranty":"36 tháng","productName":"GIGABYTE AI TOP ATOM (ATAGB10-9000 | SSD 4TB Gen5)","productSummary":"

GPU: NVIDIA® GB10 Grace Blackwell Superchip

\r\n

CPU: 20-core Arm,10 Cortex-X925 + 10 Cortex A725

\r\n

Tensor Performance: 1 petaFLOP AI performance

\r\n

System Memory: 128GB LPDDR5x, unified system memory

\r\n

Cổng kết nối: 1 x USB 3.2 Gen 2x2 Type C, 3 x USB 3.2 Gen 2x2 Type-C, 1 x NVIDIA ConnectX-7, 1 x HDMI 2.1a

\r\n

Networking: 10GbE Ethernet, Wi-Fi 7, Bluetooth 5.3

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6454_gigabyte_ai_top_atom__ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6454_gigabyte_ai_top_atom__ha2.jpg","original":""},"alt":""}],"productUrl":"/gigabyte-ai-top-atom-4tb","brand":{"id":6,"brand_index":"gigabyte","name":"GIGABYTE","image":"https://hoanghapccdn.com/media/brand/gigabyte.jpg","url":"/brand/gigabyte"},"visit":5335,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6456,"productId":6456,"priceUnit":"chiếc","marketPrice":0,"price":168240000,"price_off":"","currency":"vnd","sale_rules":{"price":168240000,"normal_price":168240000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-26 14:38:40","warranty":"theo từng linh kiện","productName":"HHPC ĐẸP RYZEN 9 9950X3D | 64G D5 | NVIDIA RTX 5090 32G","productSummary":"

CPU: AMD RYZEN 9 9950X3D UP 5.7GHz | 16 CORES | 32 THREADS

\r\n

MAINBOARD: ASUS TUF X870- PLUS GAMING WIFI DDR5

\r\n

TẢN NHIỆT NƯỚC: THERMALRIGHT WONDER VISION 360 UB ARGB BLACK

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 RGB 64G 6000MHz (2x32G) - TZ5RK - BLACK

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: ASUS TUF GEFORCE RTX 5090 32G GAMING

\r\n

NGUỒN: SUPER FLOWER LEADEX V GOLD PRO 1000W BLACK PCIE 5.0 - 80 PLUS GOLD

\r\n

CASE JONSBO TK-3 BLACK

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6456_pc_dep_so_29_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6456_pc_dep_so_29_ha6.jpg","original":""},"alt":""}],"productUrl":"/hhpc-dep-ryzen-9-9950x3d-64g-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":434,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL-M12-S BLACK ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL-M12-S BLACK ARGB

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6457,"productId":6457,"priceUnit":"chiếc","marketPrice":0,"price":51130000,"price_off":"","currency":"vnd","sale_rules":{"price":51130000,"normal_price":51130000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:25:07","warranty":"theo từng linh kiện","productName":"HHPC WHITE CORE ULTRA 7 265KF | 64G DDR5 | NVIDIA RTX 5070 12GB","productSummary":"

CPU: INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

MAINBOARD: GIGABYTE Z890 AORUS ELITE WF7 ICE

\r\n

TẢN NHIỆT NƯỚC: THERMALRIGHT GRAND VISION 360 ARGB WHITE

\r\n

RAM: DDR5 CORSAIR DOMINATOR TITANIUM 64G/6000 (2x32G) RGB WHITE

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: COLORFUL IGAME GEFORCE RTX 5070 ULTRA W OC 12GB-V

\r\n

NGUỒN: THERMALTAKE TOUGHPOWER GT 850W SNOW

\r\n

CASE: ART ULTRA HM1 WHITE (ATX)

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6457_pc_dep_so_30_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6457_pc_dep_so_30_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-white-ultra-7-265kf-64g-d5-rtx-5070-12gb","brand":{"id":0,"name":"","image":"","url":""},"visit":333,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL- S12W -S ARGB WHITE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 FAN THERMALRIGHT TL- S12W -S ARGB WHITE

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6489,"productId":6489,"priceUnit":"chiếc","marketPrice":0,"price":49900000,"price_off":"","currency":"vnd","sale_rules":{"price":49900000,"normal_price":49900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-05 14:29:35","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 64GB 3200 MHz (2x32G)

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha4__2_.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha4__2_.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6489_pc_osiris_lt360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6489_pc_osiris_lt360_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-64g-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":418,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6490,"productId":6490,"priceUnit":"chiếc","marketPrice":60000000,"price":59840000,"price_off":0,"currency":"vnd","sale_rules":{"price":59840000,"normal_price":59840000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-04 15:48:57","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 64GB 3200 MHz (2x32G)

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6490_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6490_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-64g-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":558,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6497,"productId":6497,"priceUnit":"chiếc","marketPrice":0,"price":839300000,"price_off":"","currency":"vnd","sale_rules":{"price":839300000,"normal_price":839300000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:54:28","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX PRO 6000 BLACKWELL 96GB | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6497_aorus_c500_glass_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6497_aorus_c500_glass_ha2.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-dual-rtx-pro-6000","brand":{"id":0,"name":"","image":"","url":""},"visit":655,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6500,"productId":6500,"priceUnit":"chiếc","marketPrice":0,"price":5990000,"price_off":"","currency":"vnd","sale_rules":{"price":5990000,"normal_price":5990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-23 14:30:07","warranty":"7 ngày","productName":"HH SERVER - DUAL XEON E5 2676 V3 | 64G | NVIDIA GT 730 2GB - Hàng lướt","productSummary":"

CPU: 2x XEON E5 2676 V3 TURBO 3.3G - 24 CORE / 48 THREAD

\r\n

RAM: 64G ECC REGISTERED DDR3 (4x16G )

\r\n

VGA : NVIDIA GT 730 2GB GDDR3

\r\n

Cấu hình máy chuyên phục vụ chạy giả lập Android Nox Player , Máy ảo VMWare Bluestack...Phục vụ chơi Game nhiều acc như Võ Lâm Truyền Kỳ, Võ Lâm Mobile, MU, Phong Thần , Kiếm Thế...

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5136_pc_gaming_x_ii_ws_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5136_pc_gaming_x_ii_ws_hot.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5136_pc_gaming_x_ii_ws_hot.jpg","large":"https://hoanghapccdn.com/media/product/250_5136_pc_gaming_x_ii_ws_hot.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5965_pc_gaming_x_ii_hyper_212_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5965_pc_gaming_x_ii_hyper_212_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5965_pc_gaming_x_ii_hyper_212_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5965_pc_gaming_x_ii_hyper_212_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5965_pc_gaming_x_ii_hyper_212_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5965_pc_gaming_x_ii_hyper_212_ha4.jpg","original":""},"alt":""}],"productUrl":"/hh-server-dual-xeon-e5-2676-v3-64g-gt-730-2gb-hl","brand":{"id":0,"name":"","image":"","url":""},"visit":1258,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":103,"catPath":":103:1","name":"Server, Máy Ảo, Giả Lập","url":"/server-may-ao-gia-lap"}]},{"id":6519,"productId":6519,"priceUnit":"chiếc","marketPrice":63000000,"price":58900000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":58900000,"normal_price":58900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 11:08:02","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE i9 14900K up 6.0GHz | 24 CORE | 32 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6519_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6519_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-32gb-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":196,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6518,"productId":6518,"priceUnit":"chiếc","marketPrice":57000000,"price":54210000,"price_off":5,"currency":"vnd","sale_rules":{"price":54210000,"normal_price":54210000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:44:33","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6518_pc_anubis_astrobeat_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6518_pc_anubis_astrobeat_360_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":151,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6512,"productId":6512,"priceUnit":"chiếc","marketPrice":0,"price":99990000,"price_off":"","currency":"vnd","sale_rules":{"price":99990000,"normal_price":99990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-08 10:33:19","warranty":"12 tháng","productName":"HH AI PC RYZEN THREADRIPPER PRO 5995WX | 256GB | SSD 2TB","productSummary":"

CPU: AMD RYZEN THREADRIPPER PRO 5995WX UP 4.5 GHz | 64 CORES | 128 THREADS

\r\n

MAINBOARD: ASUS PRO WS WRX80E-SAGE SE WIFI

\r\n

TẢN NHIỆT NƯỚC AIO ENERMAX

\r\n

RAM: DDR4 SAMSUNG ECC 256GB 3200MHz (64Gx4)

\r\n

SSD: SAMSUNG 990 PRO 2TB NVME M.2 PCIE GEN 4x4

\r\n

PSU: SEASONIC TX1600W PRIME - 80 PLUS TITANIUM

\r\n

CASE: ASUS PROART PA602

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha5.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6512_proart_pa602_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6512_proart_pa602_ha1.jpg","original":""},"alt":""}],"productUrl":"/ai-pc-ryzen-threadripper-pro-5995-wx-256gb-ssd-2t","brand":{"id":0,"name":"","image":"","url":""},"visit":429,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6621,"productId":6621,"priceUnit":"chiếc","marketPrice":0,"price":55750000,"price_off":"","currency":"vnd","sale_rules":{"price":55750000,"normal_price":56870000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":316},"lastUpdate":"2025-12-09 11:12:08","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA : NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_sale_3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_sale_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_sale_4.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_sale_4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kf_h13.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kf_h13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6621_pc_anubis_14700kfi_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6621_pc_anubis_14700kfi_ha10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":376,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":316,"pro_id":6621,"title":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 Ti 16G","price":55750000,"quantity":10,"sale_quantity":1,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6539,"productId":6539,"priceUnit":"chiếc","marketPrice":150000000,"price":179980000,"price_off":-20,"currency":"vnd","sale_rules":{"price":179980000,"normal_price":179980000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-11-14 16:14:13","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 128G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 128GB 6000 MHz (2x64G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5991_pc_anubis_le360_k_logo_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_5991_pc_anubis_le360_k_logo_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-128g-d5-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":387,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6540,"productId":6540,"priceUnit":"chiếc","marketPrice":150000000,"price":181080000,"price_off":-21,"currency":"vnd","sale_rules":{"price":181080000,"normal_price":181080000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:15:40","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 128G DDR5 | NVIDIA RTX 5090 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORE | 24 THREAD

\r\n

RAM : DDR5 128GB 6000 MHz (2x64G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA: NVIDIA RTX 5090 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5993_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_5993_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/hhpc-ultra9-285k-128g-rtx5090","brand":{"id":0,"name":"","image":"","url":""},"visit":482,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6541,"productId":6541,"priceUnit":"chiếc","marketPrice":72000000,"price":71900000,"price_off":0,"currency":"vnd","sale_rules":{"price":71900000,"normal_price":71900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-04 10:15:18","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6135_pc_anubis_le360_k_logo_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6135_pc_anubis_le360_k_logo_ha11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6009_pc_anubis_le360_k_logo_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6009_pc_anubis_le360_k_logo_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":165,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6542,"productId":6542,"priceUnit":"chiếc","marketPrice":57000000,"price":53920000,"price_off":5,"currency":"vnd","sale_rules":{"price":53920000,"normal_price":53920000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:10:58","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 NVME Gen 4x4

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6542_pc_anubis_astrobeat_360_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6542_pc_anubis_astrobeat_360_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":203,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6594,"productId":6594,"priceUnit":"chiếc","marketPrice":75000000,"price":74100000,"price_off":1,"currency":"vnd","sale_rules":{"price":74100000,"normal_price":74100000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 10:16:17","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5893_pc_anubis_le360_k_logo_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5893_pc_anubis_le360_k_logo_ha7.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-2000-ada-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":79,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6600,"productId":6600,"priceUnit":"chiếc","marketPrice":100000000,"price":97490000,"price_off":3,"currency":"vnd","sale_rules":{"price":97490000,"normal_price":97490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 09:32:08","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : AMD RYZEN 9 9950X up to 5.7 GHz 16 CORE | 32 THREAD

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt720_ram_d4_14900k_ha4ss.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_hhpc_anubis_pro_4fx_ram_rgb_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_hhpc_anubis_pro_4fx_ram_rgb_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6600_pc_anubis_lt360_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6600_pc_anubis_lt360_ha12.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":76,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6601,"productId":6601,"priceUnit":"chiếc","marketPrice":82000000,"price":77370000,"price_off":6,"currency":"vnd","sale_rules":{"price":77370000,"normal_price":77370000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:09:52","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

SSD: 1TB M.2 NVME Gen 4x4

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_360_ha13.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_360_ha13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6601_pc_anubis_astrobeat_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6601_pc_anubis_astrobeat_360_ha9.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":73,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6602,"productId":6602,"priceUnit":"chiếc","marketPrice":99000000,"price":95350000,"price_off":4,"currency":"vnd","sale_rules":{"price":95350000,"normal_price":95350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-04 11:36:46","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6602_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6602_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":45,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6603,"productId":6603,"priceUnit":"chiếc","marketPrice":96000000,"price":93600000,"price_off":3,"currency":"vnd","sale_rules":{"price":93600000,"normal_price":93600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-04 11:37:57","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE i9 14900K UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

SSD: 1TB M.2 2280 PCIe 4.0 NVMe

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6603_pc_anubis_le360_d5_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6603_pc_anubis_le360_d5_ha12.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-64g-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":38,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6608,"productId":6608,"priceUnit":"chiếc","marketPrice":0,"price":40150000,"price_off":"","currency":"vnd","sale_rules":{"price":40150000,"normal_price":40940000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":310},"lastUpdate":"2025-12-09 11:13:44","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6608_pc_anubis_14700kf_5060ti_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6608_pc_anubis_14700kf_5060ti_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-32gb-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":1377,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":310,"pro_id":6608,"title":"HHPC CORE i7 14700KF | 32GB | NVIDIA RTX 5060 Ti 16G","price":40150000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6611,"productId":6611,"priceUnit":"chiếc","marketPrice":45000000,"price":43900000,"price_off":2,"currency":"vnd","sale_rules":{"price":43900000,"normal_price":43900000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-05 14:30:05","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G | NVIDIA RTX 5060 8G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 64GB 3200 MHz (2x32G)

\r\n

VGA: NVIDIA RTX 5060 8G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6611_pc_osiris_lt360_5080_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6611_pc_osiris_lt360_5080_ha12.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-64g-rtx-5060-8g","brand":{"id":0,"name":"","image":"","url":""},"visit":351,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"other":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 TẶNG BỘ KHUNG CHỐNG CONG CPU THERMALRIGHT SK 1700

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"}]},{"id":6612,"productId":6612,"priceUnit":"chiếc","marketPrice":0,"price":46000000,"price_off":"","currency":"vnd","sale_rules":{"price":46000000,"normal_price":46930000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":314},"lastUpdate":"2025-12-09 11:13:03","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 3FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_5060ti_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_5060ti_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_14700kf_5060ti_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_14700kf_5060ti_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_14700kf_5060ti_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_14700kf_5060ti_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6612_pc_anubis_14700kf_5060ti_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6612_pc_anubis_14700kf_5060ti_ha9.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":377,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":314,"pro_id":6612,"title":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5060 Ti 16G","price":46000000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6616,"productId":6616,"priceUnit":"chiếc","marketPrice":0,"price":48950000,"price_off":"","currency":"vnd","sale_rules":{"price":48950000,"normal_price":49930000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":315},"lastUpdate":"2025-12-08 14:52:02","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR4 32GB (2x16G) 3200 MHz

\r\n

VGA : NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_sale_2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_sale_2.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_sale_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_5060ti_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_5060ti_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6616_pc_anubis_14700kf_h11.jpg","large":"https://hoanghapccdn.com/media/product/250_6616_pc_anubis_14700kf_h11.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i9-14900kf-32g-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":270,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":315,"pro_id":6616,"title":"HHPC CORE i9 14900KF | 32G | NVIDIA RTX 5070 12G","price":48950000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315}],"categories":[{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"}]},{"id":6622,"productId":6622,"priceUnit":"chiếc","marketPrice":400000000,"price":382490000,"price_off":4,"currency":"vnd","sale_rules":{"price":382490000,"normal_price":382490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-22 14:11:09","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 128GB DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 128GB 6400 MHz (2x64G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6622_s370_ws_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6622_s370_ws_ha5.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-ultra-9-285k-128gb-rtx-pro-6000-blackwell-96gb","brand":{"id":0,"name":"","image":"","url":""},"visit":297,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6628,"productId":6628,"priceUnit":"chiếc","marketPrice":0,"price":384350000,"price_off":"","currency":"vnd","sale_rules":{"price":384350000,"normal_price":384350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-22 14:10:39","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN 9 9950X | 128G DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB","productSummary":"

CPU : AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM : DDR5 128GB 6400 MHz (2x64G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 6000 BLACKWELL 96GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6628_s370_ws_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6628_s370_ws_ha3.jpg","original":""},"alt":""}],"productUrl":"/hh-ai-pc-ryzen-9-9950x-128g-d5-nvidia-rtx-pro-6000","brand":{"id":0,"name":"","image":"","url":""},"visit":193,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6634,"productId":6634,"priceUnit":"chiếc","marketPrice":170000000,"price":181890000,"price_off":-7.000000000000001,"currency":"vnd","sale_rules":{"price":181890000,"normal_price":181890000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-12 13:20:07","warranty":"theo từng linh kiện","productName":"HHPC ASUS ULTRA 9 285K | 64GB DDR5 | ROG STRIX RTX 5090 32GB","productSummary":"

CPU: INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM: DDR5 GSKILL TRIDENT Z5 RGB 64GB 6000MHz (2x32GB)

\r\n

SSD: SAMSUNG 990 PRO 1TB NVMe M.2 PCIE

\r\n

VGA: ASUS ROG ASTRAL LC GEFORCE RTX 5090 32GB GDDR7 OC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6634_rog_hyperion_gr701_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6634_rog_hyperion_gr701_ha4.jpg","original":""},"alt":""}],"productUrl":"/hhpc-asus-ultra-9-285k-64gb-d5-rog-strix-rtx-5090-32gb","brand":{"id":0,"name":"","image":"","url":""},"visit":196,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"},{"id":167,"catPath":":167:1","name":"PC Video Editing","url":"/pc-edit-render-video"},{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":171,"catPath":":171:1","name":"PC Rendering","url":"/hhpc-3d-render"},{"id":255,"catPath":":255:1","name":"PC Visualization","url":"/pc-visualization"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6636,"productId":6636,"priceUnit":"chiếc","marketPrice":450000000,"price":455600000,"price_off":-1,"currency":"vnd","sale_rules":{"price":455600000,"normal_price":455600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-12 15:14:09","warranty":"theo từng linh kiện","productName":"HH AI PC RYZEN THREADRIPPER 9970X | 256GB DDR5 | DUAL RTX 5090 32GB","productSummary":"

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORES | 64 THREADS

\r\n

RAM: DDR5 KINGSTON ECC 256GB 4800MHz (64Gx4)

\r\n

VGA: 2 x ASUS TUF GAMING GEFORCE RTX 5090 32GB GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5711_aeris_ws1_ultra_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5711_aeris_ws1_ultra_ha1.jpg","original":""},"alt":""}],"productUrl":"/pc-ai-threadripper-9970x-256g-d5-dual-rtx-5090-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":166,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"},{"id":238,"catPath":":238:1","name":"PC Đẹp","url":"/pc-dep"}]},{"id":6641,"productId":6641,"priceUnit":"chiếc","marketPrice":100000000,"price":95490000,"price_off":5,"currency":"vnd","sale_rules":{"price":95490000,"normal_price":95490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 09:42:17","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6641_pc_anubis_le360_d5_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6641_pc_anubis_le360_d5_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":28,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6642,"productId":6642,"priceUnit":"chiếc","marketPrice":72000000,"price":72100000,"price_off":0,"currency":"vnd","sale_rules":{"price":72100000,"normal_price":72100000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-17 10:56:01","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX 2000 ADA 16GB","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX 2000 ADA 16GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6642_pc_anubis_le360_d5_ha11.jpg","large":"https://hoanghapccdn.com/media/product/250_6642_pc_anubis_le360_d5_ha11.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-2000-ada-16gb","brand":{"id":0,"name":"","image":"","url":""},"visit":40,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6650,"productId":6650,"priceUnit":"chiếc","marketPrice":107000000,"price":99550000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":99550000,"normal_price":99550000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-18 11:35:59","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d9.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d12.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6650_pc_anubis_d11.jpg","large":"https://hoanghapccdn.com/media/product/250_6650_pc_anubis_d11.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-pro-4000-blackwell-24gb","brand":{"id":0,"name":"","image":"","url":""},"visit":36,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6651,"productId":6651,"priceUnit":"chiếc","marketPrice":108000000,"price":104150000,"price_off":4,"currency":"vnd","sale_rules":{"price":104150000,"normal_price":104150000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-29 13:22:34","warranty":"theo từng linh kiện","productName":"HH AI PC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d13.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6651_pc_anubis_d10.jpg","large":"https://hoanghapccdn.com/media/product/250_6651_pc_anubis_d10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-d5-rtx-pro-4000-blackwell-24gb","brand":{"id":0,"name":"","image":"","url":""},"visit":172,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6652,"productId":6652,"priceUnit":"chiếc","marketPrice":88000000,"price":81370000,"price_off":8,"currency":"vnd","sale_rules":{"price":81370000,"normal_price":81370000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:07:10","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6652_pc_anubis_astrobeat_360_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6652_pc_anubis_astrobeat_360_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-pro-4000-blackwell-24gb","brand":{"id":0,"name":"","image":"","url":""},"visit":47,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6655,"productId":6655,"priceUnit":"chiếc","marketPrice":145000000,"price":141490000,"price_off":2,"currency":"vnd","sale_rules":{"price":141490000,"normal_price":141490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 14:46:16","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9950X | 64G DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU: AMD RYZEN 9 9950X UP 5.7 GHz 16 CORES | 32 THREADS

\r\n

RAM: DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d6.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d13.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6655_pc_anubis_d10.jpg","large":"https://hoanghapccdn.com/media/product/250_6655_pc_anubis_d10.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9950x-64g-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":42,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6656,"productId":6656,"priceUnit":"chiếc","marketPrice":120000000,"price":121360000,"price_off":-1,"currency":"vnd","sale_rules":{"price":121360000,"normal_price":121360000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 11:04:28","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 7 265KF | 32GB DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE ULTRA 7 265KF UP 5.5GHz | 20 CORES | 20 THREADS

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_kh__ng_logo_h2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6656_pc_anubis_astrobeat_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6656_pc_anubis_astrobeat_360_ha8.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-7-265kf-32gb-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":47,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"},{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6657,"productId":6657,"priceUnit":"chiếc","marketPrice":145000000,"price":139350000,"price_off":4,"currency":"vnd","sale_rules":{"price":139350000,"normal_price":139350000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 15:59:08","warranty":"theo từng linh kiện","productName":"HHPC ULTRA 9 285K | 64GB DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE ULTRA 9 285K UP 5.7GHz | 24 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d5s.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d9_1.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d9_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d15.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d15.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6657_pc_anubis_d14.jpg","large":"https://hoanghapccdn.com/media/product/250_6657_pc_anubis_d14.jpg","original":""},"alt":""}],"productUrl":"/pc-ultra-9-285k-64gb-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":42,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6658,"productId":6658,"priceUnit":"chiếc","marketPrice":145000000,"price":139490000,"price_off":4,"currency":"vnd","sale_rules":{"price":139490000,"normal_price":139490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2025-12-19 16:14:30","warranty":"theo từng linh kiện","productName":"HHPC RYZEN 9 9900X | 64G DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : AMD RYZEN 9 9900X UP 5.6 GHz 12 CORES | 24 THREADS

\r\n

RAM : DDR5 64GB 6000Mhz (2x32GB)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d5_ha3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d5_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d9.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d12.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6658_pc_anubis_d11.jpg","large":"https://hoanghapccdn.com/media/product/250_6658_pc_anubis_d11.jpg","original":""},"alt":""}],"productUrl":"/pc-ryzen-9-9900x-64g-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":65,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"},{"id":1,"catPath":":1","name":"PC Chuyên Dụng","url":"/pc-workstation"}]},{"id":6660,"productId":6660,"priceUnit":"chiếc","marketPrice":145000000,"price":137600000,"price_off":5,"currency":"vnd","sale_rules":{"price":137600000,"normal_price":137600000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 10:38:00","warranty":"theo từng linh kiện","productName":"HHPC CORE i9 14900KF | 64G DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE i9 14900KF UP 6.0GHz | 24 CORES | 32 THREADS

\r\n

RAM : DDR5 64GB 6000 MHz (2x32G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_d5_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_d5_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_14700kf_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_14700kf_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_14700kf_5060ti_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_14700kf_5060ti_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6660_pc_anubis_14700kf_h11.jpg","large":"https://hoanghapccdn.com/media/product/250_6660_pc_anubis_14700kf_h11.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i9-14900kf-64g-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":50,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6661,"productId":6661,"priceUnit":"chiếc","marketPrice":83000000,"price":77620000,"price_off":6,"currency":"vnd","sale_rules":{"price":77620000,"normal_price":77620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:41:12","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX 4000 ADA 20GB","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX 4000 ADA 20GB GDDR6

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_360_ha12.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_360_ha12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6661_pc_anubis_astrobeat_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6661_pc_anubis_astrobeat_360_ha9.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-4000-ada-20gb","brand":{"id":0,"name":"","image":"","url":""},"visit":49,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6662,"productId":6662,"priceUnit":"chiếc","marketPrice":85000000,"price":81620000,"price_off":4,"currency":"vnd","sale_rules":{"price":81620000,"normal_price":81620000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:40:09","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_k_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_ha_11.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_ha_11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6662_pc_anubis_astrobeat_360_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6662_pc_anubis_astrobeat_360_ha10.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":43,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6663,"productId":6663,"priceUnit":"chiếc","marketPrice":120000000,"price":121610000,"price_off":-1,"currency":"vnd","sale_rules":{"price":121610000,"normal_price":121610000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-05 09:39:18","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 32GB DDR5 | NVIDIA RTX PRO 4500 BLACKWELL 32G","productSummary":"

CPU : INTEL CORE i7 14700KF up 5.6GHz | 20 CORE | 28 THREAD

\r\n

RAM : DDR5 32GB 6000 MHz (2x16G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4500 BLACKWELL 32G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_kh__ng_logo_h1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_360_ha13.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_360_ha13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6663_pc_anubis_astrobeat_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6663_pc_anubis_astrobeat_360_ha9.jpg","original":""},"alt":""}],"productUrl":"/pc-core-i7-14700kf-32gb-d5-rtx-pro-4500-blackwell-32g","brand":{"id":0,"name":"","image":"","url":""},"visit":59,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316}],"categories":[{"id":169,"catPath":":169:1","name":"PC Architecture & CAD","url":"/pc-architecture-cad"}]},{"id":6667,"productId":6667,"priceUnit":"chiếc","marketPrice":0,"price":43150000,"price_off":"","currency":"vnd","sale_rules":{"price":43150000,"normal_price":43990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":340},"lastUpdate":"2025-12-24 13:51:41","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5060 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 64GB (2x32G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5060 Ti 16G GDDR7 - 2 FAN

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_5060ti_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_5060ti_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_5060ti_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d9.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d12.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d12.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d11.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d11.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6667_pc_anubis_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6667_pc_anubis_d5_ha3.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-64gb-rtx-5060-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":699,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":340,"pro_id":6667,"title":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5060 Ti 16G","price":43150000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6668,"productId":6668,"priceUnit":"chiếc","marketPrice":0,"price":46100000,"price_off":"","currency":"vnd","sale_rules":{"price":46100000,"normal_price":46990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":341},"lastUpdate":"2025-12-24 14:05:02","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 12G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 64GB (2x32G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5070 12G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_14700kf_sale_3.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_14700kf_sale_3.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_14700kf_sale_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d7.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d13.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d13.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d6.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6668_pc_anubis_d10.jpg","large":"https://hoanghapccdn.com/media/product/250_6668_pc_anubis_d10.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-64gb-rtx-5070-12g","brand":{"id":0,"name":"","image":"","url":""},"visit":549,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":341,"pro_id":6668,"title":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 12G","price":46100000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6669,"productId":6669,"priceUnit":"chiếc","marketPrice":0,"price":52850000,"price_off":"","currency":"vnd","sale_rules":{"price":52850000,"normal_price":53890000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":342},"lastUpdate":"2025-12-24 14:12:28","warranty":"theo từng linh kiện","productName":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 Ti 16G","productSummary":"

CPU : INTEL CORE i7 14700KF UP 5.6GHz | 20 CORES | 28 THREADS

\r\n

RAM : DDR4 64GB (2x32G) 3200 MHz

\r\n

VGA: NVIDIA RTX 5070 Ti 16G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_14700kf_sale_4.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_14700kf_sale_4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_14700kf_sale_4.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_14700kf_sale_4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d9_1.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d9_1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d15.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d15.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d5s.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d5s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6669_pc_anubis_d14.jpg","large":"https://hoanghapccdn.com/media/product/250_6669_pc_anubis_d14.jpg","original":""},"alt":""}],"productUrl":"/hhpc-core-i7-14700kf-64gb-rtx-5070-ti-16g","brand":{"id":0,"name":"","image":"","url":""},"visit":664,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":342,"pro_id":6669,"title":"HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 Ti 16G","price":52850000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":2,"is_started":1}],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":170,"catPath":":170:1","name":"PC 3D Design, Animation","url":"/hhpc-3d"},{"id":162,"catPath":":162:1","name":"Photo Editing","url":"/pc-photo-editing"}]},{"id":6721,"productId":6721,"priceUnit":"chiếc","marketPrice":280000000,"price":271490000,"price_off":3,"currency":"vnd","sale_rules":{"price":271490000,"normal_price":271490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-21 14:09:42","warranty":"theo từng linh kiện","productName":"HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX PRO 4000 BLACKWELL 24G","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":26,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]},{"id":6722,"productId":6722,"priceUnit":"chiếc","marketPrice":350000000,"price":322950000,"price_off":8,"currency":"vnd","sale_rules":{"price":322950000,"normal_price":322950000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":"component"},"lastUpdate":"2026-01-27 13:53:39","warranty":"theo từng linh kiện","productName":"HH AI PC DUAL RTX PRO 4000 BLACKWELL 24G | THREADRIPPER 9960X | 256GB","productSummary":"

CPU: THREADRIPPER 9960X UP 5.4 | 24 CORE | 48 THREAD

\r\n

RAM : 256GB ECC REGISTERED TỰ SỬA LỖI (4x64G)

\r\n

VGA : 2x LEADTEK NVIDIA RTX PRO 4000 BLACKWELL 24G GDDR7

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5983_aorus_c500_glass_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5983_aorus_c500_glass_ha4.jpg","original":""},"alt":""}],"productUrl":"/pcai-threadripper-9960x-256gb-dual-rtx-pro-4000-blackwell-24g","brand":{"id":0,"name":"","image":"","url":""},"visit":32,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":8,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":0,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":55950000,"type":"deal","type_id":304},{"price":61850000,"type":"deal","type_id":303},{"price":52100000,"type":"deal","type_id":305},{"price":49050000,"type":"deal","type_id":324},{"price":51000000,"type":"deal","type_id":325},{"price":58800000,"type":"deal","type_id":326},{"price":71050000,"type":"deal","type_id":327},{"price":134350000,"type":"deal","type_id":328},{"price":39950000,"type":"deal","type_id":322},{"price":41900000,"type":"deal","type_id":321},{"price":40150000,"type":"deal","type_id":310},{"price":46000000,"type":"deal","type_id":314},{"price":48950000,"type":"deal","type_id":315},{"price":55750000,"type":"deal","type_id":316},{"price":43150000,"type":"deal","type_id":340},{"price":46100000,"type":"deal","type_id":341},{"price":52850000,"type":"deal","type_id":342}],"categories":[{"id":92,"catPath":":92:1","name":"PC Machine Learning / AI","url":"/pc-ai-tri-tue-nhan-tao"}]}] }, { "id": 27, @@ -27,7 +27,7 @@ export const productList = [ { "id": 166, "total": 13, - "list": [{"id":6353,"productId":6353,"priceUnit":"chiếc","marketPrice":0,"price":490000,"price_off":"","currency":"vnd","sale_rules":{"price":490000,"normal_price":490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-11 10:04:43","warranty":"12 tháng","productName":"Giá đỡ Cooler Master ELV8 Graphics and Holder - RGB - Màu đen","productSummary":"

Protect the GPU

\r\n

Universal GPU support

\r\n

Protect the motherboard

\r\n

Co-designed with Tantric Mods

\r\n

RGB ready

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha5.jpg","original":""},"alt":""}],"productUrl":"/bo-dung-vga-cooler-master-elv8","brand":{"id":47,"brand_index":"cooler-master","name":"COOLER MASTER","image":"https://hoanghapccdn.com/media/brand/coolermaster.jpg","url":"/brand/cooler-master"},"visit":151,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":121,"catPath":":121:166","name":"Phụ Kiện Máy Tính","url":"/phu-kien"}]},{"id":6432,"productId":6432,"priceUnit":"chiếc","marketPrice":3000000,"price":2790000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2790000,"normal_price":2790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-10 13:51:01","warranty":"60 tháng","productName":"Nguồn Thermaltake Toughpower GT 850W Snow ATX 3.1 (80 Plus Gold/ Full Modular)","productSummary":"

Công suất: 850W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full Modular

\r\n

Loại: ATX 3.1 - PCIe Gen 5.1

\r\n

PFC: Active PFC

\r\n

Được trang bị tụ điện Nhật Bản chất lượng cao

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6432_gt_850w_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_gt_850w_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_gt_850w_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_gt_850w_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha3.jpg","original":""},"alt":""}],"productUrl":"/nguon-thermaltake-toughpower-gt-850w-snow","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":205,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":186,"catPath":":186:7:166","name":"Nguồn Thermaltake","url":"/nguon-thermaltake"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6339,"productId":6339,"priceUnit":"chiếc","marketPrice":4200000,"price":3890000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":3890000,"normal_price":3890000,"min_purchase":1,"max_purchase":0,"remain_quantity":0,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-06 08:54:26","warranty":"60 tháng","productName":"Nguồn Ocypus Iota P1200 1200W (80 Plus Gold | ATX 3.1 | PCIe 5.1 | Full Modular)","productSummary":"

Công suất: 1200W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full-modular

\r\n

Loại: ATX 3.1 - PCIe Gen 5.1

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha4.jpg","original":""},"alt":""}],"productUrl":"/nguon-ocypus-iota-p1200-1200w","brand":{"id":155,"brand_index":"ocypus","name":"OCYPUS","image":"https://hoanghapccdn.com/media/brand/ocypus.png","url":"/brand/ocypus"},"visit":132,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":0,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6328,"productId":6328,"priceUnit":"chiếc","marketPrice":5500000,"price":5190000,"price_off":6,"currency":"vnd","sale_rules":{"price":5190000,"normal_price":5190000,"min_purchase":1,"max_purchase":0,"remain_quantity":0,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-05 09:55:24","warranty":"60 tháng","productName":"Nguồn Thermaltake Toughpower GF A3 1200W (80 Plus Gold | ATX 3.0 | PCIe 5.0 | Full Modular)","productSummary":"

Công suất: 1200W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full-modular

\r\n

Loại: ATX 3.0 - PCIe Gen 5.0

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha2.jpg","original":""},"alt":""}],"productUrl":"/nguon-thermaltake-gf-a3-1200w","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":132,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":0,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":186,"catPath":":186:7:166","name":"Nguồn Thermaltake","url":"/nguon-thermaltake"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6245,"productId":6245,"priceUnit":"chiếc","marketPrice":0,"price":3500000,"price_off":"","currency":"vnd","sale_rules":{"price":3500000,"normal_price":3990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":331},"lastUpdate":"2026-01-14 09:33:19","warranty":"60 tháng","productName":"Nguồn SeaSonic Vertex GX-1000 ATX 3.0 (1000W, 80 Plus Gold/ Full Modular/ Black)","productSummary":"

Intel Form Factor: ATX 3.0 & PCIe 5.0

\r\n

Công suất: 1000W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full-modular

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha2.jpg","original":""},"alt":""}],"productUrl":"/nguon-seasonic-1000w-vertex-gx-1000","brand":{"id":34,"brand_index":"seasonic","name":"SEASONIC","image":"https://hoanghapccdn.com/media/brand/seasonic.jpg","url":"/brand/seasonic"},"visit":1681,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":331,"pro_id":6245,"title":"Nguồn SeaSonic Vertex GX-1000 ATX 3.1 (1000W, 80 Plus Gold/ Full Modular/ Black)","price":3500000,"quantity":10,"sale_quantity":2,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":185,"catPath":":185:7:166","name":"Nguồn Seasonic","url":"/nguon-seasonic"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6179,"productId":6179,"priceUnit":"chiếc","marketPrice":8000000,"price":7290000,"price_off":9,"currency":"vnd","sale_rules":{"price":7290000,"normal_price":7290000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-07-08 16:19:54","warranty":"10 năm","productName":"NGUỒN ASUS ROG STRIX 1200P PLATINUM BLACK (1200W / ATX 3.1/ PCIe 5.1/ 80 Plus Plantinum/ Full Modular)","productSummary":"

Intel Form Factor: ATX 3.1 and PCIe Gen 5.1

\r\n

Công suất: 1200W

\r\n

Chứng nhận: 80 Plus Platinum

\r\n

Mô-đun: Full-modular

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha10.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha9.jpg","original":""},"alt":""}],"productUrl":"/nguon-asus-rog-strix-1200w-platinum-black","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":853,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":175,"catPath":":175:7:166","name":"Nguồn Asus","url":"/nguon-asus"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6428,"productId":6428,"priceUnit":"chiếc","marketPrice":1990000,"price":1790000,"price_off":10,"currency":"vnd","sale_rules":{"price":1790000,"normal_price":1790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-10 09:45:57","warranty":"12 Tháng","productName":"Vỏ Case Jonsbo D400 White - No Fan (Mid Tower/ Màu trắng)","productSummary":"

Hỗ trợ mainboard: Mini-ITX / M-ATX / ATX

\r\n

Chất liệu: Steel, Tempered Glass

\r\n

Kết nối: USB3.2 Gen2 Type-C*1, USB3.0*2, AUDIO*1+MIC*1 (2 in 1)

\r\n

Hỗ trợ tản nhiệt CPU: 169mm

\r\n

Hỗ trợ VGA: ≤450mm

\r\n

Hỗ trợ PSU: ATX PS2

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha5.jpg","original":""},"alt":""}],"productUrl":"/vo-case-jonsbo-d400-white","brand":{"id":54,"brand_index":"jonsbo","name":"JONSBO","image":"https://hoanghapccdn.com/media/brand/jonsbo.jpg","url":"/brand/jonsbo"},"visit":151,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":276,"catPath":":276:8:166","name":"Case Jonsbo","url":"/case-jonsbo"},{"id":8,"catPath":":8:166","name":"Case - Vỏ Máy Tính","url":"/case-vo-may-tinh"}]},{"id":6423,"productId":6423,"priceUnit":"chiếc","marketPrice":1990000,"price":1790000,"price_off":10,"currency":"vnd","sale_rules":{"price":1790000,"normal_price":1790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-08 10:34:53","warranty":"12 Tháng","productName":"Vỏ Case Jonsbo D400 Black - No Fan (Mid Tower/ Màu đen)","productSummary":"

Hỗ trợ mainboard: Mini-ITX / M-ATX / ATX

\r\n

Chất liệu: Steel, Tempered Glass

\r\n

Kết nối: USB3.2 Gen2 Type-C*1, USB3.0*2, AUDIO*1+MIC*1 (2 in 1)

\r\n

Hỗ trợ tản nhiệt CPU: 169mm

\r\n

Hỗ trợ VGA: ≤450mm

\r\n

Hỗ trợ PSU: ATX PS2

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha6.jpg","original":""},"alt":""}],"productUrl":"/vo-case-jonsbo-d400-black","brand":{"id":54,"brand_index":"jonsbo","name":"JONSBO","image":"https://hoanghapccdn.com/media/brand/jonsbo.jpg","url":"/brand/jonsbo"},"visit":262,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":276,"catPath":":276:8:166","name":"Case Jonsbo","url":"/case-jonsbo"},{"id":8,"catPath":":8:166","name":"Case - Vỏ Máy Tính","url":"/case-vo-may-tinh"}]},{"id":6400,"productId":6400,"priceUnit":"chiếc","marketPrice":2300000,"price":1990000,"price_off":13,"currency":"vnd","sale_rules":{"price":1990000,"normal_price":1990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-06 13:54:19","warranty":"12 tháng","productName":"Vỏ case ASUS PRIME AP202 TG White - No Fan (Mini Tower / Màu Trắng)","productSummary":"

Loại Case: Mini Tower

\r\n

Chất liệu: Tempered Glass, SPCC

\r\n

Hỗ trợ bo mạch chủ: Micro-ATX, Mini-ITX

\r\n

Khe cắm mở rộng: 4

\r\n

Cổng kết nối: 2 x USB 3.2 Gen1, 1 x USB 3.2 Gen 2x2 Type C

\r\n

Hỗ trợ tản nhiệt CPU: 175 mm

\r\n

Hỗ trợ VGA: 420 mm

\r\n

Hỗ trợ PSU: 200 mm

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha4.jpg","original":""},"alt":""}],"productUrl":"/vo-case-asus-prime-ap202-tg-white","brand":{"id":155,"brand_index":"ocypus","name":"OCYPUS","image":"https://hoanghapccdn.com/media/brand/ocypus.png","url":"/brand/ocypus"},"visit":190,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":8,"catPath":":8:166","name":"Case - Vỏ Máy Tính","url":"/case-vo-may-tinh"}]},{"id":6422,"productId":6422,"priceUnit":"chiếc","marketPrice":50000000,"price":45990000,"price_off":8,"currency":"vnd","sale_rules":{"price":45990000,"normal_price":45990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-14 11:47:59","warranty":"36 tháng","productName":"RAM DDR5 CORSAIR VENGEANCE RGB 128GB 6400MHz (2x64G) XMP 3.0 BLACK","productSummary":"

Loại RAM: DDR5

\r\n

Dung lượng: 128GB (2x64GB)

\r\n

Bus: 6400 MHz

\r\n

Độ trễ: CL42-52-52-104

\r\n

Intel XMP 3.0

\r\n

Phiên bản LED RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha3.jpg","original":""},"alt":""}],"productUrl":"/ram-d5-corsair-vengeance-rgb-128gb-6400mhz","brand":{"id":13,"brand_index":"corsair","name":"CORSAIR","image":"https://hoanghapccdn.com/media/brand/corsair.jpg","url":"/brand/corsair"},"visit":350,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":70,"catPath":":70:4:166","name":"Ram Corsair","url":"/ram-corsair"},{"id":4,"catPath":":4:166","name":"RAM - Bộ Nhớ Trong","url":"/ram-bo-nho-trong"}]}] + "list": [{"id":6353,"productId":6353,"priceUnit":"chiếc","marketPrice":0,"price":490000,"price_off":"","currency":"vnd","sale_rules":{"price":490000,"normal_price":490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-11 10:04:43","warranty":"12 tháng","productName":"Giá đỡ Cooler Master ELV8 Graphics and Holder - RGB - Màu đen","productSummary":"

Protect the GPU

\r\n

Universal GPU support

\r\n

Protect the motherboard

\r\n

Co-designed with Tantric Mods

\r\n

RGB ready

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha2.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6353_elv8_graphics_and_holder_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6353_elv8_graphics_and_holder_ha5.jpg","original":""},"alt":""}],"productUrl":"/bo-dung-vga-cooler-master-elv8","brand":{"id":47,"brand_index":"cooler-master","name":"COOLER MASTER","image":"https://hoanghapccdn.com/media/brand/coolermaster.jpg","url":"/brand/cooler-master"},"visit":151,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":121,"catPath":":121:166","name":"Phụ Kiện Máy Tính","url":"/phu-kien"}]},{"id":6432,"productId":6432,"priceUnit":"chiếc","marketPrice":3000000,"price":2790000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2790000,"normal_price":2790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-10 13:51:01","warranty":"60 tháng","productName":"Nguồn Thermaltake Toughpower GT 850W Snow ATX 3.1 (80 Plus Gold/ Full Modular)","productSummary":"

Công suất: 850W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full Modular

\r\n

Loại: ATX 3.1 - PCIe Gen 5.1

\r\n

PFC: Active PFC

\r\n

Được trang bị tụ điện Nhật Bản chất lượng cao

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6432_gt_850w_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_gt_850w_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_gt_850w_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_gt_850w_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6432_toughpower_gt_850w_snow_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6432_toughpower_gt_850w_snow_ha3.jpg","original":""},"alt":""}],"productUrl":"/nguon-thermaltake-toughpower-gt-850w-snow","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":205,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":186,"catPath":":186:7:166","name":"Nguồn Thermaltake","url":"/nguon-thermaltake"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6339,"productId":6339,"priceUnit":"chiếc","marketPrice":4200000,"price":3890000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":3890000,"normal_price":3890000,"min_purchase":1,"max_purchase":0,"remain_quantity":0,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-06 08:54:26","warranty":"60 tháng","productName":"Nguồn Ocypus Iota P1200 1200W (80 Plus Gold | ATX 3.1 | PCIe 5.1 | Full Modular)","productSummary":"

Công suất: 1200W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full-modular

\r\n

Loại: ATX 3.1 - PCIe Gen 5.1

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6339_iota_p1200_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6339_iota_p1200_ha4.jpg","original":""},"alt":""}],"productUrl":"/nguon-ocypus-iota-p1200-1200w","brand":{"id":155,"brand_index":"ocypus","name":"OCYPUS","image":"https://hoanghapccdn.com/media/brand/ocypus.png","url":"/brand/ocypus"},"visit":132,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":0,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6328,"productId":6328,"priceUnit":"chiếc","marketPrice":5500000,"price":5190000,"price_off":6,"currency":"vnd","sale_rules":{"price":5190000,"normal_price":5190000,"min_purchase":1,"max_purchase":0,"remain_quantity":0,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-05 09:55:24","warranty":"60 tháng","productName":"Nguồn Thermaltake Toughpower GF A3 1200W (80 Plus Gold | ATX 3.0 | PCIe 5.0 | Full Modular)","productSummary":"

Công suất: 1200W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full-modular

\r\n

Loại: ATX 3.0 - PCIe Gen 5.0

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6328_toughpower_gf_a3_1200w_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6328_toughpower_gf_a3_1200w_ha2.jpg","original":""},"alt":""}],"productUrl":"/nguon-thermaltake-gf-a3-1200w","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":132,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":0,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":186,"catPath":":186:7:166","name":"Nguồn Thermaltake","url":"/nguon-thermaltake"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6245,"productId":6245,"priceUnit":"chiếc","marketPrice":0,"price":3500000,"price_off":"","currency":"vnd","sale_rules":{"price":3500000,"normal_price":3990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":331},"lastUpdate":"2026-01-14 09:33:19","warranty":"60 tháng","productName":"Nguồn SeaSonic Vertex GX-1000 ATX 3.0 (1000W, 80 Plus Gold/ Full Modular/ Black)","productSummary":"

Intel Form Factor: ATX 3.0 & PCIe 5.0

\r\n

Công suất: 1000W

\r\n

Chứng nhận: 80 Plus Gold

\r\n

Mô-đun: Full-modular

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6245_gx_1000_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6245_gx_1000_ha2.jpg","original":""},"alt":""}],"productUrl":"/nguon-seasonic-1000w-vertex-gx-1000","brand":{"id":34,"brand_index":"seasonic","name":"SEASONIC","image":"https://hoanghapccdn.com/media/brand/seasonic.jpg","url":"/brand/seasonic"},"visit":1681,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":331,"pro_id":6245,"title":"Nguồn SeaSonic Vertex GX-1000 ATX 3.1 (1000W, 80 Plus Gold/ Full Modular/ Black)","price":3500000,"quantity":10,"sale_quantity":2,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":185,"catPath":":185:7:166","name":"Nguồn Seasonic","url":"/nguon-seasonic"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6179,"productId":6179,"priceUnit":"chiếc","marketPrice":8000000,"price":7290000,"price_off":9,"currency":"vnd","sale_rules":{"price":7290000,"normal_price":7290000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-07-08 16:19:54","warranty":"10 năm","productName":"NGUỒN ASUS ROG STRIX 1200P PLATINUM BLACK (1200W / ATX 3.1/ PCIe 5.1/ 80 Plus Plantinum/ Full Modular)","productSummary":"

Intel Form Factor: ATX 3.1 and PCIe Gen 5.1

\r\n

Công suất: 1200W

\r\n

Chứng nhận: 80 Plus Platinum

\r\n

Mô-đun: Full-modular

\r\n

PFC: Active PFC

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha10.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6179_rog_strix_1200w_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6179_rog_strix_1200w_ha9.jpg","original":""},"alt":""}],"productUrl":"/nguon-asus-rog-strix-1200w-platinum-black","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":853,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":175,"catPath":":175:7:166","name":"Nguồn Asus","url":"/nguon-asus"},{"id":7,"catPath":":7:166","name":"PSU - Nguồn máy tính","url":"/psu-nguon-may-tinh"}]},{"id":6428,"productId":6428,"priceUnit":"chiếc","marketPrice":1990000,"price":1790000,"price_off":10,"currency":"vnd","sale_rules":{"price":1790000,"normal_price":1790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-10 09:45:57","warranty":"12 Tháng","productName":"Vỏ Case Jonsbo D400 White - No Fan (Mid Tower/ Màu trắng)","productSummary":"

Hỗ trợ mainboard: Mini-ITX / M-ATX / ATX

\r\n

Chất liệu: Steel, Tempered Glass

\r\n

Kết nối: USB3.2 Gen2 Type-C*1, USB3.0*2, AUDIO*1+MIC*1 (2 in 1)

\r\n

Hỗ trợ tản nhiệt CPU: 169mm

\r\n

Hỗ trợ VGA: ≤450mm

\r\n

Hỗ trợ PSU: ATX PS2

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6428_d400_white_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6428_d400_white_ha5.jpg","original":""},"alt":""}],"productUrl":"/vo-case-jonsbo-d400-white","brand":{"id":54,"brand_index":"jonsbo","name":"JONSBO","image":"https://hoanghapccdn.com/media/brand/jonsbo.jpg","url":"/brand/jonsbo"},"visit":151,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":276,"catPath":":276:8:166","name":"Case Jonsbo","url":"/case-jonsbo"},{"id":8,"catPath":":8:166","name":"Case - Vỏ Máy Tính","url":"/case-vo-may-tinh"}]},{"id":6423,"productId":6423,"priceUnit":"chiếc","marketPrice":1990000,"price":1790000,"price_off":10,"currency":"vnd","sale_rules":{"price":1790000,"normal_price":1790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-08 10:34:53","warranty":"12 Tháng","productName":"Vỏ Case Jonsbo D400 Black - No Fan (Mid Tower/ Màu đen)","productSummary":"

Hỗ trợ mainboard: Mini-ITX / M-ATX / ATX

\r\n

Chất liệu: Steel, Tempered Glass

\r\n

Kết nối: USB3.2 Gen2 Type-C*1, USB3.0*2, AUDIO*1+MIC*1 (2 in 1)

\r\n

Hỗ trợ tản nhiệt CPU: 169mm

\r\n

Hỗ trợ VGA: ≤450mm

\r\n

Hỗ trợ PSU: ATX PS2

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6423_d400_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6423_d400_black_ha6.jpg","original":""},"alt":""}],"productUrl":"/vo-case-jonsbo-d400-black","brand":{"id":54,"brand_index":"jonsbo","name":"JONSBO","image":"https://hoanghapccdn.com/media/brand/jonsbo.jpg","url":"/brand/jonsbo"},"visit":262,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":276,"catPath":":276:8:166","name":"Case Jonsbo","url":"/case-jonsbo"},{"id":8,"catPath":":8:166","name":"Case - Vỏ Máy Tính","url":"/case-vo-may-tinh"}]},{"id":6400,"productId":6400,"priceUnit":"chiếc","marketPrice":2300000,"price":1990000,"price_off":13,"currency":"vnd","sale_rules":{"price":1990000,"normal_price":1990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-06 13:54:19","warranty":"12 tháng","productName":"Vỏ case ASUS PRIME AP202 TG White - No Fan (Mini Tower / Màu Trắng)","productSummary":"

Loại Case: Mini Tower

\r\n

Chất liệu: Tempered Glass, SPCC

\r\n

Hỗ trợ bo mạch chủ: Micro-ATX, Mini-ITX

\r\n

Khe cắm mở rộng: 4

\r\n

Cổng kết nối: 2 x USB 3.2 Gen1, 1 x USB 3.2 Gen 2x2 Type C

\r\n

Hỗ trợ tản nhiệt CPU: 175 mm

\r\n

Hỗ trợ VGA: 420 mm

\r\n

Hỗ trợ PSU: 200 mm

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6400_prime_ap202_tg_wh_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6400_prime_ap202_tg_wh_ha4.jpg","original":""},"alt":""}],"productUrl":"/vo-case-asus-prime-ap202-tg-white","brand":{"id":155,"brand_index":"ocypus","name":"OCYPUS","image":"https://hoanghapccdn.com/media/brand/ocypus.png","url":"/brand/ocypus"},"visit":190,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":8,"catPath":":8:166","name":"Case - Vỏ Máy Tính","url":"/case-vo-may-tinh"}]},{"id":6422,"productId":6422,"priceUnit":"chiếc","marketPrice":50000000,"price":45990000,"price_off":8,"currency":"vnd","sale_rules":{"price":45990000,"normal_price":45990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2026-01-14 11:47:59","warranty":"36 tháng","productName":"RAM DDR5 CORSAIR VENGEANCE RGB 128GB 6400MHz (2x64G) XMP 3.0 BLACK","productSummary":"

Loại RAM: DDR5

\r\n

Dung lượng: 128GB (2x64GB)

\r\n

Bus: 6400 MHz

\r\n

Độ trễ: CL42-52-52-104

\r\n

Intel XMP 3.0

\r\n

Phiên bản LED RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6422_vengeance_rgb_d5_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6422_vengeance_rgb_d5_ha3.jpg","original":""},"alt":""}],"productUrl":"/ram-d5-corsair-vengeance-rgb-128gb-6400mhz","brand":{"id":13,"brand_index":"corsair","name":"CORSAIR","image":"https://hoanghapccdn.com/media/brand/corsair.jpg","url":"/brand/corsair"},"visit":350,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3500000,"type":"deal","type_id":331}],"categories":[{"id":70,"catPath":":70:4:166","name":"Ram Corsair","url":"/ram-corsair"},{"id":4,"catPath":":4:166","name":"RAM - Bộ Nhớ Trong","url":"/ram-bo-nho-trong"}]}] }, { "id": 9, @@ -42,11 +42,11 @@ export const productList = [ { "id": 24, "total": 6, - "list": [{"id":5982,"productId":5982,"priceUnit":"chiếc","marketPrice":3200000,"price":2990000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2990000,"normal_price":2990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-30 17:30:23","warranty":"24 tháng","productName":"Tản nhiệt nước Asus Prime LC 360 ARGB LCD","productSummary":"

Socket hỗ trợ: Intel: LGA 1851, 1700, 1200, 115x/ AMD: AM5,AM4

\r\n

Tốc độ quạt: 800 - 2500 RPM +/- 10%

\r\n

Tốc độ bơm: 800 - 3600 RPM± 300 RPM

\r\n

Hệ thống ARGB thông minh

\r\n

Màn hình LED 2.3-inch LCD

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha6.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-asus-prime-lc-360-argb-lcd","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":1438,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":223,"catPath":":223:28:24","name":"Tản Nhiệt Nước Asus","url":"/tan-nhiet-nuoc-asus"}]},{"id":6032,"productId":6032,"priceUnit":"chiếc","marketPrice":2500000,"price":2290000,"price_off":8,"currency":"vnd","sale_rules":{"price":2290000,"normal_price":2290000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-03 16:42:40","warranty":"36 tháng","productName":"Tản nhiệt nước Thermaltake LA360-S ARGB Sync Black","productSummary":"

Tương thích: Intel:Intel LGA 2066/ 2011-3/ 2011/ 1851/ 1700/ 1200/ 1156/ 1155/ 1151/ 1150

\r\n

AMD AM5/ AM4/ AM3+/ AM3

\r\n

Tốc độ định mức của bơm:1500~2500 RPM

\r\n

Tốc độ định mức của quạt:600~2500 RPM

\r\n

LCD: 2.4 inch ” Segment

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha5.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-thermaltake-la360-s-argb-sync-black","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":1221,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"other":[{"id":0,"title":"

🎁 Giá ưu đãi cùng Thermaltake đón Giáng sinh 2025

\r\n

Bảo hành 3 năm lỗi 1 đổi 1

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 Giá ưu đãi cùng Thermaltake đón Giáng sinh 2025

\r\n

Bảo hành 3 năm lỗi 1 đổi 1

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":228,"catPath":":228:28:24","name":"Tản Nhiệt Nước Thermaltake","url":"/tan-nhiet-nuoc-thermaltake"}]},{"id":5969,"productId":5969,"priceUnit":"chiếc","marketPrice":3200000,"price":2990000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2990000,"normal_price":2990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-30 17:30:31","warranty":"24 tháng","productName":"Tản nhiệt nước CPU Deepcool LT360 ARGB Black","productSummary":"

Socket hỗ trợ: Intel LGA1851/ 1700/ 1200/ 1151/ 1150/ 1155 và AMD AM5/ AM4

\r\n

Tốc độ quạt: 600~2400 RPM±10%

\r\n

Tốc độ bơm: 3400 RPM±10%

\r\n

Hệ thống RGB thông minh

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha6.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-cpu-deepcool-lt360-argb-black","brand":{"id":46,"brand_index":"deepcool","name":"DEEPCOOL","image":"https://hoanghapccdn.com/media/brand/deepcool.png","url":"/brand/deepcool"},"visit":1609,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":233,"catPath":":233:28:24","name":"Tản Nhiệt Nước DeepCool","url":"/tan-nhiet-nuoc-deepcool"}]},{"id":5795,"productId":5795,"priceUnit":"chiếc","marketPrice":6000000,"price":5590000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":5590000,"normal_price":5590000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-16 14:02:05","warranty":"24 tháng","productName":"Tản nhiệt nước Thermaltake MAGFloe 420 Ultra ARGB Black","productSummary":"

Tương thích: Intel LGA 2066/ 2011-3/ 2011/ 1851/ 1700/ 1200/ 1156/ 1155/ 1151/ 1150

\r\n

AMD AM5/ AM4/ AM3+/ AM3/ AM2+/ AM2/ FM2/ FM1

\r\n

Tốc độ định mức của bơm:1500~3300 RPM

\r\n

Tốc độ định mức của quạt:500~2000 RPM

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha2.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-thermaltake-magfloe-420-ultra-argb-black","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":883,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":228,"catPath":":228:28:24","name":"Tản Nhiệt Nước Thermaltake","url":"/tan-nhiet-nuoc-thermaltake"}]},{"id":5536,"productId":5536,"priceUnit":"chiếc","marketPrice":0,"price":2990000,"price_off":"","currency":"vnd","sale_rules":{"price":2990000,"normal_price":2990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2024-12-01 15:18:04","warranty":"24 tháng","productName":"Tản nhiệt nước CPU Thermalright Grand Vision 360 ARGB Black","productSummary":"

Socket hỗ trợ: LGA115X/ 1200/ 1700/ 1851/ 2011/ 2066 và AM4/ AM5

\r\n

Tốc độ bơm: 6400 RPM±10% (MAX)

\r\n

Tốc độ quạt: 2150 RPM±10% (MAX)

\r\n

Hệ thống RGB thông minh

\r\n

Màn hình LCD 3.4 inch

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha8.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-cpu-thermalright-grand-vision-360-argb-black","brand":{"id":55,"brand_index":"thermalright","name":"THERMALRIGHT","image":"https://hoanghapccdn.com/media/brand/thermalright.jpg","url":"/brand/thermalright"},"visit":4013,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":227,"catPath":":227:28:24","name":"Tản Nhiệt Nước Thermalright","url":"/tan-nhiet-nuoc-thermalright"}]},{"id":5446,"productId":5446,"priceUnit":"chiếc","marketPrice":0,"price":3690000,"price_off":"","currency":"vnd","sale_rules":{"price":3690000,"normal_price":3990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":301},"lastUpdate":"2025-10-09 15:11:45","warranty":"24 tháng","productName":"Tản nhiệt nước CPU Deepcool MYSTIQUE 360 White","productSummary":"

Socket hỗ trợ: LGA1700/ 1200/ 1151/ 1150/ 1155 và AM5/ AM4

\r\n

Tốc độ bơm: 3400 RPM±10%

\r\n

Tốc độ quạt: 500~2150 RPM±10%

\r\n

Hệ thống RGB thông minh

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_white_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_white_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_white_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_white_sale.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-cpu-deepcool-mystique-360-white","brand":{"id":46,"brand_index":"deepcool","name":"DEEPCOOL","image":"https://hoanghapccdn.com/media/brand/deepcool.png","url":"/brand/deepcool"},"visit":1170,"rating":5,"reviewCount":1,"review":{"rate":5,"total":1},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":301,"pro_id":5446,"title":"Tản nhiệt nước CPU Deepcool MYSTIQUE 360 White","price":3690000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":233,"catPath":":233:28:24","name":"Tản Nhiệt Nước DeepCool","url":"/tan-nhiet-nuoc-deepcool"}]}] + "list": [{"id":5982,"productId":5982,"priceUnit":"chiếc","marketPrice":3200000,"price":2990000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2990000,"normal_price":2990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-30 17:30:23","warranty":"24 tháng","productName":"Tản nhiệt nước Asus Prime LC 360 ARGB LCD","productSummary":"

Socket hỗ trợ: Intel: LGA 1851, 1700, 1200, 115x/ AMD: AM5,AM4

\r\n

Tốc độ quạt: 800 - 2500 RPM +/- 10%

\r\n

Tốc độ bơm: 800 - 3600 RPM± 300 RPM

\r\n

Hệ thống ARGB thông minh

\r\n

Màn hình LED 2.3-inch LCD

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha1s.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha1s.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5982_prime_lc_360_argb_lcd_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5982_prime_lc_360_argb_lcd_ha6.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-asus-prime-lc-360-argb-lcd","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":1438,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":223,"catPath":":223:28:24","name":"Tản Nhiệt Nước Asus","url":"/tan-nhiet-nuoc-asus"}]},{"id":6032,"productId":6032,"priceUnit":"chiếc","marketPrice":2500000,"price":2290000,"price_off":8,"currency":"vnd","sale_rules":{"price":2290000,"normal_price":2290000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-11-03 16:42:40","warranty":"36 tháng","productName":"Tản nhiệt nước Thermaltake LA360-S ARGB Sync Black","productSummary":"

Tương thích: Intel:Intel LGA 2066/ 2011-3/ 2011/ 1851/ 1700/ 1200/ 1156/ 1155/ 1151/ 1150

\r\n

AMD AM5/ AM4/ AM3+/ AM3

\r\n

Tốc độ định mức của bơm:1500~2500 RPM

\r\n

Tốc độ định mức của quạt:600~2500 RPM

\r\n

LCD: 2.4 inch ” Segment

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6032_la360_s_argb_sync_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6032_la360_s_argb_sync_black_ha5.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-thermaltake-la360-s-argb-sync-black","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":1221,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"other":[{"id":0,"title":"

🎁 Giá ưu đãi cùng Thermaltake đón Giáng sinh 2025

\r\n

Bảo hành 3 năm lỗi 1 đổi 1

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}],"all":[{"id":0,"title":"

🎁 Giá ưu đãi cùng Thermaltake đón Giáng sinh 2025

\r\n

Bảo hành 3 năm lỗi 1 đổi 1

","type":"","thumbnail":"","cash_value":0,"quantity":1,"from_time":"","to_time":"","url":"","description":"","status":1}]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":228,"catPath":":228:28:24","name":"Tản Nhiệt Nước Thermaltake","url":"/tan-nhiet-nuoc-thermaltake"}]},{"id":5969,"productId":5969,"priceUnit":"chiếc","marketPrice":3200000,"price":2990000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2990000,"normal_price":2990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-30 17:30:31","warranty":"24 tháng","productName":"Tản nhiệt nước CPU Deepcool LT360 ARGB Black","productSummary":"

Socket hỗ trợ: Intel LGA1851/ 1700/ 1200/ 1151/ 1150/ 1155 và AMD AM5/ AM4

\r\n

Tốc độ quạt: 600~2400 RPM±10%

\r\n

Tốc độ bơm: 3400 RPM±10%

\r\n

Hệ thống RGB thông minh

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5969_deepcool_lt360_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5969_deepcool_lt360_black_ha6.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-cpu-deepcool-lt360-argb-black","brand":{"id":46,"brand_index":"deepcool","name":"DEEPCOOL","image":"https://hoanghapccdn.com/media/brand/deepcool.png","url":"/brand/deepcool"},"visit":1609,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":233,"catPath":":233:28:24","name":"Tản Nhiệt Nước DeepCool","url":"/tan-nhiet-nuoc-deepcool"}]},{"id":5795,"productId":5795,"priceUnit":"chiếc","marketPrice":6000000,"price":5590000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":5590000,"normal_price":5590000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-16 14:02:05","warranty":"24 tháng","productName":"Tản nhiệt nước Thermaltake MAGFloe 420 Ultra ARGB Black","productSummary":"

Tương thích: Intel LGA 2066/ 2011-3/ 2011/ 1851/ 1700/ 1200/ 1156/ 1155/ 1151/ 1150

\r\n

AMD AM5/ AM4/ AM3+/ AM3/ AM2+/ AM2/ FM2/ FM1

\r\n

Tốc độ định mức của bơm:1500~3300 RPM

\r\n

Tốc độ định mức của quạt:500~2000 RPM

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha2.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-thermaltake-magfloe-420-ultra-argb-black","brand":{"id":40,"brand_index":"thermaltake","name":"THERMALTAKE","image":"https://hoanghapccdn.com/media/brand/thermaltake.png","url":"/brand/thermaltake"},"visit":883,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":228,"catPath":":228:28:24","name":"Tản Nhiệt Nước Thermaltake","url":"/tan-nhiet-nuoc-thermaltake"}]},{"id":5536,"productId":5536,"priceUnit":"chiếc","marketPrice":0,"price":2990000,"price_off":"","currency":"vnd","sale_rules":{"price":2990000,"normal_price":2990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2024-12-01 15:18:04","warranty":"24 tháng","productName":"Tản nhiệt nước CPU Thermalright Grand Vision 360 ARGB Black","productSummary":"

Socket hỗ trợ: LGA115X/ 1200/ 1700/ 1851/ 2011/ 2066 và AM4/ AM5

\r\n

Tốc độ bơm: 6400 RPM±10% (MAX)

\r\n

Tốc độ quạt: 2150 RPM±10% (MAX)

\r\n

Hệ thống RGB thông minh

\r\n

Màn hình LCD 3.4 inch

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5536_grand_vision_360_argb_black_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5536_grand_vision_360_argb_black_ha8.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-cpu-thermalright-grand-vision-360-argb-black","brand":{"id":55,"brand_index":"thermalright","name":"THERMALRIGHT","image":"https://hoanghapccdn.com/media/brand/thermalright.jpg","url":"/brand/thermalright"},"visit":4013,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":227,"catPath":":227:28:24","name":"Tản Nhiệt Nước Thermalright","url":"/tan-nhiet-nuoc-thermalright"}]},{"id":5446,"productId":5446,"priceUnit":"chiếc","marketPrice":0,"price":3690000,"price_off":"","currency":"vnd","sale_rules":{"price":3690000,"normal_price":3990000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":301},"lastUpdate":"2025-10-09 15:11:45","warranty":"24 tháng","productName":"Tản nhiệt nước CPU Deepcool MYSTIQUE 360 White","productSummary":"

Socket hỗ trợ: LGA1700/ 1200/ 1151/ 1150/ 1155 và AM5/ AM4

\r\n

Tốc độ bơm: 3400 RPM±10%

\r\n

Tốc độ quạt: 500~2150 RPM±10%

\r\n

Hệ thống RGB thông minh

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_white_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_white_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5446_mystique_360_white_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_5446_mystique_360_white_sale.jpg","original":""},"alt":""}],"productUrl":"/tan-nhiet-nuoc-cpu-deepcool-mystique-360-white","brand":{"id":46,"brand_index":"deepcool","name":"DEEPCOOL","image":"https://hoanghapccdn.com/media/brand/deepcool.png","url":"/brand/deepcool"},"visit":1170,"rating":5,"reviewCount":1,"review":{"rate":5,"total":1},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":301,"pro_id":5446,"title":"Tản nhiệt nước CPU Deepcool MYSTIQUE 360 White","price":3690000,"quantity":10,"sale_quantity":0,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":3690000,"type":"deal","type_id":301}],"categories":[{"id":233,"catPath":":233:28:24","name":"Tản Nhiệt Nước DeepCool","url":"/tan-nhiet-nuoc-deepcool"}]}] }, { "id": 25, "total": 18, - "list": [{"id":5534,"productId":5534,"priceUnit":"chiếc","marketPrice":0,"price":0,"price_off":"","currency":"vnd","sale_rules":{"price":0,"normal_price":0,"min_purchase":1,"max_purchase":0,"remain_quantity":0,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-12-01 16:22:33","warranty":"12 tháng","productName":"Bàn phím cơ DareU EK104 White Black","productSummary":"

Sử dụng swich DareU Dream (linear) cao cấp, đã được lube sẵn.

\r\n

Stabilizer được cân chỉnh và lube sẵn

\r\n

Switch: DareU DREAM 

\r\n

Keycap ABS Doubleshot chất lượng cao

\r\n

LED 7 màu chia theo vùng

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha2.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-co-dareu-ek104-white-black","brand":{"id":5,"brand_index":"dareu","name":"DAREU","image":"https://hoanghapccdn.com/media/brand/dareu.jpg","url":"/brand/dareu"},"visit":2286,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":0,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":6035,"productId":6035,"priceUnit":"chiếc","marketPrice":500000,"price":450000,"price_off":10,"currency":"vnd","sale_rules":{"price":450000,"normal_price":450000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-30 17:43:45","warranty":"12 tháng","productName":"Chuột Fuhlen G90 Pro X Black","productSummary":"

Chuẩn kết nối: Dây USB

\r\n

Thiết kế bất đối xứng dành cho người thuận tay phải.

\r\n

Mắt cảm biến PWM3325

\r\n

Độ phân giải: 8.000 DPI

\r\n

Led: RGB Logo

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha1.jpg","original":""},"alt":""}],"productUrl":"/chuot-fuhlen-g90-pro-x-black","brand":{"id":64,"brand_index":"fuhlen","name":"FUHLEN","image":"https://hoanghapccdn.com/media/brand/fuhlen.jpg","url":"/brand/fuhlen"},"visit":906,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169}],"categories":[{"id":19,"catPath":":19:25","name":"Chuột Máy Tính","url":"/chuot-may-tinh"}]},{"id":6061,"productId":6061,"priceUnit":"chiếc","marketPrice":0,"price":1290000,"price_off":"","currency":"vnd","sale_rules":{"price":1290000,"normal_price":1490000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":361},"lastUpdate":"2026-01-05 10:53:38","warranty":"12 tháng","productName":"Bàn phím cơ DareU EK106 PRO Black Golden Cloud switch","productSummary":"

Hỗ trợ 3 kết nối: Wireless 2.4 Ghz, Bluetooth và có dây USB

\r\n

Hỗ trợ hotswap switch

\r\n

LED RGB 16.8 triệu màu

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha1.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-co-dareu-ek106-pro-black-golden-cloud","brand":{"id":5,"brand_index":"dareu","name":"DAREU","image":"https://hoanghapccdn.com/media/brand/dareu.jpg","url":"/brand/dareu"},"visit":820,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":361,"pro_id":6061,"title":"Bàn phím cơ DareU EK106 PRO Black Golden Cloud switch","price":1290000,"quantity":10,"sale_quantity":2,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":6317,"productId":6317,"priceUnit":"chiếc","marketPrice":2300000,"price":2149000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2149000,"normal_price":2149000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 14:33:48","warranty":"24 tháng","productName":"Tai nghe Asus ROG Delta Core (Jack 3.5mm/ Đen xám)","productSummary":"

Kết nối: Jack 3.5mm

\r\n

Độ lớn Driver: ø50mm

\r\n

Trở kháng trở kháng: 32Ω

\r\n

Tần số tai nghe: 20 ~ 40000 Hz

\r\n

Tần số microphone: 100 ~ 10000 Hz

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha4.jpg","original":""},"alt":""}],"productUrl":"/tai-nghe-asus-rog-delta-core","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":107,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":26,"catPath":":26:25","name":"Tai Nghe","url":"/tai-nghe"}]},{"id":6321,"productId":6321,"priceUnit":"chiếc","marketPrice":6000000,"price":5790000,"price_off":4,"currency":"vnd","sale_rules":{"price":5790000,"normal_price":5790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 16:18:56","warranty":"24 tháng","productName":"Tai nghe Asus ROG Delta II Wireless (Bluetooth/ RF 2.4 GHz/ RGB/ Màu đen)","productSummary":"

Kết nối: Bluetooth®, RF 2.4 GHz, Jack 3.5mm

\r\n

Độ lớn Driver: ø50mm

\r\n

Trở kháng trở kháng: 32Ω

\r\n

Tần số tai nghe: 20Hz - 20KHz

\r\n

Tần số microphone: 100Hz - 10KHz

\r\n

Pin: 1800 mAh

\r\n

Lighting: RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha2.jpg","original":""},"alt":""}],"productUrl":"/tai-nghe-asus-rog-delta-ii-wireless","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":124,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":26,"catPath":":26:25","name":"Tai Nghe","url":"/tai-nghe"}]},{"id":6323,"productId":6323,"priceUnit":"chiếc","marketPrice":4000000,"price":3490000,"price_off":13,"currency":"vnd","sale_rules":{"price":3490000,"normal_price":3490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 16:19:43","warranty":"24 tháng","productName":"Tai nghe Asus ROG Pelta Wireless (Bluetooth/ RF 2.4 GHz/ USB-C/ RGB/ Màu đen)","productSummary":"

Kết nối: Bluetooth, RF 2.4 GHz, USB-C

\r\n

Độ lớn Driver: ø50mm

\r\n

Trở kháng trở kháng: 32Ω

\r\n

Tần số tai nghe: 20Hz - 20KHz

\r\n

Tần số microphone: 100Hz - 10KHz

\r\n

Pin: 900 mAh

\r\n

Lighting: RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha23.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha23.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha5.jpg","original":""},"alt":""}],"productUrl":"/tai-nghe-asus-rog-pelta-wireless","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":127,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":26,"catPath":":26:25","name":"Tai Nghe","url":"/tai-nghe"}]},{"id":6324,"productId":6324,"priceUnit":"chiếc","marketPrice":6000000,"price":5400000,"price_off":10,"currency":"vnd","sale_rules":{"price":5400000,"normal_price":5400000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 15:46:11","warranty":"24 tháng","productName":"Bàn phím cơ Asus ROG Strix Flare II Animate (USB/ RGB/ NX Blue/ Màu đen)","productSummary":"

Kết nối: USB 2.0 (TypeC sang TypeA)

\r\n

Key Switch: ROG NX Blue

\r\n

Size: 100%

\r\n

Tất cả các phím đều có thể lập trình

\r\n

Màn hình LED AniMe Matrix™

\r\n

Đèn LED RGB trên từng phím

\r\n

Đèn LED dưới mặt trước bàn phím

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha2.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-co-asus-rog-strix-flare-ii-animate","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":230,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":6437,"productId":6437,"priceUnit":"chiếc","marketPrice":4500000,"price":3990000,"price_off":11,"currency":"vnd","sale_rules":{"price":3990000,"normal_price":3990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-14 15:28:41","warranty":"12 tháng","productName":"Bàn phím cơ không dây Machenike KT68 Pro White North Pole Brown Switch","productSummary":"

Layout: 68 phím

\r\n

Kết nối: Wired/ Bluetooth/ 2.4G Wireless

\r\n

Switch: Gateron G Pro 2.0

\r\n

Hot Swapping. Audio visualizer. Smart Screen

\r\n

Đèn nền RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha10.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white__ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white__ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white__ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white__ha2.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-machenike-kt68-pro-white","brand":{"id":151,"brand_index":"machenike","name":"MACHENIKE","image":"https://hoanghapccdn.com/media/brand/machenike.png","url":"/brand/machenike"},"visit":155,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":4999,"productId":4999,"priceUnit":"chiếc","marketPrice":0,"price":390000,"price_off":"","currency":"vnd","sale_rules":{"price":390000,"normal_price":590000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1769995800,"type":"deal","type_id":169},"lastUpdate":"2025-12-29 13:49:46","warranty":"12 tháng","productName":"Chuột Gaming Motospeed V100 Pro Red True Esport","productSummary":"

Cảm biến kép, Cảm biến quang PAW3327 và LOD

\r\n

Nút bấm Huano độ bền 20 triệu lần

\r\n

Dây tín hiệu bọc dù mềm độ dài 1,7m, chống nhiễu, đầu cắm USB mạ vàng

\r\n

Chân đế Teflon bản lớn

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_4999_v100_pro_red_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_4999_v100_pro_red_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_4999_v100_pro_red_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_4999_v100_pro_red_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_4999_v100pro_red_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_4999_v100pro_red_ha1.jpg","original":""},"alt":""}],"productUrl":"/chuot-gaming-motospeed-v100-pro-red-true-esport","brand":{"id":92,"brand_index":"motospeed","name":"MOTOSPEED","image":"https://hoanghapccdn.com/media/brand/motospeed.jpg","url":"/brand/motospeed"},"visit":1465,"rating":5,"reviewCount":1,"review":{"rate":5,"total":1},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":169,"pro_id":4999,"title":"Chuột gaming Motospeed V100 Pro Red True Esport","price":390000,"quantity":10,"sale_quantity":7,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1769995800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":390000,"type":"deal","type_id":169}],"categories":[{"id":19,"catPath":":19:25","name":"Chuột Máy Tính","url":"/chuot-may-tinh"}]},{"id":3332,"productId":3332,"priceUnit":"chiếc","marketPrice":0,"price":499000,"price_off":"","currency":"vnd","sale_rules":{"price":499000,"normal_price":499000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2022-03-19 15:06:21","warranty":"12 tháng","productName":"Chuột máy tính Galax Slider-03 RGB Gaming","productSummary":"DPI: 7200\r\nMouse Backlighting: RGB\r\nĐộ dài cáp: 1.5M\r\nDạng cáp: USB 2.0 sợi bện\r\nTrọng lượng: 121.7g (có cáp)\r\nKết nối: USB\r\nPhần mềm: không\r\nSố nút: 7 nút Macro có thể lập trình","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_1.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_","large":"https://hoanghapccdn.com/media/product/250_3332_","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_5.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_4.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_3.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_2.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_1.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_1.jpg","original":""},"alt":""}],"productUrl":"/chuot-may-tinh-galax-slider-03-rgb-gaming","brand":{"id":16,"brand_index":"galax","name":"GALAX","image":"https://hoanghapccdn.com/media/brand/galax.jpg","url":"/brand/galax"},"visit":5923,"rating":5,"reviewCount":3810,"review":{"rate":5,"total":3810},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":null,"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":null,"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":19,"catPath":":19:25","name":"Chuột Máy Tính","url":"/chuot-may-tinh"}]}] + "list": [{"id":5534,"productId":5534,"priceUnit":"chiếc","marketPrice":0,"price":0,"price_off":"","currency":"vnd","sale_rules":{"price":0,"normal_price":0,"min_purchase":1,"max_purchase":0,"remain_quantity":0,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-12-01 16:22:33","warranty":"12 tháng","productName":"Bàn phím cơ DareU EK104 White Black","productSummary":"

Sử dụng swich DareU Dream (linear) cao cấp, đã được lube sẵn.

\r\n

Stabilizer được cân chỉnh và lube sẵn

\r\n

Switch: DareU DREAM 

\r\n

Keycap ABS Doubleshot chất lượng cao

\r\n

LED 7 màu chia theo vùng

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_5534_ek104_white_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_5534_ek104_white_black_ha2.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-co-dareu-ek104-white-black","brand":{"id":5,"brand_index":"dareu","name":"DAREU","image":"https://hoanghapccdn.com/media/brand/dareu.jpg","url":"/brand/dareu"},"visit":2286,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":0,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":6035,"productId":6035,"priceUnit":"chiếc","marketPrice":500000,"price":450000,"price_off":10,"currency":"vnd","sale_rules":{"price":450000,"normal_price":450000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-06-30 17:43:45","warranty":"12 tháng","productName":"Chuột Fuhlen G90 Pro X Black","productSummary":"

Chuẩn kết nối: Dây USB

\r\n

Thiết kế bất đối xứng dành cho người thuận tay phải.

\r\n

Mắt cảm biến PWM3325

\r\n

Độ phân giải: 8.000 DPI

\r\n

Led: RGB Logo

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha4.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6035_g90_pro_x_black_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6035_g90_pro_x_black_ha1.jpg","original":""},"alt":""}],"productUrl":"/chuot-fuhlen-g90-pro-x-black","brand":{"id":64,"brand_index":"fuhlen","name":"FUHLEN","image":"https://hoanghapccdn.com/media/brand/fuhlen.jpg","url":"/brand/fuhlen"},"visit":906,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169}],"categories":[{"id":19,"catPath":":19:25","name":"Chuột Máy Tính","url":"/chuot-may-tinh"}]},{"id":6061,"productId":6061,"priceUnit":"chiếc","marketPrice":0,"price":1290000,"price_off":"","currency":"vnd","sale_rules":{"price":1290000,"normal_price":1490000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":361},"lastUpdate":"2026-01-05 10:53:38","warranty":"12 tháng","productName":"Bàn phím cơ DareU EK106 PRO Black Golden Cloud switch","productSummary":"

Hỗ trợ 3 kết nối: Wireless 2.4 Ghz, Bluetooth và có dây USB

\r\n

Hỗ trợ hotswap switch

\r\n

LED RGB 16.8 triệu màu

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6061_ek106_pro_black_golden_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6061_ek106_pro_black_golden_ha1.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-co-dareu-ek106-pro-black-golden-cloud","brand":{"id":5,"brand_index":"dareu","name":"DAREU","image":"https://hoanghapccdn.com/media/brand/dareu.jpg","url":"/brand/dareu"},"visit":820,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":361,"pro_id":6061,"title":"Bàn phím cơ DareU EK106 PRO Black Golden Cloud switch","price":1290000,"quantity":10,"sale_quantity":2,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":6317,"productId":6317,"priceUnit":"chiếc","marketPrice":2300000,"price":2149000,"price_off":7.000000000000001,"currency":"vnd","sale_rules":{"price":2149000,"normal_price":2149000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 14:33:48","warranty":"24 tháng","productName":"Tai nghe Asus ROG Delta Core (Jack 3.5mm/ Đen xám)","productSummary":"

Kết nối: Jack 3.5mm

\r\n

Độ lớn Driver: ø50mm

\r\n

Trở kháng trở kháng: 32Ω

\r\n

Tần số tai nghe: 20 ~ 40000 Hz

\r\n

Tần số microphone: 100 ~ 10000 Hz

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6317_rog_delta_core_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6317_rog_delta_core_ha4.jpg","original":""},"alt":""}],"productUrl":"/tai-nghe-asus-rog-delta-core","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":107,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":26,"catPath":":26:25","name":"Tai Nghe","url":"/tai-nghe"}]},{"id":6321,"productId":6321,"priceUnit":"chiếc","marketPrice":6000000,"price":5790000,"price_off":4,"currency":"vnd","sale_rules":{"price":5790000,"normal_price":5790000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 16:18:56","warranty":"24 tháng","productName":"Tai nghe Asus ROG Delta II Wireless (Bluetooth/ RF 2.4 GHz/ RGB/ Màu đen)","productSummary":"

Kết nối: Bluetooth®, RF 2.4 GHz, Jack 3.5mm

\r\n

Độ lớn Driver: ø50mm

\r\n

Trở kháng trở kháng: 32Ω

\r\n

Tần số tai nghe: 20Hz - 20KHz

\r\n

Tần số microphone: 100Hz - 10KHz

\r\n

Pin: 1800 mAh

\r\n

Lighting: RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6321_rog_delta_ii_wireless_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6321_rog_delta_ii_wireless_ha2.jpg","original":""},"alt":""}],"productUrl":"/tai-nghe-asus-rog-delta-ii-wireless","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":124,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":26,"catPath":":26:25","name":"Tai Nghe","url":"/tai-nghe"}]},{"id":6323,"productId":6323,"priceUnit":"chiếc","marketPrice":4000000,"price":3490000,"price_off":13,"currency":"vnd","sale_rules":{"price":3490000,"normal_price":3490000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 16:19:43","warranty":"24 tháng","productName":"Tai nghe Asus ROG Pelta Wireless (Bluetooth/ RF 2.4 GHz/ USB-C/ RGB/ Màu đen)","productSummary":"

Kết nối: Bluetooth, RF 2.4 GHz, USB-C

\r\n

Độ lớn Driver: ø50mm

\r\n

Trở kháng trở kháng: 32Ω

\r\n

Tần số tai nghe: 20Hz - 20KHz

\r\n

Tần số microphone: 100Hz - 10KHz

\r\n

Pin: 900 mAh

\r\n

Lighting: RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha23.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha23.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6323_rog_pelta_wireless_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6323_rog_pelta_wireless_ha5.jpg","original":""},"alt":""}],"productUrl":"/tai-nghe-asus-rog-pelta-wireless","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":127,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":26,"catPath":":26:25","name":"Tai Nghe","url":"/tai-nghe"}]},{"id":6324,"productId":6324,"priceUnit":"chiếc","marketPrice":6000000,"price":5400000,"price_off":10,"currency":"vnd","sale_rules":{"price":5400000,"normal_price":5400000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-09-03 15:46:11","warranty":"24 tháng","productName":"Bàn phím cơ Asus ROG Strix Flare II Animate (USB/ RGB/ NX Blue/ Màu đen)","productSummary":"

Kết nối: USB 2.0 (TypeC sang TypeA)

\r\n

Key Switch: ROG NX Blue

\r\n

Size: 100%

\r\n

Tất cả các phím đều có thể lập trình

\r\n

Màn hình LED AniMe Matrix™

\r\n

Đèn LED RGB trên từng phím

\r\n

Đèn LED dưới mặt trước bàn phím

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha1.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6324_rog_strix_flare_ii_animate_ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6324_rog_strix_flare_ii_animate_ha2.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-co-asus-rog-strix-flare-ii-animate","brand":{"id":2,"brand_index":"asus","name":"ASUS","image":"https://hoanghapccdn.com/media/brand/asus.jpg","url":"/brand/asus"},"visit":230,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":6437,"productId":6437,"priceUnit":"chiếc","marketPrice":4500000,"price":3990000,"price_off":11,"currency":"vnd","sale_rules":{"price":3990000,"normal_price":3990000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2025-10-14 15:28:41","warranty":"12 tháng","productName":"Bàn phím cơ không dây Machenike KT68 Pro White North Pole Brown Switch","productSummary":"

Layout: 68 phím

\r\n

Kết nối: Wired/ Bluetooth/ 2.4G Wireless

\r\n

Switch: Gateron G Pro 2.0

\r\n

Hot Swapping. Audio visualizer. Smart Screen

\r\n

Đèn nền RGB

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha10.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha10.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha9.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha9.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha8.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha8.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha7.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha7.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha6.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha6.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha5.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white_ha4.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white_ha4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white__ha3.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white__ha3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_6437_kt68_pro_white__ha2.jpg","large":"https://hoanghapccdn.com/media/product/250_6437_kt68_pro_white__ha2.jpg","original":""},"alt":""}],"productUrl":"/ban-phim-machenike-kt68-pro-white","brand":{"id":151,"brand_index":"machenike","name":"MACHENIKE","image":"https://hoanghapccdn.com/media/brand/machenike.png","url":"/brand/machenike"},"visit":155,"rating":0,"reviewCount":0,"review":{"rate":0,"total":0},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[{"price":390000,"type":"deal","type_id":169},{"price":1290000,"type":"deal","type_id":361}],"categories":[{"id":18,"catPath":":18:25","name":"Bàn Phím","url":"/ban-phim"}]},{"id":4999,"productId":4999,"priceUnit":"chiếc","marketPrice":0,"price":390000,"price_off":"","currency":"vnd","sale_rules":{"price":390000,"normal_price":590000,"min_purchase":1,"max_purchase":10,"remain_quantity":1,"from_time":1767574800,"to_time":1801531800,"type":"deal","type_id":169},"lastUpdate":"2025-12-29 13:49:46","warranty":"12 tháng","productName":"Chuột Gaming Motospeed V100 Pro Red True Esport","productSummary":"

Cảm biến kép, Cảm biến quang PAW3327 và LOD

\r\n

Nút bấm Huano độ bền 20 triệu lần

\r\n

Dây tín hiệu bọc dù mềm độ dài 1,7m, chống nhiễu, đầu cắm USB mạ vàng

\r\n

Chân đế Teflon bản lớn

","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_4999_v100_pro_red_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_4999_v100_pro_red_sale.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_4999_v100_pro_red_sale.jpg","large":"https://hoanghapccdn.com/media/product/250_4999_v100_pro_red_sale.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_4999_v100pro_red_ha1.jpg","large":"https://hoanghapccdn.com/media/product/250_4999_v100pro_red_ha1.jpg","original":""},"alt":""}],"productUrl":"/chuot-gaming-motospeed-v100-pro-red-true-esport","brand":{"id":92,"brand_index":"motospeed","name":"MOTOSPEED","image":"https://hoanghapccdn.com/media/brand/motospeed.jpg","url":"/brand/motospeed"},"visit":1465,"rating":5,"reviewCount":1,"review":{"rate":5,"total":1},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":[],"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":[],"weight":0,"promotion_price":null,"deal_list":[{"id":169,"pro_id":4999,"title":"Chuột gaming Motospeed V100 Pro Red True Esport","price":390000,"quantity":10,"sale_quantity":7,"min_purchase":1,"max_purchase":10,"is_featured":0,"from_time":1767574800,"to_time":1801531800,"discount_type":"percent","discount_value":0,"is_started":1}],"pricing_traces":[{"price":390000,"type":"deal","type_id":169}],"categories":[{"id":19,"catPath":":19:25","name":"Chuột Máy Tính","url":"/chuot-may-tinh"}]},{"id":3332,"productId":3332,"priceUnit":"chiếc","marketPrice":0,"price":499000,"price_off":"","currency":"vnd","sale_rules":{"price":499000,"normal_price":499000,"min_purchase":1,"max_purchase":1,"remain_quantity":1,"from_time":0,"to_time":0,"type":""},"lastUpdate":"2022-03-19 15:06:21","warranty":"12 tháng","productName":"Chuột máy tính Galax Slider-03 RGB Gaming","productSummary":"DPI: 7200\r\nMouse Backlighting: RGB\r\nĐộ dài cáp: 1.5M\r\nDạng cáp: USB 2.0 sợi bện\r\nTrọng lượng: 121.7g (có cáp)\r\nKết nối: USB\r\nPhần mềm: không\r\nSố nút: 7 nút Macro có thể lập trình","package_accessory":"0","productImage":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_1.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_1.jpg","original":""},"imageCollection":[{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_","large":"https://hoanghapccdn.com/media/product/250_3332_","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_5.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_5.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_4.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_4.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_3.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_3.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_2.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_2.jpg","original":""},"alt":""},{"image":{"small":"https://hoanghapccdn.com/media/product/75_3332_galax_slider_3_1.jpg","large":"https://hoanghapccdn.com/media/product/250_3332_galax_slider_3_1.jpg","original":""},"alt":""}],"productUrl":"/chuot-may-tinh-galax-slider-03-rgb-gaming","brand":{"id":16,"brand_index":"galax","name":"GALAX","image":"https://hoanghapccdn.com/media/brand/galax.jpg","url":"/brand/galax"},"visit":5923,"rating":5,"reviewCount":3810,"review":{"rate":5,"total":3810},"comment":{"rate":0,"total":0},"quantity":1,"productSKU":"0","productModel":"","hasVAT":0,"condition":"0","config_count":0,"configurable":0,"component_count":0,"specialOffer":{"all":[]},"specialOfferGroup":[],"productType":{"isNew":0,"isHot":1,"isBestSale":0,"isSaleOff":0,"online-only":0},"bulk_price":null,"thum_poster":"0","thum_poster_type":"","addon":[],"variants":[],"variant_option":[],"extend":null,"weight":0,"promotion_price":null,"deal_list":[],"pricing_traces":[],"categories":[{"id":19,"catPath":":19:25","name":"Chuột Máy Tính","url":"/chuot-may-tinh"}]}] } ]; \ No newline at end of file diff --git a/src/hooks/useDealItem.ts b/src/hooks/useDealItem.ts index bb586f1..3ef10b8 100644 --- a/src/hooks/useDealItem.ts +++ b/src/hooks/useDealItem.ts @@ -9,8 +9,8 @@ export function useDealItem(item: DealItemProps) { const marketPrice = Number(productInfo.price); const discount = calculateDiscount(price, marketPrice); - const remain = item.quantity - item.sale_quantity; - const saleRemainPercent = 100 - (item.sale_quantity / item.quantity) * 100; + const remain = Number(item.quantity) - Number(item.sale_quantity); + const saleRemainPercent = 100 - (Number(item.sale_quantity) / Number(item.quantity)) * 100; const specialOffer = productInfo?.specialOffer?.all?.[0]?.title ?? ''; diff --git a/src/hooks/usePagination.ts b/src/hooks/usePagination.ts new file mode 100644 index 0000000..0634be4 --- /dev/null +++ b/src/hooks/usePagination.ts @@ -0,0 +1,35 @@ +'use client' + +import { useState, useMemo, useEffect } from "react"; + +export function usePagination(data: any, perPage: number = 30) { + + const [page, setPage] = useState(1); + + const total = data.length; + const totalPage = Math.ceil(total / perPage); + + useEffect(() => { + setPage(1); // reset khi data đổi + }, [data]); + + const currentData = useMemo(() => { + return data.slice(0, page * perPage); + // nếu muốn paging thật thì đổi thành: + // const start = (page - 1) * perPage; + // return data.slice(start, start + perPage); + }, [data, page, perPage]); + + const hasMore = page < totalPage; + + const loadMore = () => setPage(prev => prev + 1); + + return { + currentData, + hasMore, + loadMore, + page, + total, + totalPage + }; +} diff --git a/src/lib/times.tsx b/src/lib/times.tsx index 40f93f2..1ce678f 100644 --- a/src/lib/times.tsx +++ b/src/lib/times.tsx @@ -1,19 +1,36 @@ 'use client'; -import { useEffect, useState } from "react"; +import { useEffect, useState, useMemo } from "react"; + +export function DealCountdown({ endTime }: { endTime: any }) { + + const formatTime = useMemo(() => { + if (!endTime) return 0; + + if (typeof endTime === "string") { + const parsed = new Date(endTime).getTime(); + return isNaN(parsed) ? 0 : Math.floor(parsed / 1000); + } + + // Nếu là milliseconds (13 số) + if (endTime > 9999999999) { + return Math.floor(endTime / 1000); + } + + return endTime; + }, [endTime]); -export function DealCountdown({ endTime }: { endTime: number }) { const [mounted, setMounted] = useState(false); - const [timeLeft, setTimeLeft] = useState(getTimeLeft(endTime)); + const [timeLeft, setTimeLeft] = useState(getTimeLeft(formatTime)); useEffect(() => { setMounted(true); const timer = setInterval(() => { - setTimeLeft(getTimeLeft(endTime)); + setTimeLeft(getTimeLeft(formatTime)); }, 1000); return () => clearInterval(timer); - }, [endTime]); + }, [formatTime]); if (!mounted) return null; @@ -36,21 +53,21 @@ export function getTimeLeft(endTime: number) { const distance = endTime - now; if (distance <= 0) { - return { - total : 0, - days : '00', - hours : '00', - minutes : '00', - seconds : '00' + return { + total: 0, + days: '00', + hours: '00', + minutes: '00', + seconds: '00' }; } return { - total : distance, - days : String(Math.floor(distance / 86400)).padStart(2, '0'), - hours : String(Math.floor((distance % 86400) / 3600)).padStart(2, '0'), - minutes : String(Math.floor((distance % 3600) / 60)).padStart(2, '0'), - seconds : String(distance % 60).padStart(2, '0'), + total: distance, + days: String(Math.floor(distance / 86400)).padStart(2, '0'), + hours: String(Math.floor((distance % 86400) / 3600)).padStart(2, '0'), + minutes: String(Math.floor((distance % 3600) / 60)).padStart(2, '0'), + seconds: String(distance % 60).padStart(2, '0'), }; } diff --git a/src/lib/utils.tsx b/src/lib/utils.tsx index 4a152df..f3b36af 100644 --- a/src/lib/utils.tsx +++ b/src/lib/utils.tsx @@ -38,6 +38,37 @@ export function formatTextList( .join(''); } +export function renderSummary(data: any) { + if (!data) return null; + + // Nếu là HTML string + if (typeof data === 'string' && data.includes('<')) { + + // Bỏ toàn bộ tag HTML + const textOnly = data.replace(/<[^>]*>/g, '\n'); + + return textOnly + .split(/\r?\n/) + .filter((line: string) => line.trim() !== '') + .map((line: string, index: number) => ( +
+ {line.trim()} +
+ )); + } + + // Nếu là text thường + return data + .split(/\r?\n/) + .filter((line: string) => line.trim() !== '') + .map((line: string, index: number) => ( +
+ {line.trim()} +
+ )); +} + + // Format giá export function formatPrice(amount: number) { return amount.toLocaleString('vi-VN'); @@ -114,3 +145,4 @@ export function convertToSlug(text: string) { .trim() .replace(/ +/g, "-"); } +