@@ -1834,7 +1840,7 @@
-
🆕 Recently Restocked (last 24h)
+
🆕 Recently Restocked (last 24h) DEMO DATA
No recent restock events
@@ -6803,11 +6809,11 @@ async function lookupStock() {
var latest = obs[0];
resultEl.innerHTML = '
' + esc(tx.part_number) + ' — '
+ esc(tx.form_factor || '') + ' ' + esc(tx.speed || '') + '
'
- + '
DE-Lager: ' + (latest.warehouse_de_qty != null ? latest.warehouse_de_qty : '—') + ' · '
- + '
Global: ' + (latest.warehouse_global_qty != null ? latest.warehouse_global_qty : '—') + ' · '
- + '
Nachlieferung: ' + (latest.backorder_qty != null ? latest.backorder_qty : '—') + ' · '
+ + '
DE-Lager: ' + (latest.warehouse_de_qty != null ? latest.warehouse_de_qty : '—') + '[demo] · '
+ + '
Global: ' + (latest.warehouse_global_qty != null ? latest.warehouse_global_qty : '—') + '[demo] · '
+ + '
Nachlieferung: ' + (latest.backorder_qty != null ? latest.backorder_qty : '—') + '[demo] · '
+ (latest.price_net != null ? '€' + Number(latest.price_net).toFixed(2) + ' (net)' : '')
- + (latest.units_sold != null ? ' ·
' + latest.units_sold + 'Ă— verkauft' : '')
+ + (latest.units_sold != null ? ' ·
' + latest.units_sold + 'Ă— verkauft
[demo]' : '')
+ '
via ' + esc(latest.vendor_name) + ' · ' + new Date(latest.time).toLocaleString('de-DE') + ''
+ (obs.length > 1 ? '
(' + obs.length + ' observations this week)' : '');
} catch(e) {