{% macro slugify(text) -%} {{ text|string|replace(' ', '_')|replace(':', '')|replace('!', '')|replace('?', '')|replace('/', '')|replace('&', '')|replace('(', '')|replace(')', '') }} {%- endmacro %} MOMO 限時搶購監控

🔥 限時搶購監控儀表板

活動時間: {{ activity_time }} | 最後更新: {{ last_update }} | 商品總數: {{ total_edm_products }}

{% for slot, stats in slot_stats.items() %} {% set items = grouped_items.get(slot, []) %} {% set slot_id = slugify(slot) %}
📊 時段統計: 新品: {{ stats['new'] }} 漲價: {{ stats['up'] }} 降價: {{ stats['down'] }} 下架: {{ stats.get('delisted_last_run', 0) }}
{% for item in items %}
{{ item.name }}
${{ item.price }}
{% if item.status_change == 'NEW' %} NEW {% elif item.status_change == 'PRICE_DOWN' %} ↘ 降價 {% elif item.status_change == 'PRICE_UP' %} ↗ 漲價 {% elif item.status_change == 'DELISTED' %} 下架 {% endif %}
分類: {{ item.main_category or '未分類' }}
頻次: {{ item.frequency }} 次
{% endfor %}
{% endfor %}