CNY 2026 促銷目標客戶分析

Campaign CP-26-006 & CP-26-008

發佈於

2026年3月6日

概述

本文件包含兩個 CNY 2026 促銷活動的目標客戶分析:

Campaign 目標 路線
CP-26-006 蔥抓餅 & 雞塊交叉銷售 + 流失挽回 A-PT, A-PN
CP-26-008 個人化消費門檻紅包 A-PT, A-PN (非006目標) + K1, K2
程式碼
# =============================================================================
# DATE CONSTANTS
# =============================================================================
# CP-26-006 periods
PERIOD_START_006 = "20251101"
YEAR_START = "20250101"

# CP-26-008 baseline period (same as CNY 2026 preparation)
# 8 weeks (56 days) ending on 2026-01-09
BASELINE_2026_START = "20251115"
BASELINE_2026_END = "20260109"
BASELINE_DAYS = 56

# Target routes
ROUTES_006 = ["A-PT", "A-PN"]
ROUTES_008_ADDITIONAL = ["K1", "K2"]
ALL_ROUTES_008 = ["A-PT", "A-PN", "K1", "K2"]

# =============================================================================
# EXCLUSION LIST - Never target these customers
# =============================================================================
EXCLUDED_NAME_PATTERNS = ["宵歸暝", "小田園", "萊恩", "停用", "恬芯", "早安8", "大屏北", "香醇軒"]

# =============================================================================
# LOAD DELETED RECORDS FOR FILTERING
# =============================================================================
# deletion_log uses internal ERP table names (COPTH=sales_order_lines, COPTI=sales_return_lines)
deleted_order_lines = con.sql("""
    SELECT
        TRIM(record_pk_001) as order_type,
        TRIM(record_pk_002) as order_number,
        TRIM(record_pk_003) as line_number
    FROM cosmos_sync.deletion_log
    WHERE table_name = 'COPTH'
""").to_polars()

deleted_return_lines = con.sql("""
    SELECT
        TRIM(record_pk_001) as return_type,
        TRIM(record_pk_002) as return_number,
        TRIM(record_pk_003) as line_number
    FROM cosmos_sync.deletion_log
    WHERE table_name = 'COPTI'
""").to_polars()

# Create sets for efficient lookup
deleted_order_keys = set(
    zip(deleted_order_lines["order_type"], deleted_order_lines["order_number"], deleted_order_lines["line_number"])
)
deleted_return_keys = set(
    zip(deleted_return_lines["return_type"], deleted_return_lines["return_number"], deleted_return_lines["line_number"])
)

print(f"Loaded {len(deleted_order_keys):,} deleted order lines, {len(deleted_return_keys):,} deleted return lines")

# =============================================================================
# LOAD BASE DATA
# =============================================================================
# Load customers table
customers_raw = con.sql("""
    SELECT
        customer_code,
        trade_name,
        delivery_route,
        closure_date
    FROM cosmos_sync.customers
""").to_polars()

print(f"Loaded {len(customers_raw):,} customers")

# Filter out excluded customers by name patterns
excluded_mask = pl.lit(False)
for pattern in EXCLUDED_NAME_PATTERNS:
    excluded_mask = excluded_mask | pl.col("trade_name").str.contains(pattern)

excluded_customers = customers_raw.filter(excluded_mask)
customers_raw = customers_raw.filter(~excluded_mask)

print(f"Excluded {len(excluded_customers):,} customers matching: {EXCLUDED_NAME_PATTERNS}")
print(f"Remaining customers: {len(customers_raw):,}")

# =============================================================================
# EXCLUDE INACTIVE CUSTOMERS (no orders since 2024-07-01)
# =============================================================================
INACTIVE_CUTOFF = "20240701"

active_customers = con.sql(f"""
    SELECT DISTINCT customer_code
    FROM cosmos_sync.sales_orders
    WHERE confirmed_code = 'Y'
        AND order_date >= '{INACTIVE_CUTOFF}'
""").to_polars()

active_customer_codes = set(active_customers["customer_code"].to_list())
before_inactive_filter = len(customers_raw)

customers_raw = customers_raw.filter(
    pl.col("customer_code").is_in(active_customer_codes)
)

inactive_excluded = before_inactive_filter - len(customers_raw)
print(f"Excluded {inactive_excluded:,} inactive customers (no orders since {INACTIVE_CUTOFF})")
print(f"Remaining active customers: {len(customers_raw):,}")
Loaded 2,441 deleted order lines, 0 deleted return lines
Loaded 10,262 customers
Excluded 174 customers matching: ['宵歸暝', '小田園', '萊恩', '停用', '恬芯', '早安8', '大屏北', '香醇軒']
Remaining customers: 10,074
Excluded 8,068 inactive customers (no orders since 20240701)
Remaining active customers: 2,006

Campaign CP-26-006: 蔥抓餅 & 雞塊交叉銷售

1. 分析目的 (CP-26-006)

識別屏東市/屏北地區適合促銷活動的目標客戶:

  1. 交叉銷售 (Cross-Sell): 近期有訂單但未購買目標產品的客戶
  2. 流失挽回 (Win-Back): 曾經購買但近期無訂單的流失客戶

篩選條件:

  • 地理條件: 配送路線為 A-PT 或 A-PN
  • 交叉銷售: 2025-11-01 以來有訂單,但未購買「蔥抓餅」且未購買「雞塊」
  • 流失挽回: 2025 年有訂單,但 2025-11-01 以來無任何訂單
程式碼
# Load ALL 2025 sales orders for A-PT/A-PN routes
all_2025_orders_006 = con.sql("""
    SELECT
        so.customer_code,
        so.delivery_route,
        so.order_date,
        sol.order_type,
        sol.order_number,
        sol.line_number,
        sol.item_code,
        sol.item_description,
        COALESCE(sol.pretax_subtotal, 0) as line_total
    FROM cosmos_sync.sales_orders so
    JOIN cosmos_sync.sales_order_lines sol
        ON so.order_type = sol.order_type
        AND so.order_number = sol.order_number
    WHERE so.confirmed_code = 'Y'
        AND so.order_date >= '20250101'
        AND so.delivery_route IN ('A-PT', 'A-PN')
""").to_polars()

# Filter out deleted order lines
all_2025_orders_006 = all_2025_orders_006.filter(
    ~pl.struct(["order_type", "order_number", "line_number"]).map_elements(
        lambda x: (x["order_type"], x["order_number"], x["line_number"]) in deleted_order_keys,
        return_dtype=pl.Boolean
    )
).drop(["order_type", "order_number", "line_number"])

# Load 2025 sales returns for A-PT/A-PN routes (for revenue netting)
all_2025_returns_006 = con.sql("""
    SELECT
        sr.customer_code,
        sr.delivery_route,
        sr.return_date as order_date,
        srl.return_type,
        srl.return_number,
        srl.line_number,
        srl.item_code,
        srl.item_description,
        -COALESCE(srl.pretax_subtotal, 0) as line_total  -- negative for netting
    FROM cosmos_sync.sales_returns sr
    JOIN cosmos_sync.sales_return_lines srl
        ON sr.return_type = srl.return_type
        AND sr.return_number = srl.return_number
    WHERE sr.confirmed_code = 'Y'
        AND sr.return_date >= '20250101'
        AND sr.delivery_route IN ('A-PT', 'A-PN')
""").to_polars()

# Filter out deleted return lines
all_2025_returns_006 = all_2025_returns_006.filter(
    ~pl.struct(["return_type", "return_number", "line_number"]).map_elements(
        lambda x: (x["return_type"], x["return_number"], x["line_number"]) in deleted_return_keys,
        return_dtype=pl.Boolean
    )
).drop(["return_type", "return_number", "line_number"])

# Combine orders and returns for accurate revenue calculation
all_2025_orders_006 = pl.concat([all_2025_orders_006, all_2025_returns_006])

# Split into recent (since Nov 1) and earlier periods
recent_orders_006 = all_2025_orders_006.filter(pl.col("order_date") >= PERIOD_START_006)
earlier_orders_006 = all_2025_orders_006.filter(pl.col("order_date") < PERIOD_START_006)

print(f"Loaded {len(all_2025_orders_006):,} order lines in 2025 for A-PT/A-PN")
print(f"  - Recent (since Nov 1): {len(recent_orders_006):,} lines")
print(f"  - Earlier (before Nov 1): {len(earlier_orders_006):,} lines")
Loaded 136,555 order lines in 2025 for A-PT/A-PN
  - Recent (since Nov 1): 39,275 lines
  - Earlier (before Nov 1): 97,280 lines

2. 客戶篩選 (CP-26-006)

2.1 交叉銷售目標 (Cross-Sell)

程式碼
# Get active customers in A-PT/A-PN routes
geo_customers_006 = customers_raw.filter(
    pl.col("delivery_route").is_in(ROUTES_006) &
    pl.col("closure_date").is_null()
).select("customer_code", "trade_name", "delivery_route")

print(f"Geographic filter: {len(geo_customers_006):,} active customers in A-PT/A-PN routes")

# Find customers who purchased 蔥抓餅 since Nov 1
scallion_buyers = (
    recent_orders_006
    .filter(pl.col("item_description").str.contains("蔥抓餅"))
    .select("customer_code")
    .unique()
)
scallion_buyer_codes = set(scallion_buyers["customer_code"].to_list())
print(f"Purchased 蔥抓餅 since Nov 1: {len(scallion_buyer_codes):,} customers")

# Find customers who purchased 雞塊 since Nov 1
nugget_buyers = (
    recent_orders_006
    .filter(pl.col("item_description").str.contains("雞塊"))
    .select("customer_code")
    .unique()
)
nugget_buyer_codes = set(nugget_buyers["customer_code"].to_list())
print(f"Purchased 雞塊 since Nov 1: {len(nugget_buyer_codes):,} customers")

# Customers who bought neither target product
buyers_to_exclude_006 = scallion_buyer_codes | nugget_buyer_codes

# Calculate revenue for each customer since Nov 1
customer_recent_revenue_006 = (
    recent_orders_006
    .group_by("customer_code")
    .agg(pl.col("line_total").sum().alias("revenue_since_nov"))
)

# Get customers who have ordered since Nov 1 but bought neither target product
recent_active_customers_006 = set(customer_recent_revenue_006["customer_code"].to_list())

crosssell_customer_codes_006 = (
    set(geo_customers_006["customer_code"].to_list()) &
    recent_active_customers_006 -
    buyers_to_exclude_006
)

print(f"\n=== CROSS-SELL TARGETS ===")
print(f"Active since Nov 1 but bought neither product: {len(crosssell_customer_codes_006):,} customers")
Geographic filter: 588 active customers in A-PT/A-PN routes
Purchased 蔥抓餅 since Nov 1: 92 customers
Purchased 雞塊 since Nov 1: 160 customers

=== CROSS-SELL TARGETS ===
Active since Nov 1 but bought neither product: 286 customers

2.2 流失挽回目標 (Win-Back)

程式碼
# Find customers who ordered BEFORE Nov 1 but NOT since Nov 1
earlier_customers_006 = (
    earlier_orders_006
    .select("customer_code")
    .unique()
)
earlier_customer_codes_006 = set(earlier_customers_006["customer_code"].to_list())

# Churned = ordered before Nov 1, but not since Nov 1
churned_customer_codes_006 = (
    set(geo_customers_006["customer_code"].to_list()) &
    earlier_customer_codes_006 -
    recent_active_customers_006
)

print(f"Customers active before Nov 1: {len(earlier_customer_codes_006):,}")
print(f"Customers active since Nov 1: {len(recent_active_customers_006):,}")
print(f"\n=== WIN-BACK TARGETS ===")
print(f"Churned (no orders since Nov 1): {len(churned_customer_codes_006):,} customers")

# Calculate last order date and 2025 revenue for churned customers
churned_stats_006 = (
    all_2025_orders_006
    .filter(pl.col("customer_code").is_in(churned_customer_codes_006))
    .group_by("customer_code")
    .agg([
        pl.col("order_date").max().alias("last_order_date"),
        pl.col("line_total").sum().alias("revenue_2025")
    ])
)
Customers active before Nov 1: 594
Customers active since Nov 1: 481

=== WIN-BACK TARGETS ===
Churned (no orders since Nov 1): 103 customers

3. CP-26-006 目標名單

程式碼
# Build cross-sell target list
crosssell_targets_006 = (
    geo_customers_006
    .filter(pl.col("customer_code").is_in(crosssell_customer_codes_006))
    .join(customer_recent_revenue_006, on="customer_code", how="left")
    .with_columns([
        pl.col("revenue_since_nov").fill_null(0),
        pl.lit("交叉銷售").alias("target_type"),
        pl.lit(None).cast(pl.Utf8).alias("last_order_date"),
    ])
    .select([
        "customer_code", "trade_name", "delivery_route",
        "target_type", "revenue_since_nov", "last_order_date"
    ])
)

# Build win-back target list
winback_targets_006 = (
    geo_customers_006
    .filter(pl.col("customer_code").is_in(churned_customer_codes_006))
    .join(churned_stats_006, on="customer_code", how="left")
    .with_columns([
        pl.lit("流失挽回").alias("target_type"),
        pl.col("revenue_2025").alias("revenue_since_nov"),
    ])
    .select([
        "customer_code", "trade_name", "delivery_route",
        "target_type", "revenue_since_nov", "last_order_date"
    ])
)

# Combine both lists for CP-26-006
targets_006 = pl.concat([crosssell_targets_006, winback_targets_006]).sort("revenue_since_nov", descending=True)

# Store the set of targeted customer codes for CP-26-008 exclusion
targeted_codes_006 = set(targets_006["customer_code"].to_list())

print(f"\n=== CP-26-006 FINAL RESULTS ===")
print(f"Cross-sell targets: {len(crosssell_targets_006):,}")
print(f"Win-back targets: {len(winback_targets_006):,}")
print(f"Total CP-26-006 targets: {len(targets_006):,}")

=== CP-26-006 FINAL RESULTS ===
Cross-sell targets: 286
Win-back targets: 103
Total CP-26-006 targets: 389

4. CP-26-006 執行摘要

CP-26-006 目標客戶總覽

類型 A-PT (屏東市) A-PN (屏北) 小計 營收
交叉銷售 146 140 286 $7,866,717
流失挽回 61 42 103 $1,493,011
合計 207 182 389 $9,359,728

5. CP-26-006 目標客戶明細

程式碼
display_006 = (
    targets_006
    .with_columns([
        pl.when(pl.col("last_order_date").is_not_null())
        .then(
            pl.col("last_order_date").str.slice(0, 4) + "/" +
            pl.col("last_order_date").str.slice(4, 2) + "/" +
            pl.col("last_order_date").str.slice(6, 2)
        )
        .otherwise(pl.lit("-"))
        .alias("last_order_display")
    ])
    .select([
        "customer_code", "trade_name", "delivery_route",
        "target_type", "revenue_since_nov", "last_order_display"
    ])
)

(
    GT(display_006)
    .tab_header(
        title="CP-26-006 目標客戶完整名單",
        subtitle="交叉銷售 + 流失挽回客戶"
    )
    .cols_label(
        customer_code="客戶代碼",
        trade_name="商號名稱",
        delivery_route="路線",
        target_type="目標類型",
        revenue_since_nov="營收",
        last_order_display="最後訂單"
    )
    .fmt_number(columns=["revenue_since_nov"], decimals=0, use_seps=True)
    .tab_style(
        style=style.fill(color="#e3f2fd"),
        locations=loc.body(columns="target_type", rows=pl.col("target_type") == "交叉銷售")
    )
    .tab_style(
        style=style.fill(color="#fff3e0"),
        locations=loc.body(columns="target_type", rows=pl.col("target_type") == "流失挽回")
    )
    .tab_source_note(source_note="交叉銷售營收 = 2025/11起; 流失挽回營收 = 2025全年")
)
CP-26-006 目標客戶完整名單
交叉銷售 + 流失挽回客戶
客戶代碼 商號名稱 路線 目標類型 營收 最後訂單
0110870 蔡蛋 A-PT 交叉銷售 346,666 -
1010057 永和-新圍(1.4) A-PN 交叉銷售 345,212 -
5870001 新月牛角烘焙食品行 A-PT 交叉銷售 335,506 -
0130282 孔家小館(屏東) A-PT 交叉銷售 201,246 -
5870003 宵棧食品有限公司 A-PT 交叉銷售 186,785 -
0110039 陸橋豆乳 A-PT 交叉銷售 178,585 -
0810013 金屋早點2.5 A-PN 交叉銷售 171,380 -
0110008 鍋貼叔叔 A-PT 交叉銷售 164,534 -
1030021 鹽埔火鍋2.5 A-PN 交叉銷售 159,167 -
1110022 美而美-高樹 2.5 A-PN 交叉銷售 155,253 -
0120959 巧味鹽酥雞(勝利路) A-PT 交叉銷售 151,031 -
1010041 美香早點(2.5) A-PN 交叉銷售 150,409 -
0111249 咔啦堡快速早餐-仁愛店 A-PT 流失挽回 124,193 2025/10/02
6310004 林宥婕-3 A-PN 交叉銷售 122,896 -
0111156 咕嘰加盟-永大 A-PT 交叉銷售 121,739 -
1120024 俊龍商號-中盤2.5 A-PN 交叉銷售 119,559 -
0910011 天心-三塊厝-2.5 A-PN 交叉銷售 119,521 -
0110023 永和-屏東民生 A-PT 流失挽回 113,031 2025/03/03
0130093 上班族 A-PT 流失挽回 102,734 2025/10/16
0810065 小叮噹-九如2.5 A-PN 交叉銷售 100,492 -
0111092 咕嘰咕嘰-民族 A-PT 交叉銷售 100,028 -
1110124 鍾泰雄-2.5 A-PN 流失挽回 98,829 2025/10/21
0111243 二弄1號你的廚房 A-PT 交叉銷售 97,899 -
0111189 咕嘰咕嘰-和平 A-PT 交叉銷售 96,373 -
1110126 史努比2.5 A-PN 流失挽回 95,225 2025/09/19
0110166 欣欣漢堡店 A-PT 交叉銷售 93,360 -
1020007 大西洋-鹽埔-1.4 A-PN 交叉銷售 89,441 -
0121051 825生鮮超市2.5 A-PT 交叉銷售 87,375 -
0910073 每天早點2.5 A-PN 交叉銷售 87,028 -
0620007 大茶杯-繁華1.4 A-PN 交叉銷售 81,375 -
0190018 反轉厚奶酥-屏東店 A-PT 流失挽回 81,132 2025/07/07
0110009 早來找去 A-PT 交叉銷售 77,195 -
1010011 邱月霞1.4 A-PN 交叉銷售 76,543 -
0190005 午夜快車 A-PT 交叉銷售 72,338 -
0111267 吉雞伙 A-PT 交叉銷售 71,864 -
0150004 陳吉隆-海豐市場-3 A-PT 流失挽回 69,050 2025/10/15
0111214 早安二弄1號早餐 A-PT 交叉銷售 69,006 -
0110013 喀拉喀民族店 A-PT 交叉銷售 64,140 -
0180174 碳烤饅頭餐車 A-PT 流失挽回 63,889 2025/10/08
0110704 麥味登-屏東信義 A-PT 交叉銷售 63,616 -
6430014 美濃客家美食坊-3 A-PN 交叉銷售 63,499 -
0110911 飯糰(牛頭屋前) A-PT 交叉銷售 62,816 -
0610076 李師傅手作餅舖1.4 A-PN 交叉銷售 58,678 -
0110713 公興早點2.5 A-PT 交叉銷售 58,620 -
0810059 奇妙屋早點2.5 A-PN 交叉銷售 55,134 -
0111170 馬鹿早午餐 A-PT 流失挽回 54,135 2025/09/17
0110149 復興早點-1.4 A-PN 交叉銷售 53,919 -
0111114 喬亞米早午餐 A-PT 交叉銷售 51,335 -
0190007 南鯨似山 A-PT 交叉銷售 50,173 -
0190024 少年雞宵夜 A-PT 交叉銷售 49,913 -
0610010 繁華中西式早餐店1.4 A-PN 交叉銷售 49,341 -
0111007 劉記早點 A-PT 交叉銷售 48,764 -
0910028 楊太太-3 A-PN 交叉銷售 48,712 -
1010019 李小姐-鹽埔(1.4) A-PN 交叉銷售 48,524 -
0810004 潘英好W3 A-PN 交叉銷售 48,326 -
0111236 最餓感早午餐 A-PT 交叉銷售 46,857 -
0111281 163豆漿 A-PT 交叉銷售 42,850 -
1110075 南華早點2.5-G A-PN 交叉銷售 42,568 -
0160005 穩發行2.5 A-PT 交叉銷售 42,476 -
0110975 永和-海豐-3 A-PT 交叉銷售 42,108 -
0630074 小胡同1.4 A-PN 交叉銷售 41,628 -
0111205 和生市場早餐-2.5 A-PT 流失挽回 39,857 2025/10/03
6320012 李春宗-3 A-PN 交叉銷售 39,469 -
0610056 永和-繁華1.4 A-PN 交叉銷售 38,243 -
0990001 反轉奶酥-里港2.5 A-PN 流失挽回 36,091 2025/06/20
0110707 小叮噹公館店2.5 A-PT 交叉銷售 35,822 -
0110031 歐嗨喲早午餐-施小姐 A-PT 交叉銷售 35,637 -
4010003 美而美.-實踐大學-3 A-PN 交叉銷售 35,427 -
1030005 元氣飯糰1.4 A-PN 流失挽回 34,855 2025/06/12
0980010 溪埔山哥肉圓2.5 A-PN 交叉銷售 34,418 -
0930069 貨櫃屋蝦料理2.5 A-PN 交叉銷售 33,542 -
0130009 公牛隊-信義 A-PT 交叉銷售 33,349 -
0910103 徐富美-3 A-PN 交叉銷售 33,253 -
1110128 永和豆漿(阿貴)2.5 A-PN 流失挽回 31,683 2025/09/26
1130026 高樹牛排-2.5 A-PN 交叉銷售 31,353 -
0110151 甜蜜早點 A-PT 交叉銷售 31,270 -
0110205 大洲早點2.5 A-PT 交叉銷售 31,001 -
0980002 豪品味飯丸-2.5 A-PN 流失挽回 30,729 2025/10/28
0110037 福記早點2.5 A-PT 交叉銷售 30,087 -
0110769 瑞麟-屏東屏工 A-PT 交叉銷售 29,616 -
0140029 美金才藝幼稚園 A-PT 交叉銷售 29,328 -
0120705 戰味鹽酥雞-廣東 A-PT 交叉銷售 29,078 -
0111195 復興早點2.5 A-PT 交叉銷售 28,642 -
0810015 瑞麟-九如2.5 A-PN 交叉銷售 28,432 -
0110200 民學活力 A-PT 交叉銷售 27,947 -
0130475 維多利亞宴會館 A-PT 交叉銷售 27,887 -
0121249 孫記仙草舖(原-夏立克) A-PT 交叉銷售 27,010 -
1010104 好初早餐1.4 A-PN 交叉銷售 26,976 -
0190016 Light Bar A-PT 交叉銷售 26,511 -
0110058 陳太太-復興南路_5 A-PT 交叉銷售 26,211 -
0910087 麗華素食2.5 A-PN 交叉銷售 25,577 -
6410028 謝小姐-3 A-PN 交叉銷售 24,975 -
0110021 小叮噹屏東附小 A-PT 交叉銷售 24,912 -
0110108 阿囉哈 A-PT 交叉銷售 24,877 -
0110708 公館美而美2.5 A-PT 交叉銷售 24,769 -
0111278 早食光 A-PT 交叉銷售 24,208 -
0120120 徐蓮琴-3 A-PT 交叉銷售 24,173 -
0910120 餐盤派對館2.5 A-PN 交叉銷售 23,859 -
0110280 崇蘭3號早點 A-PT 交叉銷售 23,553 -
1010012 新圍複合式早午餐(1.4 A-PN 交叉銷售 23,447 -
6310048 薛先生-3 A-PN 交叉銷售 23,307 -
4180004 享初點鹹酥雞 A-PT 交叉銷售 23,192 -
0111175 弘爺早餐-武成 A-PT 交叉銷售 22,866 -
0160038 侯偉婷 A-PT 流失挽回 22,686 2025/09/26
0130159 明洞韓式燒肉館 A-PT 交叉銷售 22,033 -
0111252 卯食初更 A-PT 流失挽回 21,986 2025/02/17
1010089 楊仁嘉1.4 A-PN 交叉銷售 21,531 -
6410047 黃蝶屋-3 A-PN 交叉銷售 21,434 -
0610045 凱蒂貓-長興(1.4) A-PN 交叉銷售 21,137 -
0111108 卡美拉-棒球店 A-PT 交叉銷售 20,703 -
1020008 林春花1.4 A-PN 交叉銷售 20,269 -
0960005 馮小姐W3 A-PN 交叉銷售 19,757 -
0610022 夏一跳-長治店-2.5 A-PN 交叉銷售 19,633 -
6310043 老街101手工包子-3 A-PN 流失挽回 19,201 2025/08/27
0180164 文洲麵店-2.5 A-PT 交叉銷售 19,124 -
0111283 早安-晨之美 A-PT 流失挽回 18,612 2025/10/28
0111282 日和早餐 A-PT 交叉銷售 18,547 -
0650009 好媳婦農科精品館1.4 A-PN 交叉銷售 17,820 -
1110080 高樹蒸餃2.5 A-PN 交叉銷售 17,632 -
0110124 美又美屏東建民 A-PT 交叉銷售 17,609 -
0610077 夠早餐-2.5 A-PN 交叉銷售 17,587 -
0111143 等一個人的餐車 A-PT 流失挽回 17,247 2025/08/20
0610082 捏模好ㄘ_海苔飯捲1.4 A-PN 交叉銷售 17,235 -
0110098 裕芳蛋餅王 A-PT 交叉銷售 17,100 -
1010118 豪味素食早餐-1.4 A-PN 交叉銷售 16,961 -
0910065 葉淑櫻2.5 A-PN 交叉銷售 16,850 -
0111276 香美亭早午餐 A-PT 交叉銷售 16,790 -
0110053 美美早點-3 A-PT 交叉銷售 16,715 -
1180005 吳振源-5 A-PN 交叉銷售 16,555 -
0930066 陳昌仁2.5 A-PN 流失挽回 16,374 2025/09/26
0111213 脫北者早餐店 A-PT 交叉銷售 16,284 -
1010014 姊妹早點2.5 A-PN 交叉銷售 16,256 -
0140023 美加幼兒園 A-PT 交叉銷售 16,001 -
0120463 華藝商行 A-PT 交叉銷售 15,690 -
0190028 玖點棋藝餐飲館 A-PT 流失挽回 15,421 2025/02/25
1120013 行藏-李麗貞-5 A-PN 流失挽回 15,416 2025/07/31
0111245 晨午吉 A-PT 流失挽回 14,588 2025/03/21
0180159 來來鮢過魚湯 A-PT 交叉銷售 14,428 -
0180175 美佳樂炸雞57號 A-PT 流失挽回 14,378 2025/04/18
0130363 七個七牛排館 A-PT 交叉銷售 13,931 -
0810016 東寧早點-2.5 A-PN 交叉銷售 13,661 -
0880001 印尼炒泡麵-2.5 A-PN 交叉銷售 13,600 -
0121142 涵軒風格傳統豆花 A-PT 交叉銷售 13,571 -
6420035 相聚冰店-3 A-PN 流失挽回 13,471 2025/09/03
0820045 蔡小姐1.4 A-PN 交叉銷售 13,343 -
0110226 那間-4 A-PT 交叉銷售 12,927 -
1120094 高樹手做冰品2.5 A-PN 交叉銷售 12,859 -
0130494 台糖倉庫咖啡 A-PT 交叉銷售 12,856 -
1110040 泰山購物2.5 A-PN 交叉銷售 12,744 -
0160076 五餅二魚 A-PT 交叉銷售 12,595 -
0111251 早安2.0 A-PT 交叉銷售 12,513 -
0960016 思婷(2.5) A-PN 交叉銷售 12,319 -
1040006 巧香園快餐1.4 A-PN 交叉銷售 12,092 -
0180165 玥達人可麗餅-永大店 A-PT 流失挽回 12,083 2025/03/18
0121215 古城味燒仙草 A-PT 交叉銷售 11,888 -
0111206 真好味鹽酥雞-吳信範 A-PT 流失挽回 11,483 2025/10/31
1120005 好來好去飲料店1.4 A-PN 流失挽回 11,462 2025/10/13
6610010 集可吉早點-內門-3 A-PN 交叉銷售 11,456 -
1010046 傳香早點/20-1.4 A-PN 交叉銷售 11,426 -
0111204 米克早餐-G A-PT 交叉銷售 11,424 -
0160009 真口味鹹酥雞-許庭瑀 A-PT 交叉銷售 11,339 -
0110643 伊吉堡 A-PT 交叉銷售 11,245 -
0990002 一品平價牛排-3 A-PN 流失挽回 11,202 2025/02/26
0121248 MOMO茶 A-PT 交叉銷售 11,137 -
0130491 沐初 A-PT 流失挽回 11,097 2025/05/21
0190030 好腳舍足體健康會館 A-PT 交叉銷售 11,028 -
4010002 巧欣早午餐-美濃-3 A-PN 交叉銷售 10,909 -
0111048 弘爺早餐-莊敬 A-PT 交叉銷售 10,756 -
1310199 漢堡大師-安心四橫-4 A-PT 交叉銷售 10,716 -
0111266 弘爺漢堡-棒球店 A-PT 流失挽回 10,666 2025/07/14
0810010 郭淑盈2.5 A-PN 交叉銷售 10,543 -
0121088 舒沛泡沫茶飲 A-PT 交叉銷售 10,452 -
0190023 樂昉The Fun獨享鍋 A-PT 交叉銷售 10,344 -
6260001 有吉農場-3 A-PN 交叉銷售 10,309 -
6330004 大衛營-3 A-PN 交叉銷售 10,301 -
0190025 斜槓闆娘 A-PT 流失挽回 10,086 2025/04/07
1060011 嚐鮮小籠包1.4 A-PN 交叉銷售 10,022 -
6470002 順運工程_3 A-PN 流失挽回 10,015 2025/10/29
0810052 劉鈺禎-3 A-PN 交叉銷售 9,974 -
0130194 原道日式燒肉 A-PT 交叉銷售 9,935 -
0110062 營養早點-信義阿姑 A-PT 交叉銷售 9,671 -
1080003 廟口ㄟ炒飯-1.4 A-PN 交叉銷售 9,538 -
0920086 鴻勝伯黑糖剉冰-3 A-PN 交叉銷售 9,471 -
0110022 小叮噹公園東路 A-PT 交叉銷售 9,464 -
6310061 旗山華中早餐店_3 A-PN 交叉銷售 9,447 -
0160055 國仁醫院2F餐廳1.4 A-PT 交叉銷售 9,316 -
0120574 波士頓複合式餐飲 A-PT 交叉銷售 9,311 -
0111232 黃記永和-中正店 A-PT 交叉銷售 9,264 -
0111234 My早午餐-4 A-PT 交叉銷售 9,137 -
0140040 丹麥烘焙坊-建豐 A-PT 交叉銷售 9,048 -
6410038 味田早餐-3 A-PN 交叉銷售 8,975 -
0930063 香雲國際(佛陀紀念館)-3 A-PN 交叉銷售 8,885 -
0110004 巨林-屏東中正 A-PT 交叉銷售 8,825 -
0121241 芋見綠豆-建豐店 A-PT 交叉銷售 8,722 -
0111030 美而美-廣東南路1.3.4 A-PT 交叉銷售 8,715 -
0110987 晨佳早餐-3 A-PT 交叉銷售 8,664 -
0120878 真奇自助餐-3 A-PT 流失挽回 8,589 2025/09/24
6410040 和興道場-3 A-PN 流失挽回 8,555 2025/09/17
0910089 張秀茹(正光佛俱) A-PN 流失挽回 8,492 2025/06/06
0930010 尤能恭2.5 A-PN 交叉銷售 8,428 -
0110255 小玉的店-勝利 A-PT 交叉銷售 8,421 -
0910109 盧淑惠-載興1.4 A-PN 交叉銷售 8,403 -
0110020 元氣堡-屏東民生 A-PT 流失挽回 8,376 2025/06/26
0111125 弘爺大同北路 A-PT 交叉銷售 7,905 -
0810071 艾格森蛋餅-2.5 A-PN 交叉銷售 7,738 -
0130339 和記烤肉 A-PT 流失挽回 7,676 2025/10/01
6320044 陳家養生黑糖奶舖-3 A-PN 交叉銷售 7,573 -
0121234 古丁原味品茶 A-PT 交叉銷售 7,545 -
1010119 王乃億1.4 A-PN 流失挽回 7,498 2025/06/26
0150027 柏克萊幼兒園 A-PT 交叉銷售 7,406 -
0810063 芽米早午餐-2.5 A-PN 流失挽回 7,405 2025/03/11
0110390 香堡堡 A-PT 流失挽回 6,972 2025/09/03
0120018 168莊敬街店 A-PT 交叉銷售 6,904 -
0110922 吐司夾蛋 A-PT 交叉銷售 6,898 -
0190022 實原壽司 A-PT 交叉銷售 6,856 -
0910015 葉枝香2.5 A-PN 交叉銷售 6,843 -
0180161 辰門58麵食館 A-PT 交叉銷售 6,746 -
0180187 余記基隆營養三明治 A-PT 交叉銷售 6,640 -
0111194 日安 A-PT 流失挽回 6,640 2025/06/20
0990003 黃浤宇_3 A-PN 流失挽回 6,590 2025/09/10
0920054 黃明春-2.5 A-PN 交叉銷售 6,572 -
0120113 卡爾登咖啡北平店 A-PT 交叉銷售 6,436 -
0130485 洪春枝 A-PT 流失挽回 6,430 2025/04/15
0130439 小麟牛排屏東 A-PT 流失挽回 6,372 2025/09/03
0111271 早安山丘-博愛店 A-PT 流失挽回 6,293 2025/04/08
0110131 青島早點 A-PT 交叉銷售 6,238 -
0121220 柑仔茶坊-2.5 A-PT 交叉銷售 6,224 -
0111026 超吉飯桶(廣東) A-PT 流失挽回 6,156 2025/01/27
1080002 鹽埔飯糰-1.4 A-PN 交叉銷售 6,039 -
0820001 大茶杯-九如2.5 A-PN 交叉銷售 5,952 -
0830022 玄祖羊肉-2.5 A-PN 交叉銷售 5,894 -
0130146 金芳壽司 A-PT 交叉銷售 5,860 -
0121231 紅茶幫-棒球 A-PT 交叉銷售 5,811 -
0111277 早壹點-公園店 A-PT 流失挽回 5,810 2025/02/19
0130322 半畝園-3 A-PT 交叉銷售 5,807 -
0111176 快樂早點-大武 A-PT 流失挽回 5,769 2025/10/07
0121250 鉦達渼冰來 A-PT 交叉銷售 5,724 -
0130226 銘鑫牛肉(阿香) A-PT 交叉銷售 5,714 -
0130276 大本鐵板燒2.3.5 A-PT 交叉銷售 5,714 -
0660027 觀賞水族動物展示廰 A-PN 交叉銷售 5,657 -
0180186 碰碰胡水餃_3 A-PT 流失挽回 5,486 2025/08/27
0130312 大本鐵板燒 A-PT 交叉銷售 5,476 -
0920039 香村海苔飯捲-里港2.5 A-PN 交叉銷售 5,466 -
0930057 阿嬤豬腳2.5 A-PN 交叉銷售 5,410 -
0180185 小屏e店 A-PT 交叉銷售 5,377 -
0920083 山水茶堂-永樂店2.5 A-PN 交叉銷售 5,372 -
1020073 奇奇剉冰-1.4 A-PN 流失挽回 5,368 2025/07/17
0110070 季香早點 A-PT 交叉銷售 5,247 -
0180173 龍鳳宮-楊琇閔 A-PT 交叉銷售 5,238 -
1110016 高樹雞肉飯2.5 A-PN 流失挽回 5,238 2025/07/29
0121244 丘咖啡1店 A-PT 交叉銷售 5,209 -
1130025 高珍鮮鍋店2.5 A-PN 交叉銷售 5,134 -
0120809 威勝企業社 A-PT 流失挽回 4,977 2025/10/09
0111273 味兒丹早餐 A-PT 流失挽回 4,824 2025/06/11
0810078 東寧大廟莊家蛋餅-2.5 A-PN 流失挽回 4,780 2025/06/10
1020029 福沅-(大仁旁)1.4 A-PN 交叉銷售 4,772 -
6410029 大味王-3 A-PN 流失挽回 4,754 2025/06/04
0110016 五分鐘找餐 A-PT 流失挽回 4,752 2025/04/14
0111274 麥味登-屏東博愛 A-PT 交叉銷售 4,713 -
0111158 咕嘰咕嘰-總部 A-PT 交叉銷售 4,629 -
0120712 大賀(原華陽網咖) A-PT 流失挽回 4,615 2025/10/08
1110096 老胡檳榔-5 A-PN 交叉銷售 4,541 -
0120757 123泡沫 A-PT 流失挽回 4,431 2025/04/23
6310051 張先生-3 A-PN 交叉銷售 4,343 -
6310059 俗ㄆㄤˋ碳烤三明治-3 A-PN 交叉銷售 4,320 -
0170469 中正國小(廚房) A-PT 交叉銷售 4,310 -
0190027 OAK POKER CLUB_5 A-PT 交叉銷售 4,238 -
0610074 長治飯糰1.4 A-PN 交叉銷售 4,143 -
0190031 茶點壹室 A-PT 交叉銷售 4,107 -
0190019 讀者城市 A-PT 交叉銷售 4,063 -
1110084 千如 A-PN 流失挽回 4,062 2025/09/12
0121237 芋見綠豆林森店 A-PT 交叉銷售 4,038 -
0111280 春桃-4 A-PT 交叉銷售 3,924 -
0170461 好媳婦-屏東信義 A-PT 流失挽回 3,905 2025/08/20
1010120 莊豐富 A-PN 交叉銷售 3,825 -
6430005 煙樓坊-3 A-PN 交叉銷售 3,714 -
1120095 關茶站-5 A-PN 流失挽回 3,601 2025/07/04
0170468 私立幼愛幼兒園-3 A-PT 交叉銷售 3,568 -
0920013 泉和2.5 A-PN 交叉銷售 3,519 -
0110933 水滬黃門 A-PT 交叉銷售 3,431 -
1180007 高樹刈包2.5 A-PN 交叉銷售 3,428 -
1120018 八車豆花-高樹2.5 A-PN 交叉銷售 3,371 -
0920084 鮮茶道-里港三和店3 A-PN 交叉銷售 3,331 -
0121093 茶本水源-3 A-PT 交叉銷售 3,307 -
0920023 陳秀玲2.5 A-PN 流失挽回 3,285 2025/09/30
0111272 小王子早午餐 A-PT 交叉銷售 3,279 -
1030025 川富鵝肉1.4 A-PN 交叉銷售 3,267 -
0610067 叮噹早餐-繁華1.4 A-PN 交叉銷售 3,262 -
0121019 岡茶-屏東建國 A-PT 流失挽回 3,253 2025/09/25
1020096 Queen Coffee 1.4 A-PN 流失挽回 3,143 2025/02/27
6420002 恬恬茶飲專賣-3 A-PN 交叉銷售 3,133 -
0810018 六師弟早餐2.5 A-PN 流失挽回 3,107 2025/09/05
0180179 自由牛肉麵 A-PT 交叉銷售 3,048 -
0910117 漫時光-里港2.5 A-PN 流失挽回 3,045 2025/04/01
6410046 泰一食品-3 A-PN 交叉銷售 2,950 -
0980006 啃炸雞-2.5 A-PN 交叉銷售 2,937 -
0130156 卡爾登咖啡豐榮店 A-PT 流失挽回 2,910 2025/02/07
0910096 葉建蘭2.5 A-PN 交叉銷售 2,899 -
0680005 王靖嫺 A-PN 交叉銷售 2,856 -
0180180 大大碗麵 A-PT 流失挽回 2,851 2025/03/18
0860004 陳月線2.5 A-PN 交叉銷售 2,830 -
0820004 方金惠2.5 A-PN 交叉銷售 2,814 -
0130294 QQ田 A-PT 交叉銷售 2,786 -
0121247 紅茶老爹-瑞源店 A-PT 交叉銷售 2,757 -
0120134 旺旺肉包 A-PT 交叉銷售 2,729 -
0130340 牡丹蛋包飯 A-PT 交叉銷售 2,686 -
0650001 果樹研究室 A-PN 交叉銷售 2,681 -
6310056 旗山美芝城-3 A-PN 交叉銷售 2,656 -
0130148 阿耀小吃部 A-PT 交叉銷售 2,631 -
1120089 657生活茶飲 A-PN 交叉銷售 2,591 -
0121004 景苑咖啡-青島 A-PT 交叉銷售 2,569 -
0190029 翁小蜜 A-PT 流失挽回 2,568 2025/05/15
0180184 阿猴便當 A-PT 流失挽回 2,558 2025/06/18
0110938 芳鄰早點(棒球路) A-PT 流失挽回 2,514 2025/09/09
0610080 紘昌早餐1.4 A-PN 交叉銷售 2,481 -
6480001 天廚客家美食-3 A-PN 流失挽回 2,391 2025/05/21
6320052 鮮茶道-旗山店-3 A-PN 交叉銷售 2,337 -
6420036 鮮茶道-美濃-3 A-PN 交叉銷售 2,337 -
6430001 阿秋小吃部-3 A-PN 交叉銷售 2,291 -
6210034 漢堡大師-大樹店_3 A-PN 交叉銷售 2,286 -
0130230 新益昌行 A-PT 交叉銷售 2,233 -
0110051 麥香堡-屏東華正 A-PT 流失挽回 2,195 2025/02/21
0120606 紅茶老店-廣東 A-PT 交叉銷售 2,132 -
0110786 蘇姐漢堡店 A-PT 交叉銷售 2,123 -
0820046 豆花城-九如2.5 A-PN 交叉銷售 2,103 -
0111235 黃毛丫頭早午餐 A-PT 交叉銷售 2,020 -
0110760 南瓜子早點 A-PT 流失挽回 2,011 2025/05/09
6330001 廣東烤鴨旗山-3 A-PN 交叉銷售 1,990 -
6420028 13嚮(美濃)* A-PN 交叉銷售 1,977 -
0121206 海苔飯捲-仁愛路 A-PT 流失挽回 1,977 2025/05/21
1110097 高小姐2.5 A-PN 流失挽回 1,963 2025/10/28
6310028 全家福炸雞-3 A-PN 交叉銷售 1,960 -
0110225 巨林-大連 A-PT 交叉銷售 1,946 -
0120838 岡本11-公館 A-PT 交叉銷售 1,883 -
0960010 黎氐玉姮2.5 A-PN 交叉銷售 1,873 -
1160009 OD的家-2.5 A-PN 流失挽回 1,816 2025/01/24
1020036 邱小姐-高朗 A-PN 交叉銷售 1,775 -
1010093 檳榔早點 2.5 A-PN 流失挽回 1,748 2025/08/08
1010026 巨林-鹽埔1.4 A-PN 交叉銷售 1,696 -
0710018 屋頂-大仁李先生/-4 A-PN 流失挽回 1,695 2025/10/16
0910066 里港食麵館2.5 A-PN 流失挽回 1,686 2025/04/11
0121236 伴君耘黑糖奶專売-民族 A-PT 交叉銷售 1,600 -
0110945 米斯廚房-建豐 A-PT 交叉銷售 1,543 -
0630014 海豐豬肉攤 A-PN 交叉銷售 1,516 -
0130486 小孩吃素 A-PT 流失挽回 1,514 2025/01/15
0930004 尤能謙-2.5 A-PN 交叉銷售 1,500 -
0121246 丘咖啡2店 A-PT 交叉銷售 1,461 -
0630066 長興麵館(1.4) A-PN 交叉銷售 1,457 -
6410049 傳統早餐-木瓜粄_3 A-PN 交叉銷售 1,377 -
0121216 檸檬樹*公裕 A-PT 流失挽回 1,356 2025/04/02
0910060 陳玉梅 A-PN 交叉銷售 1,267 -
0110843 和味山東饅頭 A-PT 流失挽回 1,200 2025/03/17
6430007 徐小姐-美濃 A-PN 交叉銷售 1,171 -
0120424 678泡沬茶坊 A-PT 流失挽回 1,152 2025/05/08
0620076 尼渴-長治1.4 A-PN 交叉銷售 1,140 -
1020095 回憶小時候-鹽埔1.4 A-PN 交叉銷售 1,131 -
6410022 美濃民俗村(清冰館) A-PN 交叉銷售 1,114 -
1030031 高朗自助餐1.4 A-PN 交叉銷售 1,109 -
1120003 新廣珍冰城2.5 A-PN 交叉銷售 1,081 -
0170466 巨領冷凍企業 A-PT 交叉銷售 1,051 -
6470001 蔡小姐-3 A-PN 流失挽回 1,033 2025/07/16
0130361 自然風 A-PT 流失挽回 1,028 2025/03/07
0111054 天津蔥抓餅-信義 A-PT 流失挽回 1,024 2025/05/14
0130434 水月囍樓 A-PT 流失挽回 1,000 2025/08/20
6420006 辜麗雲-3 A-PN 流失挽回 999 2025/07/16
0630010 宏慈素食1.4 A-PN 交叉銷售 981 -
3230097 曾心饅頭-3 A-PN 流失挽回 967 2025/03/26
0980013 敏生魚片-2.5 A-PN 流失挽回 931 2025/06/24
0610083 繁華小籠包1.4 A-PN 交叉銷售 924 -
1120093 鈞豐茶行2.5 A-PN 交叉銷售 922 -
0120131 早安-屏東廣東542-1 A-PT 交叉銷售 890 -
0960025 專業檳榔炸物店2.5 A-PN 流失挽回 890 2025/03/14
0110214 小豆豆-屏東建豐 A-PT 流失挽回 876 2025/09/10
0110246 好鄰居早餐店* A-PT 流失挽回 810 2025/08/27
0880003 鄭家麵店2.5 A-PN 交叉銷售 800 -
0170470 嘉鴻老人長期照顧中心 A-PT 流失挽回 785 2025/01/07
0111109 早安-你好 A-PT 交叉銷售 781 -
1020092 657生活茶飲1.4 A-PN 交叉銷售 762 -
0180183 愛家食坊 A-PT 流失挽回 743 2025/07/18
1120054 廖小姐-高樹-2.5 A-PN 流失挽回 718 2025/04/18
0910110 彭如月 A-PN 交叉銷售 684 -
0120598 魯魯米 A-PT 流失挽回 678 2025/06/20
0980004 益通冷氣行-2.5 A-PN 交叉銷售 624 -
0680004 美佳樂-長治1.4 A-PN 交叉銷售 590 -
1120007 小峰素食2.5 A-PN 交叉銷售 549 -
0121251 春芳號 A-PT 流失挽回 481 2025/06/26
0960027 店小二-2.5 A-PN 流失挽回 416 2025/02/07
0160028 中華兒童幼兒園 A-PT 流失挽回 371 2025/03/06
0610084 有座早餐1.4 A-PN 流失挽回 0 2025/09/03
交叉銷售營收 = 2025/11起; 流失挽回營收 = 2025全年

Campaign CP-26-008: 個人化消費門檻紅包

6. 分析目的 (CP-26-008)

針對未被 CP-26-006 選中的客戶,提供個人化消費門檻與紅包回饋。

目標客戶:

  • A-PT 和 A-PN 路線中,未被 CP-26-006 選中的客戶
  • 所有 K1 和 K2 路線客戶

詳細門檻計算說明請見 9. CP-26-008 執行摘要

程式碼
# =============================================================================
# LOAD 2026 BASELINE DATA FOR CP-26-008
# =============================================================================
# Get baseline revenue for all potential target routes (sales minus returns)
# Load sales
baseline_sales = con.sql(f"""
    SELECT
        so.customer_code,
        sol.order_type,
        sol.order_number,
        sol.line_number,
        COALESCE(sol.pretax_subtotal, 0) as amount
    FROM cosmos_sync.sales_orders so
    JOIN cosmos_sync.sales_order_lines sol
        ON so.order_type = sol.order_type
        AND so.order_number = sol.order_number
    WHERE so.confirmed_code = 'Y'
        AND so.order_date >= '{BASELINE_2026_START}'
        AND so.order_date <= '{BASELINE_2026_END}'
        AND so.delivery_route IN ('A-PT', 'A-PN', 'K1', 'K2')
""").to_polars()

# Filter out deleted order lines and aggregate
baseline_sales = (
    baseline_sales.filter(
        ~pl.struct(["order_type", "order_number", "line_number"]).map_elements(
            lambda x: (x["order_type"], x["order_number"], x["line_number"]) in deleted_order_keys,
            return_dtype=pl.Boolean
        )
    )
    .group_by("customer_code")
    .agg(pl.col("amount").sum().alias("sales_amount"))
)

# Load returns
baseline_returns = con.sql(f"""
    SELECT
        sr.customer_code,
        srl.return_type,
        srl.return_number,
        srl.line_number,
        COALESCE(srl.pretax_subtotal, 0) as amount
    FROM cosmos_sync.sales_returns sr
    JOIN cosmos_sync.sales_return_lines srl
        ON sr.return_type = srl.return_type
        AND sr.return_number = srl.return_number
    WHERE sr.confirmed_code = 'Y'
        AND sr.return_date >= '{BASELINE_2026_START}'
        AND sr.return_date <= '{BASELINE_2026_END}'
        AND sr.delivery_route IN ('A-PT', 'A-PN', 'K1', 'K2')
""").to_polars()

# Filter out deleted return lines and aggregate
baseline_returns = (
    baseline_returns.filter(
        ~pl.struct(["return_type", "return_number", "line_number"]).map_elements(
            lambda x: (x["return_type"], x["return_number"], x["line_number"]) in deleted_return_keys,
            return_dtype=pl.Boolean
        )
    )
    .group_by("customer_code")
    .agg(pl.col("amount").sum().alias("returns_amount"))
)

# Combine sales and returns
baseline_2026_revenue = (
    baseline_sales
    .join(baseline_returns, on="customer_code", how="full", coalesce=True)
    .with_columns([
        pl.col("sales_amount").fill_null(0),
        pl.col("returns_amount").fill_null(0),
    ])
    .with_columns(
        (pl.col("sales_amount") - pl.col("returns_amount")).alias("baseline_revenue")
    )
    .select(["customer_code", "baseline_revenue"])
)

print(f"Customers with 2026 baseline revenue: {len(baseline_2026_revenue):,}")
print(f"Total baseline revenue: ${baseline_2026_revenue['baseline_revenue'].sum():,.0f}")
Customers with 2026 baseline revenue: 876
Total baseline revenue: $20,591,268

7. 客戶篩選 (CP-26-008)

程式碼
# Get all active customers in target routes for CP-26-008
geo_customers_008 = customers_raw.filter(
    pl.col("delivery_route").is_in(ALL_ROUTES_008) &
    pl.col("closure_date").is_null()
).select("customer_code", "trade_name", "delivery_route")

print(f"All active customers in A-PT/A-PN/K1/K2: {len(geo_customers_008):,}")

# Split by route group
apt_apn_customers = geo_customers_008.filter(pl.col("delivery_route").is_in(ROUTES_006))
k1_k2_customers = geo_customers_008.filter(pl.col("delivery_route").is_in(ROUTES_008_ADDITIONAL))

print(f"  - A-PT/A-PN customers: {len(apt_apn_customers):,}")
print(f"  - K1/K2 customers: {len(k1_k2_customers):,}")

# CP-26-008 targets:
# 1. A-PT/A-PN customers NOT in CP-26-006
# 2. ALL K1/K2 customers

apt_apn_not_in_006 = apt_apn_customers.filter(
    ~pl.col("customer_code").is_in(targeted_codes_006)
)
print(f"\nA-PT/A-PN customers NOT in CP-26-006: {len(apt_apn_not_in_006):,}")

# Combine for CP-26-008 targets
targets_008_base = pl.concat([apt_apn_not_in_006, k1_k2_customers])
print(f"Total CP-26-008 target base: {len(targets_008_base):,}")
All active customers in A-PT/A-PN/K1/K2: 1,171
  - A-PT/A-PN customers: 588
  - K1/K2 customers: 583

A-PT/A-PN customers NOT in CP-26-006: 199
Total CP-26-008 target base: 782

8. 門檻與紅包計算 (CP-26-008)

程式碼
# Join with baseline revenue
targets_008 = (
    targets_008_base
    .join(baseline_2026_revenue, on="customer_code", how="left")
    .with_columns(pl.col("baseline_revenue").fill_null(0))
)

# Calculate threshold for customers WITH baseline revenue
# Formula: baseline_revenue / 56 * 31 * 1.2 (tax applied later in adjusted threshold)
targets_008 = targets_008.with_columns(
    pl.when(pl.col("baseline_revenue") > 0)
    .then((pl.col("baseline_revenue") / BASELINE_DAYS * 31 * 1.2))
    .otherwise(pl.lit(None))
    .alias("calculated_threshold")
)

# Get median of calculated thresholds (for customers without baseline)
calculated_thresholds = targets_008.filter(
    pl.col("calculated_threshold").is_not_null())["calculated_threshold"]
median_threshold = calculated_thresholds.median()

print(
    f"Customers with baseline revenue: {(targets_008['baseline_revenue'] > 0).sum():,}")
print(
    f"Customers without baseline revenue: {(targets_008['baseline_revenue'] == 0).sum():,}")
print(f"Median calculated threshold: ${median_threshold:,.0f}")

# Apply median threshold to customers without baseline
targets_008 = targets_008.with_columns(
    pl.when(pl.col("calculated_threshold").is_not_null())
    .then(pl.col("calculated_threshold"))
    .otherwise(pl.lit(median_threshold))
    .alias("threshold")
)

# Rebate percentage (applied later to adjusted threshold)
REBATE_PERCENTAGE = 0.03

# Add flag for threshold source
targets_008 = targets_008.with_columns(
    pl.when(pl.col("baseline_revenue") > 0)
    .then(pl.lit("計算"))
    .otherwise(pl.lit("中位數"))
    .alias("threshold_source")
)

# Sort by threshold descending
targets_008 = targets_008.sort("threshold", descending=True)

# =============================================================================
# CALCULATE JANUARY 2026 MTD SPEND AND LAST ORDER DATE
# =============================================================================
# Load January 2026 sales
jan_sales = con.sql("""
    SELECT
        so.customer_code,
        sol.order_type,
        sol.order_number,
        sol.line_number,
        COALESCE(sol.pretax_subtotal, 0) as amount
    FROM cosmos_sync.sales_orders so
    JOIN cosmos_sync.sales_order_lines sol
        ON so.order_type = sol.order_type
        AND so.order_number = sol.order_number
    WHERE so.confirmed_code = 'Y'
        AND so.order_date >= '20260101'
        AND so.order_date <= '20260131'
        AND so.delivery_route IN ('A-PT', 'A-PN', 'K1', 'K2')
""").to_polars()

# Filter out deleted order lines and aggregate
jan_sales = (
    jan_sales.filter(
        ~pl.struct(["order_type", "order_number", "line_number"]).map_elements(
            lambda x: (x["order_type"], x["order_number"], x["line_number"]) in deleted_order_keys,
            return_dtype=pl.Boolean
        )
    )
    .group_by("customer_code")
    .agg(pl.col("amount").sum().alias("sales_amount"))
)

# Load January 2026 returns
jan_returns = con.sql("""
    SELECT
        sr.customer_code,
        srl.return_type,
        srl.return_number,
        srl.line_number,
        COALESCE(srl.pretax_subtotal, 0) as amount
    FROM cosmos_sync.sales_returns sr
    JOIN cosmos_sync.sales_return_lines srl
        ON sr.return_type = srl.return_type
        AND sr.return_number = srl.return_number
    WHERE sr.confirmed_code = 'Y'
        AND sr.return_date >= '20260101'
        AND sr.return_date <= '20260131'
        AND sr.delivery_route IN ('A-PT', 'A-PN', 'K1', 'K2')
""").to_polars()

# Filter out deleted return lines and aggregate
jan_returns = (
    jan_returns.filter(
        ~pl.struct(["return_type", "return_number", "line_number"]).map_elements(
            lambda x: (x["return_type"], x["return_number"], x["line_number"]) in deleted_return_keys,
            return_dtype=pl.Boolean
        )
    )
    .group_by("customer_code")
    .agg(pl.col("amount").sum().alias("returns_amount"))
)

# Combine sales and returns
jan_2026_mtd = (
    jan_sales
    .join(jan_returns, on="customer_code", how="full", coalesce=True)
    .with_columns([
        pl.col("sales_amount").fill_null(0),
        pl.col("returns_amount").fill_null(0),
    ])
    .with_columns(
        (pl.col("sales_amount") - pl.col("returns_amount")).alias("jan_mtd_spend")
    )
    .select(["customer_code", "jan_mtd_spend"])
)

# Get last order date for all target customers (any route, not just target routes)
# Load order dates with line keys for deletion filtering
last_order_raw = con.sql("""
    SELECT
        so.customer_code,
        so.order_date,
        sol.order_type,
        sol.order_number,
        sol.line_number
    FROM cosmos_sync.sales_orders so
    JOIN cosmos_sync.sales_order_lines sol
        ON so.order_type = sol.order_type
        AND so.order_number = sol.order_number
    WHERE so.confirmed_code = 'Y'
""").to_polars()

# Filter out deleted records and get max order date per customer
last_order_008 = (
    last_order_raw.filter(
        ~pl.struct(["order_type", "order_number", "line_number"]).map_elements(
            lambda x: (x["order_type"], x["order_number"], x["line_number"]) in deleted_order_keys,
            return_dtype=pl.Boolean
        )
    )
    .group_by("customer_code")
    .agg(pl.col("order_date").max().alias("last_order_date"))
)

# Join MTD spend and last order date to targets
targets_008 = (
    targets_008
    .join(jan_2026_mtd, on="customer_code", how="left")
    .join(last_order_008, on="customer_code", how="left")
    .with_columns(pl.col("jan_mtd_spend").fill_null(0))
)

# Calculate adjusted threshold:
# 1. If customer already exceeded threshold: 1.25x current MTD spend
# 2. If customer has 0 MTD spend: threshold / 2
# 3. Otherwise: keep original threshold
# Then: cap at 2.5x MTD spend (if MTD > 0), and multiply by 1.05 for sales tax
targets_008 = targets_008.with_columns(
    pl.when(pl.col("jan_mtd_spend") >= pl.col("threshold"))
    .then(pl.col("jan_mtd_spend") * 1.25)
    .when(pl.col("jan_mtd_spend") == 0)
    .then(pl.col("threshold") / 2)
    .otherwise(pl.col("threshold"))
    .alias("adjusted_threshold_raw")
)

# Cap at 2.5x MTD spend (only when MTD > 0), then multiply by 1.05 for sales tax
targets_008 = targets_008.with_columns(
    pl.when(pl.col("jan_mtd_spend") > 0)
    .then(
        pl.min_horizontal(
            pl.col("adjusted_threshold_raw"),
            pl.col("jan_mtd_spend") * 2.5
        ) * 1.05
    )
    .otherwise(pl.col("adjusted_threshold_raw") * 1.05)
    .alias("adjusted_threshold_pretax")
)

# Floor at $3000, then round up to nearest $1000
THRESHOLD_FLOOR = 3000
THRESHOLD_ROUND_UP = 1000
targets_008 = targets_008.with_columns(
    (
        (pl.max_horizontal(pl.col("adjusted_threshold_pretax"), pl.lit(THRESHOLD_FLOOR)) / THRESHOLD_ROUND_UP)
        .ceil() * THRESHOLD_ROUND_UP
    )
    .cast(pl.Int64)
    .alias("adjusted_threshold")
)

# Calculate rebate: 3% of adjusted threshold, rounded down to nearest $50
REBATE_ROUND_DOWN = 50
targets_008 = targets_008.with_columns(
    (
        (pl.col("adjusted_threshold") * REBATE_PERCENTAGE / REBATE_ROUND_DOWN)
        .floor() * REBATE_ROUND_DOWN
    )
    .cast(pl.Int64)
    .alias("rebate_amount")
)

# Count customers with adjusted thresholds
exceeded_count = (targets_008["jan_mtd_spend"] >=
                  targets_008["threshold"]).sum()
zero_spend_count = (targets_008["jan_mtd_spend"] == 0).sum()
floored_count = (targets_008["adjusted_threshold_pretax"] < THRESHOLD_FLOOR).sum()

print(f"Customers with zero MTD spend (threshold halved): {zero_spend_count:,}")
print(f"Customers who exceeded threshold (adjusted): {exceeded_count:,}")
print(f"Customers floored at ${THRESHOLD_FLOOR:,}: {floored_count:,}")

print(f"\n=== CP-26-008 FINAL RESULTS ===")
print(f"Total CP-26-008 targets: {len(targets_008):,}")
print(f"Total adjusted threshold: ${targets_008['adjusted_threshold'].sum():,.0f}")
print(f"Total rebate amount: ${targets_008['rebate_amount'].sum():,.0f}")

# =============================================================================
# VERIFICATION: Ensure no overlap between CP-26-006 and CP-26-008
# =============================================================================
codes_006 = set(targets_006["customer_code"].to_list())
codes_008 = set(targets_008["customer_code"].to_list())
overlap = codes_006 & codes_008

print(f"\n=== OVERLAP VERIFICATION ===")
if len(overlap) == 0:
    print("✓ No overlap: CP-26-006 and CP-26-008 targets are mutually exclusive")
else:
    print(f"✗ WARNING: {len(overlap)} customers appear in BOTH campaigns!")
    print(f"  Overlapping codes: {list(overlap)[:10]}...")
Customers with baseline revenue: 567
Customers without baseline revenue: 215
Median calculated threshold: $7,983
Customers with zero MTD spend (threshold halved): 256
Customers who exceeded threshold (adjusted): 150
Customers floored at $3,000: 133

=== CP-26-008 FINAL RESULTS ===
Total CP-26-008 targets: 782
Total adjusted threshold: $11,096,000
Total rebate amount: $318,700

=== OVERLAP VERIFICATION ===
✓ No overlap: CP-26-006 and CP-26-008 targets are mutually exclusive

9. CP-26-008 執行摘要

CP-26-008 目標客戶總覽

指標 數值
總目標客戶數 782
有基準營收 (計算門檻) 567
無基準營收 (中位數門檻) 215
中位數門檻 $7,983
紅包比例 3%
總調整門檻 $11,096,000
總紅包金額 $318,700

各路線分布

路線 客戶數 總門檻 總紅包
A-PN 128 $2,305,086 $75,000
A-PT 71 $1,077,359 $34,750
K1 262 $2,955,252 $88,300
K2 321 $3,745,705 $120,650

門檻計算說明

1. 原始門檻 (threshold)

  • 基準期間: 2025/11/15 ~ 2026/01/09 (56天)
  • 計算公式: 基準營收 ÷ 56 × 31 × 1.2
  • 無基準營收客戶: 採用中位數門檻 $7,983

2. 調整門檻 (adjusted_threshold)

Step 1 - 依1月MTD消費調整

條件 調整方式
MTD消費 ≥ 原始門檻 MTD消費 × 1.25
MTD消費 = 0 原始門檻 ÷ 2
其他 維持原始門檻

Step 2 - 上限與營業稅

條件 計算方式
MTD消費 > 0 min(Step1結果, MTD消費 × 2.5) × 1.05
MTD消費 = 0 Step1結果 × 1.05

Step 3 - 下限與進位

  • 下限: $3,000
  • 進位: 無條件進位至最接近 $1,000

3. 紅包金額

  • 計算公式: 調整門檻 × 3%
  • 捨位: 無條件捨去至最接近 $50

10. CP-26-008 目標客戶明細

程式碼
display_008 = (
    targets_008
    .with_columns([
        pl.when(pl.col("last_order_date").is_not_null())
        .then(
            pl.col("last_order_date").str.slice(0, 4) + "/" +
            pl.col("last_order_date").str.slice(4, 2) + "/" +
            pl.col("last_order_date").str.slice(6, 2)
        )
        .otherwise(pl.lit("—"))
        .alias("last_order_formatted")
    ])
    .select([
        "customer_code",
        "trade_name",
        "delivery_route",
        "last_order_formatted",
        "baseline_revenue",
        "threshold_source",
        "threshold",
        "jan_mtd_spend",
        "adjusted_threshold",
        "rebate_amount"
    ])
)

(
    GT(display_008)
    .tab_header(
        title="CP-26-008 目標客戶完整名單",
        subtitle="個人化消費門檻與紅包"
    )
    .cols_label(
        customer_code="客戶代碼",
        trade_name="商號名稱",
        delivery_route="路線",
        last_order_formatted="最後訂單",
        baseline_revenue="基準營收",
        threshold_source="門檻來源",
        threshold="原始門檻",
        jan_mtd_spend="1月MTD消費",
        adjusted_threshold="調整門檻",
        rebate_amount="紅包金額"
    )
    .fmt_number(columns=["baseline_revenue", "threshold", "jan_mtd_spend", "adjusted_threshold", "rebate_amount"], decimals=0, use_seps=True)
    .tab_style(
        style=style.fill(color="#e8f5e9"),
        locations=loc.body(columns="threshold_source", rows=pl.col("threshold_source") == "計算")
    )
    .tab_style(
        style=style.fill(color="#fce4ec"),
        locations=loc.body(columns="threshold_source", rows=pl.col("threshold_source") == "中位數")
    )
    .tab_style(
        style=style.fill(color="#ffcdd2"),
        locations=loc.body(columns="jan_mtd_spend", rows=pl.col("jan_mtd_spend") >= pl.col("threshold"))
    )
    .tab_source_note(
        source_note=f"基準期間: {BASELINE_2026_START} ~ {BASELINE_2026_END} | 紅包 = 門檻 × {REBATE_PERCENTAGE*100:.0f}% | 紅色 = MTD消費 ≥ 門檻"
    )
)
CP-26-008 目標客戶完整名單
個人化消費門檻與紅包
客戶代碼 商號名稱 路線 最後訂單 基準營收 門檻來源 原始門檻 1月MTD消費 調整門檻 紅包金額
1010037 美美早餐店(鹽埔)-1.4 A-PN 2026/03/06 229,207 計算 152,259 132,104 160,000 4,800
2510038 好野早午餐-佳冬2.5 K2 2026/03/06 207,622 計算 137,920 84,101 145,000 4,350
1250002 萬金營區-3 K1 2026/03/04 192,429 計算 127,828 75,253 135,000 4,050
1010047 四海-新庄1.4 A-PN 2026/03/05 189,534 計算 125,905 107,021 133,000 3,950
0610012 繁華市場1.4 A-PN 2026/03/06 187,194 計算 124,350 112,596 131,000 3,900
1010013 張蓮珠-1.4 A-PN 2026/03/05 183,325 計算 121,780 93,094 128,000 3,800
2210006 咕咕雞早餐-來義-3 K1 2026/03/04 171,913 計算 114,199 87,058 120,000 3,600
5410002 美味田園-梓官1.4 K2 2026/03/02 165,946 計算 110,236 127,650 168,000 5,000
2210010 活力早餐-來義-3 K1 2026/03/04 156,190 計算 103,755 88,985 109,000 3,250
4210084 鼎山永和豆漿-1.4 K1 2026/03/02 137,475 計算 91,323 84,554 96,000 2,850
2510004 小圓豬-2.5 K2 2026/03/06 122,636 計算 81,465 78,150 86,000 2,550
5310001 美味田園-岡山-1.4 K2 2026/03/06 113,134 計算 75,153 58,018 79,000 2,350
4290011 呷歸岡高雄三民店1.4 K1 2026/03/02 102,968 計算 68,400 34,666 72,000 2,150
0610046 永和-潭頭-1.4 A-PN 2026/03/05 100,647 計算 66,858 54,315 71,000 2,100
0910007 天心-里港2.5 A-PN 2026/03/06 98,517 計算 65,443 54,214 69,000 2,050
10760002 航特部-台南歸仁-1 K2 2026/03/02 95,679 計算 63,558 46,733 67,000 2,000
3820002 高雄樺達奶茶-2.5 K1 2026/02/02 89,904 計算 59,722 0 32,000 950
4410037 金晨午早餐2.5 K1 2026/03/06 87,397 計算 58,057 44,711 61,000 1,800
0810005 順利早點2.5 A-PN 2026/03/06 86,483 計算 57,449 48,572 61,000 1,800
0710013 四海-麟洛-3 K1 2026/03/04 85,978 計算 57,114 33,509 60,000 1,800
0810019 陳惠林-2.5 A-PN 2026/03/06 83,010 計算 55,142 47,383 58,000 1,700
0910058 張坤如2.5 A-PN 2026/03/06 81,681 計算 54,260 44,357 57,000 1,700
1110025 田子早點-1.4 A-PN 2026/03/05 80,366 計算 53,386 42,635 57,000 1,700
1710081 美好早餐坊2.5 K2 2026/03/06 78,026 計算 51,832 43,414 55,000 1,650
2610066 枋寮-無尾熊包子2.5 K2 2026/03/06 77,635 計算 51,572 61,877 82,000 2,450
1120078 小護士 K1 2026/03/04 75,603 計算 50,222 51,701 68,000 2,000
2510002 老朋友-石光見2.5 K2 2026/03/06 74,948 計算 49,787 42,298 53,000 1,550
0110043 拿了就走 A-PT 2026/03/06 74,632 計算 49,577 47,296 53,000 1,550
5890006 夭巴ㄔㄚˋ1.4 K1 2026/03/02 74,253 計算 49,325 45,797 52,000 1,550
0310036 林小姐-五房2.5 K2 2026/03/06 73,752 計算 48,992 39,859 52,000 1,550
1710004 琴兒早頓-新園2.5 K2 2026/03/06 72,044 計算 47,858 34,226 51,000 1,500
1010024 林振宏1.4 A-PN 2026/03/05 67,796 計算 45,036 20,265 48,000 1,400
0111118 郭記肉圓 A-PT 2026/03/06 67,536 計算 44,863 37,973 48,000 1,400
1210037 麥味登-佳佐(3) K1 2026/03/04 66,054 計算 43,879 25,141 47,000 1,400
2410003 阿美早點-新埤-3 K1 2026/03/04 65,343 計算 43,406 24,617 46,000 1,350
0111239 初飽了沒快速早餐 A-PT 2026/03/06 64,430 計算 42,800 38,164 45,000 1,350
2610084 早馨晨早午餐2.5 K2 2026/03/06 64,385 計算 42,770 38,040 45,000 1,350
2510056 蔡英秋-2.5 K2 2026/03/06 63,942 計算 42,476 41,795 45,000 1,350
0910008 天天早點-1.4 A-PN 2026/03/05 62,061 計算 41,226 30,544 44,000 1,300
2410004 巨林-新埤2.5 K2 2026/03/06 61,259 計算 40,693 36,929 43,000 1,250
1710049 夏一跳(港西)2.5 K2 2026/03/06 61,147 計算 40,619 48,189 64,000 1,900
5810243 探吉早點1.4 K1 2026/03/05 60,882 計算 40,443 35,942 43,000 1,250
1320040 御膳房-3 K1 2026/03/04 59,678 計算 39,643 21,864 42,000 1,250
4210133 萊歐快速早餐-1.4 K1 2026/03/05 59,123 計算 39,275 41,130 54,000 1,600
0110651 阮兜仔早餐店 A-PT 2026/03/06 57,648 計算 38,295 31,893 41,000 1,200
0130308 薇風精品汽車旅館-大豐店 A-PT 2026/03/06 57,411 計算 38,137 31,791 41,000 1,200
4610023 早到晚到總部-央廚1.4 K2 2026/02/25 56,409 計算 37,472 0 20,000 600
1220013 甘慧娟(3) K1 2026/03/04 56,236 計算 37,357 38,221 51,000 1,500
0810014 巨森-九如-2.5 A-PN 2026/03/06 56,227 計算 37,351 31,222 40,000 1,200
0110167 光復-美而美 A-PT 2026/03/04 56,221 計算 37,347 22,907 40,000 1,200
1010038 糖果盒子/20-1.4 A-PN 2026/03/05 55,613 計算 36,943 20,247 39,000 1,150
2410011 新埤-無尾熊包子W2 K2 2026/03/06 54,781 計算 36,390 40,332 53,000 1,550
0111144 小博的店-手工漢堡_3 A-PT 2026/03/04 53,876 計算 35,789 21,442 38,000 1,100
1110004 胖胖早點-1.4 A-PN 2026/03/05 52,716 計算 35,018 26,974 37,000 1,100
0120517 頭前溪巧味早點2.5 A-PT 2026/03/06 52,651 計算 34,975 30,760 37,000 1,100
1010097 永和豆漿-鹽埔1.4 A-PN 2026/02/26 52,327 計算 34,760 60,962 81,000 2,400
1710010 珍味早點2.5 K2 2026/03/06 52,162 計算 34,650 29,964 37,000 1,100
2220009 My tea-來義(3) K1 2026/03/04 52,111 計算 34,617 18,052 37,000 1,100
0550007 瀧旭食品-3 K2 2026/02/11 51,690 計算 34,337 81,385 107,000 3,200
0111208 香香早點-3 A-PT 2026/03/04 51,459 計算 34,183 28,597 36,000 1,050
2910004 柯小姐2.5 K2 2026/03/06 51,275 計算 34,061 24,798 36,000 1,050
4330007 薇風汽車旅館楠梓-1.4 K2 2026/03/05 49,774 計算 33,064 23,905 35,000 1,050
2510051 小餐車2.5 K2 2026/03/03 49,743 計算 33,044 29,559 35,000 1,050
2610076 巷角鍋燒茶飲-2.5 K2 2026/03/06 49,702 計算 33,016 30,700 35,000 1,050
4110028 光華炸雞-1.4 K1 2026/03/05 49,394 計算 32,812 18,680 35,000 1,050
0111284 禾豐快速早餐 A-PT 2026/02/25 48,901 計算 32,484 29,116 35,000 1,050
2620008 百利冷飲店2.5 K2 2026/03/06 48,895 計算 32,480 26,483 35,000 1,050
0810009 美而美-東寧2.5 A-PN 2026/03/06 48,310 計算 32,092 18,659 34,000 1,000
0910119 鐵店早點2.5 A-PN 2026/03/06 48,294 計算 32,081 26,780 34,000 1,000
0910062 謝小姐-三塊厝2.5 A-PN 2026/03/06 48,099 計算 31,951 25,818 34,000 1,000
6410005 早安-美濃龍山-3 A-PN 2026/03/04 47,923 計算 31,835 28,940 34,000 1,000
5970002 鼎宇企業有限公司-5 K1 2026/01/13 47,886 計算 31,810 28,469 34,000 1,000
1110056 順發早點-5 A-PN 2026/02/13 47,591 計算 31,614 31,575 34,000 1,000
3810008 反轉奶酥-鹽埕2.5 K1 2026/03/03 47,579 計算 31,606 18,936 34,000 1,000
1910039 厝邊早餐店2.5 K2 2026/03/06 46,380 計算 30,810 53,396 71,000 2,100
0120725 清涼冷飲-公館2.5 A-PT 2026/03/06 44,298 計算 29,427 22,360 31,000 900
2610067 123早餐-枋寮2.5 K2 2026/02/25 43,687 計算 29,021 34,559 46,000 1,350
0110948 晨食老爹2.4 A-PT 2026/03/05 43,478 計算 28,882 18,136 31,000 900
2510007 佳和早點2.5 K2 2026/03/03 43,462 計算 28,871 22,770 31,000 900
2510027 阮慶華2.5 K2 2026/03/03 43,316 計算 28,774 47,272 63,000 1,850
2510033 美而美-黃福壽2.5 K2 2026/03/06 43,234 計算 28,720 23,840 31,000 900
4290009 反轉厚奶酥-三民店1.4 K1 2026/03/05 43,002 計算 28,566 23,881 30,000 900
0111225 早安美芝城-屏東自由 A-PT 2026/02/13 42,758 計算 28,404 25,181 30,000 900
10110005 哈胖high胖-總部-4 K2 2026/02/05 42,343 計算 28,128 0 15,000 450
2010006 潘麗娟3 K2 2026/03/04 42,151 計算 28,000 18,297 30,000 900
5810207 咕嘰早午加盟-文建1.4 K1 2026/03/05 41,988 計算 27,892 25,585 30,000 900
2610081 蘇怡靜-2 K2 2026/03/03 41,650 計算 27,668 21,534 30,000 900
1010022 晨間餐飲-翁冬蜜-1.4 A-PN 2026/03/05 41,401 計算 27,502 23,254 29,000 850
0910111 麥格堡-2.5 A-PN 2026/03/06 41,312 計算 27,443 30,605 41,000 1,200
5810240 咕嘰早午加盟-三民1.4 K1 2026/03/05 41,303 計算 27,437 25,669 29,000 850
4310038 拾嘗早午餐1.4 K2 2026/03/05 40,946 計算 27,200 14,982 29,000 850
0110130 美加美-屏東建民 A-PT 2026/03/02 39,883 計算 26,494 30,534 41,000 1,200
0810054 陳小姐-九如2.5 A-PN 2026/03/06 39,455 計算 26,209 23,119 28,000 800
0910115 101早餐2.5 A-PN 2026/03/06 39,242 計算 26,068 18,851 28,000 800
11390001 貴族mini-台南-4 K2 2026/03/05 38,711 計算 25,715 18,476 28,000 800
2510011 星辰2.5 K2 2026/03/06 38,535 計算 25,598 25,416 27,000 800
0910021 卡醬-2.5 A-PN 2026/03/06 38,263 計算 25,418 27,131 36,000 1,050
5860009 麗莎旅舘股份有限公司2.5 K1 2026/03/03 38,147 計算 25,341 12,534 27,000 800
0910009 嘟嘟早點-2.5 A-PN 2026/03/06 37,534 計算 24,933 23,357 27,000 800
1910004 哈豆早點-2.5 K2 2026/03/03 36,762 計算 24,420 23,051 26,000 750
2510017 營養-佳冬塭豐2.5 K2 2026/03/06 36,516 計算 24,257 20,234 26,000 750
1710101 美滋早餐-2.5 K2 2026/03/03 36,113 計算 23,989 16,077 26,000 750
2530034 可麗餅-蘇小姐-3 K2 2026/03/06 36,000 計算 23,914 6,000 16,000 450
5820047 艾里睞喫-2.5 K1 2026/03/06 35,397 計算 23,514 20,843 25,000 750
5810244 銘芳早餐_1.4 K1 2026/03/03 35,326 計算 23,467 17,812 25,000 750
0710037 麟洛早點-3 K1 2026/03/04 35,042 計算 23,278 15,222 25,000 750
0910121 晨光早餐2.5 A-PN 2026/03/06 34,587 計算 22,976 19,676 25,000 750
2610068 6吋盤早午餐-枋寮2.5 K2 2026/03/06 34,236 計算 22,742 20,569 24,000 700
0610068 好食光早午餐-1.4 A-PN 2026/03/05 33,533 計算 22,275 17,500 24,000 700
1010070 早安-鹽埔光復1.4 A-PN 2026/03/02 33,408 計算 22,192 20,285 24,000 700
1110029 早安-舊寮-2.5 A-PN 2026/03/06 33,081 計算 21,975 16,825 24,000 700
1980001 林邊刈包-2.5 K2 2026/03/03 32,720 計算 21,735 15,696 23,000 650
0610061 早安美芝城-繁華1.4 A-PN 2026/03/05 32,692 計算 21,717 29,184 39,000 1,150
0110932 活力-屏商技 A-PT 2026/03/03 32,676 計算 21,706 0 12,000 350
2010033 美而美-人和-3 K2 2026/03/04 32,671 計算 21,703 8,076 22,000 650
2610057 晨間廚房-枋寮-2.5 K2 2026/02/24 32,587 計算 21,647 10,831 23,000 650
4610008 找餐早餐-1.4 K2 2026/03/05 31,832 計算 21,146 18,176 23,000 650
0110833 活力-公館2.5 A-PT 2026/03/06 31,504 計算 20,928 18,593 22,000 650
1210044 早安美芝城-來義-3 K1 2026/03/04 31,405 計算 20,862 11,967 22,000 650
1160007 馮小姐1.4 A-PN 2026/03/05 31,031 計算 20,613 13,621 22,000 650
6410048 鍾家永和豆漿_3 A-PN 2026/03/04 30,980 計算 20,580 21,388 29,000 850
5810010 潘金雀1.4 K1 2026/03/05 30,938 計算 20,552 17,827 22,000 650
1710013 翔美早點2.5 K2 2026/03/06 30,837 計算 20,485 18,172 22,000 650
5810242 饗逗留2.5 K1 2026/03/06 30,812 計算 20,468 17,612 22,000 650
6310014 多浰早餐-3 A-PN 2026/03/04 30,536 計算 20,285 13,166 22,000 650
0111269 咔啦堡快速早餐-屏基店 A-PT 2026/03/05 30,217 計算 20,073 16,578 22,000 650
1210051 美齡早餐-萬巒-3 K1 2026/02/25 30,170 計算 20,042 9,478 22,000 650
1110078 阿拉斯家早餐2.5 A-PN 2026/03/06 30,002 計算 19,930 18,111 21,000 600
4410014 小宇坊-2.5 K1 2026/03/06 29,833 計算 19,818 13,296 21,000 600
0610048 嘉美早餐店1.4 A-PN 2026/03/05 29,825 計算 19,812 18,789 21,000 600
2610032 美滋堡-枋寮2.5 K2 2026/03/03 29,755 計算 19,766 22,616 30,000 900
0210126 活力-潮州泗林-3 K1 2026/03/04 29,721 計算 19,743 16,353 21,000 600
0160081 薇楓汽車旅館-站前館 A-PT 2026/03/06 29,532 計算 19,618 14,097 21,000 600
1130004 黃麗華-1.4 A-PN 2026/03/05 29,525 計算 19,613 17,267 21,000 600
1010069 津味早點-1.4 A-PN 2026/03/05 29,150 計算 19,364 16,949 21,000 600
0510130 陳先生-香社-3 K2 2026/03/04 29,107 計算 19,335 18,994 21,000 600
0510040 夏一跳菜寮W3 K2 2026/03/04 29,095 計算 19,327 24,133 32,000 950
0110002 美而美公園西路 A-PT 2026/03/06 28,925 計算 19,214 18,739 21,000 600
2610060 歐海喲早餐-枋寮2.5 K2 2026/03/06 28,836 計算 19,155 14,825 21,000 600
2610051 漢堡大師-枋寮2.5 K2 2026/03/03 28,770 計算 19,112 35,938 48,000 1,400
0111240 福號早餐-建豐店 A-PT 2026/03/06 28,766 計算 19,109 16,399 21,000 600
1730001 一品香飯糰W3 K2 2026/03/04 28,524 計算 18,948 14,262 20,000 600
0111032 新早安 A-PT 2026/03/06 28,268 計算 18,778 17,315 20,000 600
0510009 巨林-社皮W3 K2 2026/03/04 28,084 計算 18,656 22,333 30,000 900
0110042 歸來早點W3 K2 2026/02/11 28,053 計算 18,635 13,946 20,000 600
2710015 太源早點-吳水德-5 K2 2026/03/06 27,565 計算 18,311 18,203 20,000 600
4310029 早到晚到加盟-楠梓店1.4 K2 2026/03/02 27,557 計算 18,306 9,027 20,000 600
0110115 小丸子-頭前溪2.5 A-PT 2026/03/06 27,328 計算 18,154 13,019 20,000 600
0910020 小叮噹-泰源-2.5 A-PN 2026/03/06 27,244 計算 18,098 17,316 20,000 600
5810217 三個蛋-2.5 K1 2026/03/03 27,015 計算 17,946 27,480 37,000 1,100
0111112 芳鄰早餐店W3 K2 2026/03/04 26,967 計算 17,914 24,524 33,000 950
1790001 福井日式丼飯_3 K2 2026/03/04 26,810 計算 17,810 11,813 19,000 550
0190002 小二春鍋燒-民族店 A-PT 2026/03/03 26,773 計算 17,785 18,368 25,000 750
1210040 阿蜜斯(3) K1 2026/03/04 26,690 計算 17,730 14,485 19,000 550
2510019 佳佳早點佳冬2.5 K2 2026/03/06 26,627 計算 17,688 16,972 19,000 550
5810245 許早,早餐1.4 K1 2026/02/02 26,621 計算 17,684 8,791 19,000 550
0330007 天青合-3 K2 2026/03/04 26,485 計算 17,594 958 3,000 50
1110095 佳城早餐店-高樹2.5 A-PN 2026/03/06 26,372 計算 17,519 23,037 31,000 900
5810195 Q嫩蛋餅-2.5 K1 2026/02/24 26,312 計算 17,479 11,166 19,000 550
4210040 甜心舫-1.4 K1 2026/03/02 26,236 計算 17,428 14,201 19,000 550
0111258 約豊商行_萬年店 A-PT 2026/03/06 26,227 計算 17,422 20,695 28,000 800
0110007 夏一跳-公裕街 A-PT 2026/03/04 26,183 計算 17,393 23,241 31,000 900
0510199 想初早餐-3 K2 2026/02/25 26,135 計算 17,361 12,398 19,000 550
0510185 水月仙早餐-3 K2 2026/03/04 26,112 計算 17,346 15,478 19,000 550
2610026 梅梅早點2.5 K2 2026/03/06 25,997 計算 17,269 19,175 26,000 750
5810247 鳳東早餐1.4 K1 2026/03/05 25,583 計算 16,994 41,004 54,000 1,600
2510018 日日冷飲早點2.5 K2 2026/03/06 25,367 計算 16,851 8,517 18,000 500
2510025 美而美-佳冬玉光2.5 K2 2026/03/06 25,354 計算 16,842 12,361 18,000 500
0111132 早安!佳晨你好 A-PT 2026/03/06 25,123 計算 16,689 17,378 23,000 650
2610003 美而美-枋寮東海-2.5 K2 2026/03/06 24,674 計算 16,391 17,012 23,000 650
1310019 東勢五金早點-3 K1 2026/03/04 24,615 計算 16,351 15,472 18,000 500
0910039 勝家早餐-1.4 A-PN 2026/03/05 24,587 計算 16,333 13,898 18,000 500
1210020 萬福早點(W3) K1 2026/03/04 24,419 計算 16,221 14,307 18,000 500
0130462 薇米文旅-屏東 A-PT 2026/03/05 24,335 計算 16,165 12,249 17,000 500
0111068 美而美-武成店 A-PT 2026/03/06 24,275 計算 16,126 14,865 17,000 500
0111095 KOKO-可可 A-PT 2026/03/05 24,082 計算 15,997 20,022 27,000 800
1910038 彭小姐-林邊2.5 K2 2026/03/03 23,976 計算 15,927 13,307 17,000 500
1210016 早安-佳佐-3 K1 2026/03/04 23,961 計算 15,917 13,116 17,000 500
2510046 佳冬早餐店2.5 K2 2026/03/06 23,884 計算 15,866 13,904 17,000 500
1710058 新園美佳福炸雞-3 K2 2026/03/06 23,849 計算 15,843 13,206 17,000 500
3810010 栗巷早午餐2.5 K1 2026/03/03 23,636 計算 15,701 15,292 17,000 500
5810021 永和豆漿-五甲-2.5 K1 2026/03/03 23,153 計算 15,380 12,525 17,000 500
1210017 成德早點(3) K1 2026/03/04 23,107 計算 15,350 17,901 24,000 700
1110113 來初早餐-2.5 A-PN 2026/03/06 23,022 計算 15,293 14,490 17,000 500
0110045 明蕙早餐 A-PT 2026/03/06 23,014 計算 15,288 12,897 17,000 500
2610052 東海-美滋堡2.5 K2 2026/03/06 22,796 計算 15,143 13,907 16,000 450
4310036 反轉厚奶酥-楠梓店1.4 K2 2026/03/02 22,450 計算 14,913 6,023 16,000 450
4130001 大統排骨-2.5 K1 2026/02/06 22,296 計算 14,811 11,148 16,000 450
2710014 莊麗琴-2 K2 2026/03/03 22,174 計算 14,730 11,318 16,000 450
10690002 哈胖加盟-大灣_4 K2 2026/03/05 22,157 計算 14,719 10,682 16,000 450
0210287 潘秋純早餐-3 K1 2026/03/04 22,033 計算 14,636 11,211 16,000 450
6320047 紅茶小舖-早餐-3 A-PN 2026/03/04 21,912 計算 14,556 11,056 16,000 450
4210153 咕嘰早午加盟-三民街1.4 K1 2026/03/05 21,814 計算 14,491 11,895 16,000 450
1710003 金麥早餐-郭榮鄰-3 K2 2026/02/04 21,761 計算 14,456 5,857 16,000 450
4390006 哈胖high胖加盟-楠梓-4 K2 2026/02/05 21,504 計算 14,285 8,512 15,000 450
1110060 早安-新南1.4 A-PN 2026/03/05 21,365 計算 14,192 13,270 15,000 450
2610074 潘玉珮-5 K2 2026/03/06 21,308 計算 14,155 14,429 19,000 550
1420011 格子咖啡屋(竹田)_3 K1 2026/02/11 21,195 計算 14,080 12,776 15,000 450
0640046 香潭幼兒園(1.4) A-PN 2026/03/05 21,072 計算 13,998 11,182 15,000 450
6110010 王記早餐1.4 K2 2026/03/05 20,985 計算 13,940 11,436 15,000 450
2510055 美味早點-羌園2.5 K2 2026/03/03 20,630 計算 13,704 9,606 15,000 450
0110044 美而美屏東鶴聲 A-PT 2026/03/06 20,618 計算 13,696 11,107 15,000 450
0520001 大西洋-萬丹_3 K2 2026/03/04 20,232 計算 13,440 12,283 15,000 450
2610013 李雅華(原伍錦桃)2.5 K2 2026/02/24 20,188 計算 13,411 14,071 19,000 550
0810048 天心九如2.5 A-PN 2026/03/06 20,130 計算 13,372 13,006 15,000 450
0510144 乃叔叔早餐店_3 K2 2026/03/04 20,034 計算 13,308 12,113 14,000 400
0111275 福號早餐-崇蘭店 A-PT 2026/03/05 19,974 計算 13,268 10,235 14,000 400
1910012 吉莉早點2.5 K2 2026/03/06 19,723 計算 13,102 13,937 19,000 550
6210030 晶鑫早餐店1.4 K2 2026/03/05 19,666 計算 13,064 8,628 14,000 400
2110012 美和美-崁頂-3 K2 2026/03/04 19,315 計算 12,831 10,347 14,000 400
0160078 金萬成-3 A-PT 2026/02/25 18,860 計算 12,528 7,809 14,000 400
1010018 戴小姐/25(1.4) A-PN 2026/03/05 18,466 計算 12,267 7,505 13,000 350
1910022 美芝城-林邊2.5 K2 2026/02/10 18,366 計算 12,200 22,558 30,000 900
0610064 咕咕咕-1.4 A-PN 2026/03/02 18,118 計算 12,036 6,476 13,000 350
0121153 英雄聯盟 A-PT 2026/03/04 18,011 計算 11,964 6,092 13,000 350
1010017 500CC木瓜牛奶1.4 A-PN 2026/03/05 18,009 計算 11,963 10,101 13,000 350
4410002 呷尚寶-中安-2.5 K1 2026/02/24 17,934 計算 11,913 7,981 13,000 350
0910012 楊太太2.5 A-PN 2026/03/06 17,933 計算 11,913 8,943 13,000 350
2510049 樂活早點2.5 K2 2026/02/24 17,880 計算 11,877 9,543 13,000 350
2620059 小甜甜冰茶2.5 K2 2026/03/03 17,878 計算 11,876 9,312 13,000 350
1920010 尚蓋讚早點-阿滿2 K2 2026/03/03 17,828 計算 11,843 7,680 13,000 350
4110050 你好.你好早餐-2.5 K1 2026/03/03 17,212 計算 11,434 10,884 13,000 350
0510096 萬新早餐-3 K2 2026/02/25 17,118 計算 11,371 4,214 12,000 350
0810070 潘雪香-2.5 A-PN 2026/03/06 17,053 計算 11,328 11,405 15,000 450
4210039 客拉客早餐店-1.4 K1 2026/03/02 16,812 計算 11,168 8,475 12,000 350
1510024 惠芳早餐-2 A-PN 2026/03/03 16,804 計算 11,163 12,224 17,000 500
4430005 橙屋商旅2.5 K1 2026/03/06 16,733 計算 11,115 3,130 9,000 250
4210049 美而美-莊敬1.4 K1 2026/03/05 16,554 計算 10,997 10,108 12,000 350
4610014 早安50號-4 K2 2026/03/05 16,491 計算 10,955 7,549 12,000 350
1710026 小叮噹-新園鹽埔-3 K2 2026/02/11 16,457 計算 10,932 10,330 12,000 350
0510152 品味早餐店-3 K2 2026/02/25 16,378 計算 10,880 10,434 12,000 350
0510033 後庄早餐店-3 K2 2026/02/25 16,195 計算 10,758 4,796 12,000 350
0510173 小荳禾早餐店_3 K2 2026/03/04 16,152 計算 10,730 5,897 12,000 350
3910008 反轉厚奶酥-鼓山店_4 K1 2026/03/05 16,098 計算 10,694 6,682 12,000 350
5910039 晨園早午餐屋-2.5 K1 2026/02/25 16,032 計算 10,650 10,695 15,000 450
1220005 馬路克複合式(3) K1 2026/02/25 15,812 計算 10,504 9,643 12,000 350
0110096 豆豆早點屏東廣東 A-PT 2026/02/03 15,742 計算 10,457 −1,693 11,000 300
4210045 早安-義德路1.4 K1 2026/03/05 15,684 計算 10,419 7,790 11,000 300
0190026 龍興釣蝦-3 A-PT 2026/03/04 15,658 計算 10,401 5,581 11,000 300
0510198 兩個媽早餐-3 K2 2026/03/04 15,637 計算 10,387 9,272 11,000 300
K1P K1外送 K1 2026/03/06 15,562 計算 10,338 8,839 11,000 300
0111080 綠之村-海豐-3 A-PT 2026/03/04 15,457 計算 10,268 7,897 11,000 300
0110121 宜美早點-屏東頂柳W3 K2 2026/03/04 15,382 計算 10,218 7,891 11,000 300
0910032 載興早點-1.4 A-PN 2026/03/02 15,321 計算 10,178 13,717 19,000 550
1210001 美而美-佳佐-3 K1 2026/03/04 15,292 計算 10,158 8,785 11,000 300
4580002 Mr.蛋包腸-4 K1 2026/02/05 15,258 計算 10,136 0 6,000 150
0111285 約豊早午餐_崇蘭店 A-PT 2026/03/05 15,204 計算 10,100 9,020 11,000 300
0910001 咕咕叫2.5 A-PN 2026/03/06 15,124 計算 10,047 9,256 11,000 300
0710038 朝陽早餐-3 K1 2026/03/04 15,088 計算 10,023 7,358 11,000 300
0510027 紅豆餅-香社-3 K2 2026/03/04 14,976 計算 9,948 1,514 4,000 100
6410007 早安-美濃龍肚-3 A-PN 2026/03/04 14,940 計算 9,924 8,785 11,000 300
0110711 美而美-下蚶W3 K2 2026/03/04 14,925 計算 9,914 10,120 14,000 400
2520004 老弟冷飲店2.5 K2 2026/03/06 14,879 計算 9,884 21,317 28,000 800
0111058 美而美-頭前溪2.5 A-PT 2026/03/03 14,801 計算 9,832 11,187 15,000 450
4210094 美而美-鼎祥街-4 K1 2026/03/05 14,676 計算 9,749 5,485 11,000 300
1110120 清鑫美食-2.5 A-PN 2026/02/24 14,545 計算 9,662 8,965 11,000 300
0910046 早安-里港永樂2.5 A-PN 2026/03/03 14,514 計算 9,641 7,177 11,000 300
1910015 蘇小姐-3 K2 2026/02/25 14,447 計算 9,597 5,258 11,000 300
1010077 榮珍麵包店1.4 A-PN 2026/03/05 14,429 計算 9,585 7,961 11,000 300
1010001 吉蓮1.4 A-PN 2026/03/05 14,230 計算 9,453 8,944 10,000 300
1710059 佳佳早餐(仙公廟)2.5 K2 2026/03/03 14,200 計算 9,433 5,472 10,000 300
10010003 哈胖high胖-海安-4 K2 2026/03/05 14,188 計算 9,425 2,491 7,000 200
1010112 黃雅玲-1.4 A-PN 2026/03/05 14,099 計算 9,366 9,593 13,000 350
0910068 張貴芬2.5 A-PN 2026/03/06 14,040 計算 9,327 5,608 10,000 300
1710095 夏一跳-新園-2.5 K2 2026/02/24 13,994 計算 9,296 10,563 14,000 400
0180098 泰興中盤-2 K2 2026/03/03 13,870 計算 9,214 7,055 10,000 300
1010083 家貝子-4 A-PN 2026/03/05 13,862 計算 9,208 0 5,000 150
4610004 味香美而美-4 K2 2026/03/05 13,833 計算 9,189 9,311 13,000 350
0910114 尼寶食坊早午餐2.5 A-PN 2026/03/06 13,734 計算 9,123 9,799 13,000 350
0110716 淨萱(巧味園)2.5 A-PT 2026/03/03 13,385 計算 8,891 6,150 10,000 300
1210002 吳貴慧(3) K1 2026/02/25 13,268 計算 8,814 3,193 9,000 250
6070002 橘子園東林幼兒園-3 K2 2026/02/25 13,185 計算 8,759 7,201 10,000 300
0111140 樂活早點 A-PT 2026/02/24 13,177 計算 8,753 6,339 10,000 300
0110194 豐早點 A-PT 2026/03/06 12,922 計算 8,584 7,391 10,000 300
6480002 張馨月-3 A-PN 2026/03/04 12,888 計算 8,561 5,582 9,000 250
1120009 廣興96號-5 A-PN 2026/03/06 12,881 計算 8,557 9,599 13,000 350
1020021 BOSS-1.4 A-PN 2026/03/05 12,722 計算 8,451 7,966 9,000 250
1220068 有坐位冰工房-3 K1 2026/02/11 12,655 計算 8,407 0 5,000 150
6110001 鳥松小叮噹1.4 K2 2026/02/26 12,631 計算 8,391 7,238 9,000 250
0111138 廣東999 A-PT 2026/03/05 12,528 計算 8,322 10,004 14,000 400
0910067 春姑娘-3 A-PN 2026/03/04 12,420 計算 8,250 4,768 9,000 250
6010044 敖乍早餐坊-3 K2 2026/01/28 12,357 計算 8,209 7,653 9,000 250
4210146 金呷不一樣早午餐1.4 K1 2026/03/05 12,188 計算 8,096 8,317 11,000 300
0111268 小憩早午餐 A-PT 2024/10/17 0 中位數 7,983 0 5,000 150
0620068 喝雅廊 A-PT 2024/12/06 0 中位數 7,983 0 5,000 150
0960023 佳群生技2.5 A-PN 2024/12/27 0 中位數 7,983 0 5,000 150
0130459 卡彿魯岸咖啡 A-PT 2024/07/16 0 中位數 7,983 0 5,000 150
0130244 嫁水餃 A-PT 2024/07/03 0 中位數 7,983 0 5,000 150
0190032 早到晚到-屏東自由店 A-PT 2026/02/02 0 中位數 7,983 0 5,000 150
1110127 王美英舅媽1.4 A-PN 2024/07/11 0 中位數 7,983 0 5,000 150
1110109 陳英旭1.4 A-PN 2024/12/05 0 中位數 7,983 0 5,000 150
1110064 豐誠冷凍-1.4 A-PN 2024/08/12 0 中位數 7,983 0 5,000 150
1040003 振聲冷凍食品 A-PN 2024/08/29 0 中位數 7,983 0 5,000 150
0130419 日食糖國際開發有限公 A-PT 2024/11/15 0 中位數 7,983 0 5,000 150
0111286 唐龍包子2.5 A-PT 2026/03/06 0 中位數 7,983 4,693 9,000 250
0110927 早安-博愛470_4 A-PT 2026/03/05 0 中位數 7,983 651 3,000 50
1010006 林素珠-1.4 A-PN 2024/07/19 0 中位數 7,983 0 5,000 150
0111270 方家早餐1.4 A-PT 2024/08/01 0 中位數 7,983 0 5,000 150
0180171 爆Q美式炸雞 A-PT 2024/08/16 0 中位數 7,983 0 5,000 150
0120670 飯糰煎餃 A-PT 2024/09/23 0 中位數 7,983 0 5,000 150
6330010 豚匠拉麵-旗山-3 A-PN 2024/12/11 0 中位數 7,983 0 5,000 150
6430010 眾涼冰店-3 A-PN 2024/07/03 0 中位數 7,983 0 5,000 150
0110986 橙食早餐 A-PT 2026/02/05 0 中位數 7,983 0 5,000 150
0110228 早安-屏東清寧 A-PT 2026/02/11 0 中位數 7,983 3,105 9,000 250
1180006 高樹小餐車-2.5 A-PN 2024/11/05 0 中位數 7,983 0 5,000 150
1110107 傻師傅湯包2.5 A-PN 2024/09/13 0 中位數 7,983 0 5,000 150
0860005 台灣孟德爾公司-2.5 A-PN 2024/09/06 0 中位數 7,983 0 5,000 150
0880002 徐媽便當2.5 A-PN 2024/09/06 0 中位數 7,983 0 5,000 150
0980011 海南雞飯2.5 A-PN 2024/09/24 0 中位數 7,983 0 5,000 150
0950002 里港鄉立幼兒園2.5 A-PN 2024/09/03 0 中位數 7,983 0 5,000 150
0910010 金鳳早點2.5 A-PN 2024/07/12 0 中位數 7,983 0 5,000 150
0960024 豬肉攤-里港2.5 A-PN 2024/09/06 0 中位數 7,983 0 5,000 150
0910061 早點有你1.4 A-PN 2024/10/14 0 中位數 7,983 0 5,000 150
2410013 瀞早午餐_2.5 K2 2026/03/06 0 中位數 7,983 0 5,000 150
0310125 寧晨早午餐2.5 K2 2025/01/14 0 中位數 7,983 0 5,000 150
0750002 吉兒堡幼兒園-3 K1 2025/05/28 0 中位數 7,983 0 5,000 150
5810249 鳳北闆娘1.4 K2 2026/02/12 0 中位數 7,983 724 3,000 50
3740003 小董生煎包-2 K1 2025/02/25 0 中位數 7,983 0 5,000 150
2030150 同順麵館-3 K2 2025/09/03 0 中位數 7,983 0 5,000 150
1340001 正興科技開發-3 K1 2026/03/04 0 中位數 7,983 0 5,000 150
6210033 粒粒飯糰1.4 K2 2026/03/05 0 中位數 7,983 1,323 4,000 100
3710088 辰食早餐-5 K1 2026/01/23 0 中位數 7,983 1,590 5,000 150
2290002 古樓文健棧_3 K1 2026/03/04 0 中位數 7,983 0 5,000 150
4580001 吳小姐-高雄左營1.4 K1 2026/03/05 0 中位數 7,983 0 5,000 150
4490002 Mr.Q大熱狗-漢民2.5 K1 2026/01/16 0 中位數 7,983 1,610 5,000 150
1310119 稻香早點-3 K1 2025/01/22 0 中位數 7,983 0 5,000 150
4690002 好腳舍足體健康會館-仁武館_4 K2 2026/03/05 0 中位數 7,983 1,838 5,000 150
3710029 美芝城-憲政路_5 K1 2026/02/04 0 中位數 7,983 0 5,000 150
0780001 徐粄家-3 K1 2024/10/16 0 中位數 7,983 0 5,000 150
4210154 角落1.4 K1 2025/03/10 0 中位數 7,983 0 5,000 150
2230002 好地方-3 K1 2025/05/21 0 中位數 7,983 0 5,000 150
3710086 呷尚寶-苓雅2.5 K1 2024/08/06 0 中位數 7,983 0 5,000 150
11310002 向春-4 K2 2025/04/10 0 中位數 7,983 0 5,000 150
1210006 吳中民(3) K1 2024/10/16 0 中位數 7,983 0 5,000 150
1220007 天天來冰果屋-3 K1 2025/05/21 0 中位數 7,983 0 5,000 150
4110049 咕嘰早午加盟-瑞南2.5 K1 2025/02/07 0 中位數 7,983 0 5,000 150
0510201 古糧萬丹店_3 K2 2026/03/04 0 中位數 7,983 0 5,000 150
5910043 匪熊他家2.5 K1 2026/02/03 0 中位數 7,983 1,896 5,000 150
2580007 柴卷飯卷鋪_2.5 K2 2026/02/06 0 中位數 7,983 0 5,000 150
0510098 新鐘早點-3 K2 2024/12/18 0 中位數 7,983 0 5,000 150
5810250 i蛋早餐坊2.5 K1 2026/02/24 0 中位數 7,983 0 5,000 150
4380001 品元德國豬腳-1.4 K2 2025/01/23 0 中位數 7,983 0 5,000 150
10420001 蘇銘誌 K2 2026/02/05 0 中位數 7,983 0 5,000 150
4280008 麗芳排骨酥-鼎山店1.4 K1 2025/09/08 0 中位數 7,983 0 5,000 150
5880002 李師傳捲餅-鳳山4 K2 2025/02/13 0 中位數 7,983 0 5,000 150
0330050 福灣莊園-3 K2 2026/02/24 0 中位數 7,983 0 5,000 150
4610013 花盤子-仁雄-1.4 K1 2024/10/25 0 中位數 7,983 0 5,000 150
2520051 茶壩子(佳冬)2.5 K2 2026/03/03 0 中位數 7,983 0 5,000 150
5810241 胖橘早午餐2.5 K1 2025/03/14 0 中位數 7,983 0 5,000 150
2010018 蔡小姐(南州剉冰)-3 K2 2026/02/25 0 中位數 7,983 748 3,000 50
4210022 荳趣巧食廚房-2 K1 2024/10/08 0 中位數 7,983 0 5,000 150
0510195 夏一跳-香社-3 K2 2025/01/08 0 中位數 7,983 0 5,000 150
4560006 精品河堤會館-1.4 K1 2026/02/26 0 中位數 7,983 0 5,000 150
3530001 華統小吃店_5 K1 2026/03/03 0 中位數 7,983 2,787 8,000 200
0710014 美又美-麟洛成功-3 K1 2024/07/03 0 中位數 7,983 0 5,000 150
1250001 晨欣食品股份有限公司-3 K1 2026/01/21 0 中位數 7,983 19,257 26,000 750
1410004 凱蒂貓-西勢-3 K1 2025/07/16 0 中位數 7,983 0 5,000 150
5910042 轉角手作2.5 K1 2025/09/19 0 中位數 7,983 0 5,000 150
0510036 東方美-萬丹_3 K2 2026/01/14 0 中位數 7,983 4,472 9,000 250
4210006 柯太太-1.4 K1 2025/06/19 0 中位數 7,983 0 5,000 150
1220044 韓式茶飲-3 K1 2024/12/11 0 中位數 7,983 0 5,000 150
2610012 北勢寮-美而美2.5 K2 2026/03/06 0 中位數 7,983 0 5,000 150
4120008 文香奶茶-2.5 K1 2025/04/25 0 中位數 7,983 0 5,000 150
2520057 國豐冷飲-2.5 K2 2024/07/12 0 中位數 7,983 0 5,000 150
4220040 愛茶1.4 K1 2025/02/13 0 中位數 7,983 0 5,000 150
2790003 加祿堂營區-熱食部2.5 K2 2025/07/01 0 中位數 7,983 0 5,000 150
0520102 陳小姐-萬丹肉粽_3 K2 2026/01/14 0 中位數 7,983 1,143 4,000 100
4220038 宇航茶品1.4 K1 2024/07/18 0 中位數 7,983 0 5,000 150
4410027 飛機路444號-2.5 K1 2025/04/15 0 中位數 7,983 0 5,000 150
4210155 弘爺漢堡-建元店1.4 K1 2025/07/17 0 中位數 7,983 0 5,000 150
3720010 CC老爹炸雞店-5 K1 2026/01/23 0 中位數 7,983 2,103 6,000 150
4210099 周金安大哥2.5 K1 2026/01/30 0 中位數 7,983 6,238 9,000 250
4210073 山東-巧沛東方美-1.4 K1 2025/04/21 0 中位數 7,983 0 5,000 150
1980004 章魚燒-林金明2.5 K2 2024/12/24 0 中位數 7,983 0 5,000 150
4290010 禾森咖啡館-正忠店1.4 K1 2025/11/06 0 中位數 7,983 0 5,000 150
2590002 探咻鍋燒-宵夜-2.5 K2 2024/09/13 0 中位數 7,983 0 5,000 150
2620074 品淳茶葉-茶博士-2 K2 2025/02/18 0 中位數 7,983 0 5,000 150
4330006 黃美華(楠梓)1.4 K2 2025/03/31 0 中位數 7,983 0 5,000 150
5890005 黄室珈哩2.5 K1 2025/03/28 0 中位數 7,983 0 5,000 150
2680008 真幸福炸物2.5 K2 2025/06/13 0 中位數 7,983 0 5,000 150
4110032 晨間廚房-瑞北路1.4 K1 2024/10/25 0 中位數 7,983 0 5,000 150
3710085 活力100-2.5 K1 2025/08/22 0 中位數 7,983 0 5,000 150
2510020 佳欣漢堡2.5 K2 2024/10/18 0 中位數 7,983 0 5,000 150
2680007 炸蛋蔥油餅-枋寮2.5 K2 2025/02/18 0 中位數 7,983 0 5,000 150
2910007 早點見面-5 K2 2024/07/19 0 中位數 7,983 0 5,000 150
1780002 黃記鍋燒-2.5 K2 2025/04/01 0 中位數 7,983 0 5,000 150
5890009 五甲食堂2.5 K1 2025/04/22 0 中位數 7,983 0 5,000 150
3780006 麵餓心膳-2.5 K1 2025/03/04 0 中位數 7,983 0 5,000 150
2580006 郭修輝 K2 2025/03/25 0 中位數 7,983 0 5,000 150
5810101 明鳳早餐店-2.5 K1 2025/04/08 0 中位數 7,983 0 5,000 150
3610009 enjoy手作早午餐2.5 K1 2025/09/09 0 中位數 7,983 0 5,000 150
0510196 黃素真2.5 K2 2024/10/18 0 中位數 7,983 0 5,000 150
2610001 瑞麟-枋寮中山 K2 2025/01/14 0 中位數 7,983 0 5,000 150
2560001 國立佳冬農校2.5 K2 2025/05/27 0 中位數 7,983 0 5,000 150
2630014 鳳阿煎餅2.5 K2 2025/03/04 0 中位數 7,983 0 5,000 150
4510025 蛋餅-自由二路282號-1.4 K1 2025/04/10 0 中位數 7,983 0 5,000 150
3710087 新食尚早午餐2.5 K1 2025/02/21 0 中位數 7,983 0 5,000 150
5810199 田香園早餐坊2.5 K1 2025/04/22 0 中位數 7,983 0 5,000 150
2650001 新廣泰號2.5 K2 2025/01/17 0 中位數 7,983 0 5,000 150
5890004 小二春福氣鍋鳳山店-1.4 K1 2025/02/18 0 中位數 7,983 0 5,000 150
3980001 池野家-5 K1 2024/11/29 0 中位數 7,983 0 5,000 150
4430003 雲天咖啡館(雲天一館)2.5 K1 2025/05/09 0 中位數 7,983 0 5,000 150
2630034 轟炸雞炸雞店2.5 K2 2024/10/29 0 中位數 7,983 0 5,000 150
4280007 祥豪記火雞肉飯1.4 K1 2025/11/06 0 中位數 7,983 0 5,000 150
2630031 昌平炸雞-枋寮2.5 K2 2024/08/20 0 中位數 7,983 0 5,000 150
1970002 林邊仁和國小-黃煜閔2.5 K2 2024/07/02 0 中位數 7,983 0 5,000 150
1710096 弘爺漢堡-新園 3 K2 2025/05/07 0 中位數 7,983 0 5,000 150
1790002 尚濦食堂-3 K2 2025/02/26 0 中位數 7,983 0 5,000 150
5810238 托比廚房1.4 K1 2025/08/11 0 中位數 7,983 0 5,000 150
1020094 佳鑫飼料行-3 K2 2024/11/27 0 中位數 7,983 0 5,000 150
5810233 美芝城-杭州街2.5 K1 2025/02/07 0 中位數 7,983 0 5,000 150
5870004 仁仁幼兒園_2 K1 2025/10/30 0 中位數 7,983 0 5,000 150
5820046 一口二食-2.5 K1 2024/12/24 0 中位數 7,983 0 5,000 150
5890001 阿財牛排館-2.5 K1 2025/01/24 0 中位數 7,983 0 5,000 150
5820048 黑糖嬤手作茶1.4 K1 2025/08/28 0 中位數 7,983 0 5,000 150
5830041 金田便當-2 K1 2025/05/13 0 中位數 7,983 0 5,000 150
2020025 南州上海黑糖剉冰3 K2 2025/05/21 0 中位數 7,983 0 5,000 150
0120142 涼水站-3 K2 2025/03/26 0 中位數 7,983 0 5,000 150
0510194 晨光廚房-3 K2 2025/06/25 0 中位數 7,983 0 5,000 150
3750002 苓雅分局2.5 K1 2025/11/04 0 中位數 7,983 0 5,000 150
1760010 元豪-新園鹽埔-3 K2 2025/10/29 0 中位數 7,983 0 5,000 150
0180020 小騎士免洗餐具1.4 K2 2026/01/15 0 中位數 7,983 9,686 13,000 350
0170465 瑞峰長照機構-3 K2 2025/11/12 0 中位數 7,983 0 5,000 150
0580005 全統炸雞-萬丹店_3 K2 2025/06/06 0 中位數 7,983 0 5,000 150
0520168 下蚶泡沫W3 K2 2025/10/29 0 中位數 7,983 0 5,000 150
0510188 莯晨-3 K2 2024/12/25 0 中位數 7,983 0 5,000 150
4210145 早安-三民活力有光店1.4 K1 2025/10/09 0 中位數 7,983 0 5,000 150
5890007 Gd poker休閒會館1.4 K1 2024/12/26 0 中位數 7,983 0 5,000 150
0530027 紅豆餅-陳明隆_3 K2 2026/02/11 0 中位數 7,983 0 5,000 150
10180002 反轉奶酥-台南東區1.4 K2 2025/05/22 0 中位數 7,983 0 5,000 150
0580002 柑仔鍋燒麵-2.5 K2 2024/08/20 0 中位數 7,983 0 5,000 150
3910001 多點綠輕食廚房-2.5 K1 2025/07/29 0 中位數 7,983 0 5,000 150
2040001 慈惠B棟超商 K2 2025/05/07 0 中位數 7,983 0 5,000 150
1930002 姚建國-2.5 K2 2026/01/16 0 中位數 7,983 4,652 9,000 250
0520109 綠茶園-廈南-3 K2 2026/02/04 0 中位數 7,983 0 5,000 150
1720136 謝家冷飲-3 K2 2025/08/20 0 中位數 7,983 0 5,000 150
3610010 早安查理 2.5 K1 2025/10/15 0 中位數 7,983 0 5,000 150
0110190 歸來商店-施家W3 K2 2025/10/29 0 中位數 7,983 0 5,000 150
1720025 杏泉茶坊2.5 K2 2025/10/28 0 中位數 7,983 0 5,000 150
0520040 勝豐金香店-3 K2 2025/09/10 0 中位數 7,983 0 5,000 150
4330010 孔伯伯-楠梓1.4 K2 2025/07/31 0 中位數 7,983 0 5,000 150
0111024 鄧淑芳-我家廚坊-3 K1 2026/01/28 0 中位數 7,983 3,017 8,000 200
1720073 寶貝熊-3 K2 2026/02/04 0 中位數 7,983 2,817 8,000 200
1760003 安宮養護中心-3 K2 2025/07/02 0 中位數 7,983 0 5,000 150
1720095 向日葵烏龍-3 K2 2025/10/01 0 中位數 7,983 0 5,000 150
2580001 香雞城便當-2.5 K2 2024/12/10 0 中位數 7,983 0 5,000 150
2610023 蔡小姐水底寮-2 K2 2025/10/28 0 中位數 7,983 0 5,000 150
2510054 謝小姐-肉粽店2.5 K2 2026/02/06 0 中位數 7,983 0 5,000 150
2520017 塭豐信用部冷飲2.5 K2 2025/01/24 0 中位數 7,983 0 5,000 150
1970001 林邊非營利幼兒園 K2 2025/04/11 0 中位數 7,983 0 5,000 150
2510012 營養早點-昌隆2.5-G K2 2024/11/05 0 中位數 7,983 0 5,000 150
2520056 金旺仔黑糖剉冰2.5 K2 2025/02/25 0 中位數 7,983 0 5,000 150
2670001 新建成保養廠2.5 K2 2024/08/27 0 中位數 7,983 0 5,000 150
2630007 李先生 2.5 K2 2026/01/20 0 中位數 7,983 3,648 9,000 250
2610022 楊慶良2.5 K2 2026/03/03 0 中位數 7,983 0 5,000 150
0510186 陳安淨_3 K2 2026/01/14 0 中位數 7,983 10,126 14,000 400
0620062 田園複合式茶飲-3 K1 2025/07/23 0 中位數 7,983 0 5,000 150
1470002 天月企業社-3 K1 2025/10/22 0 中位數 7,983 0 5,000 150
3780007 大和食堂2店_2.5 K1 2025/10/16 0 中位數 7,983 0 5,000 150
0710011 邱玉山(3) K1 2026/01/21 0 中位數 7,983 14,263 19,000 550
4590003 林先生1.4 K1 2025/09/22 0 中位數 7,983 0 5,000 150
2610082 35中西式早餐-2 K2 2026/02/03 0 中位數 7,983 0 5,000 150
4380004 爆Q美式炸雞_4 K2 2025/09/18 0 中位數 7,983 0 5,000 150
4510008 富國美芝城-1.4 K1 2025/11/06 0 中位數 7,983 0 5,000 150
2520013 茶點子-佳冬2.5 K2 2025/10/17 0 中位數 7,983 0 5,000 150
0710010 清涼小站-麟洛(3) K1 2025/07/16 0 中位數 7,983 0 5,000 150
2230003 清涼冷飲-來義-3 K1 2025/09/17 0 中位數 7,983 0 5,000 150
4280005 湘帥客棧1.4 K1 2026/02/05 0 中位數 7,983 0 5,000 150
4290008 潮飯食堂1.4 K1 2025/10/30 0 中位數 7,983 0 5,000 150
5850006 真好自助餐-1.4 K1 2025/10/16 0 中位數 7,983 0 5,000 150
4420012 皇冠冰城-2 K1 2025/09/23 0 中位數 7,983 0 5,000 150
1920038 全紅飲料店-林邊2.5 K2 2026/02/06 0 中位數 7,983 0 5,000 150
0710039 活力找餐-3 K1 2026/03/04 0 中位數 7,983 1,986 6,000 150
4610030 日十早午餐-4 K2 2026/02/12 0 中位數 7,983 0 5,000 150
2680006 玥達人可麗餅-枋寮2.5 K2 2026/01/16 0 中位數 7,983 1,514 4,000 100
3730039 好好食光早午餐2.5 K1 2025/09/23 0 中位數 7,983 0 5,000 150
4230015 Hoters義大利麵-1.4 K2 2025/06/26 0 中位數 7,983 0 5,000 150
1230017 安巒山莊(3) K1 2025/09/10 0 中位數 7,983 0 5,000 150
3510016 食吧Light_5 K1 2025/10/14 0 中位數 7,983 0 5,000 150
5820018 金華冰城 K1 2025/09/22 0 中位數 7,983 0 5,000 150
5830049 香賓之城-4 K2 2026/02/05 0 中位數 7,983 0 5,000 150
4480004 石頭燒餅-小港2.5 K1 2025/09/30 0 中位數 7,983 0 5,000 150
4210149 吐司烤一下1.4 K1 2025/09/25 0 中位數 7,983 0 5,000 150
1420002 李記-3 K1 2026/02/25 0 中位數 7,983 1,405 4,000 100
0580003 社皮水煎包-3 K2 2025/10/08 0 中位數 7,983 0 5,000 150
2610015 濃濃香鱔魚意麵2.5 K2 2025/09/19 0 中位數 7,983 0 5,000 150
1210013 美而美-萬巒-3 K1 2026/03/04 12,018 計算 7,983 4,073 9,000 250
0510101 陳太太-萬丹冬瓜藤_3 K2 2026/02/11 0 中位數 7,983 0 5,000 150
5810213 綠森林小廚房_4 K2 2025/07/31 0 中位數 7,983 0 5,000 150
3790002 大和食堂2.5 K1 2025/09/19 0 中位數 7,983 0 5,000 150
4210072 美素園-正興-1.4 K1 2025/09/04 0 中位數 7,983 0 5,000 150
4180003 石頭燒餅-2.5 K1 2025/09/19 0 中位數 7,983 0 5,000 150
6210009 米妮漢堡1.4 K2 2026/02/05 0 中位數 7,983 0 5,000 150
4810002 呀咪快速早午餐-1.4 K2 2025/07/17 0 中位數 7,983 0 5,000 150
5880001 鄭太太飯糰_4 K1 2025/10/16 0 中位數 7,983 0 5,000 150
5810149 美迪亞-凱旋路-1.4 K1 2026/02/12 0 中位數 7,983 0 5,000 150
4290003 二春外鍋燒專賣店-鼎中店_4 K1 2026/03/02 0 中位數 7,983 0 5,000 150
4230001 吳記燒臘_1 K1 2026/01/19 0 中位數 7,983 2,787 8,000 200
2680009 雞霸天下_2 K2 2026/02/10 0 中位數 7,983 0 5,000 150
3910006 濰克早午餐-華泰店1.4 K1 2026/02/23 12,011 計算 7,979 6,242 9,000 250
10610004 就是堡快速早餐-1 K2 2026/03/02 11,997 計算 7,969 8,138 11,000 300
5810132 品早餐-2.5 K1 2026/03/03 11,964 計算 7,948 7,587 9,000 250
10610007 哈胖high胖加盟-中華店 K2 2026/03/05 11,903 計算 7,907 3,454 9,000 250
1920008 卡多利*林邊2.5 K2 2026/02/24 11,723 計算 7,787 11,998 16,000 450
3820001 雙妃-2 K1 2026/01/06 11,619 計算 7,718 11,619 16,000 450
1210004 林媽媽早點(W3) K1 2026/02/25 11,617 計算 7,717 0 5,000 150
2040004 弘全幼兒園-3 K2 2026/03/04 11,567 計算 7,684 11,848 16,000 450
5810107 永和豆漿-新富-1.4 K1 2026/02/12 11,319 計算 7,519 6,752 8,000 200
2510029 早安-佳冬玉光2.5 K2 2026/02/24 11,080 計算 7,360 8,214 11,000 300
2610083 70號(早午餐)-5 K2 2026/03/06 11,061 計算 7,348 6,497 8,000 200
2510041 黃秋貴2.5 K2 2026/03/03 11,004 計算 7,310 11,715 16,000 450
1720032 仙隆宮泡沬2.5 K2 2026/03/06 10,990 計算 7,300 7,686 11,000 300
0110923 轉角45-3 K1 2026/03/04 10,917 計算 7,252 4,939 8,000 200
4810006 哈胖high胖加盟-大社-4 K2 2026/02/26 10,738 計算 7,133 3,383 8,000 200
1510025 康小姐-安坡2 A-PN 2026/02/10 10,654 計算 7,077 7,994 11,000 300
0610079 大仁E學院-2.5 A-PN 2026/02/10 10,651 計算 7,075 5,662 8,000 200
0510080 蒸餃 -下蚶3 K2 2026/03/04 10,626 計算 7,059 4,003 8,000 200
0620070 吳家紅茶冰-繁華1.4 A-PN 2026/03/05 10,567 計算 7,020 6,737 8,000 200
0111253 A-PT 2026/01/16 10,427 計算 6,927 2,245 6,000 150
6010045 椰蔬素食_3 K2 2026/03/04 10,402 計算 6,910 3,486 8,000 200
3710062 吉禾包子_5 K1 2026/03/06 10,395 計算 6,905 9,633 13,000 350
1110009 陳姿宜-2 A-PN 2026/03/03 10,374 計算 6,891 7,696 11,000 300
10290001 哈胖high胖加盟-大同-4 K2 2026/03/05 10,297 計算 6,840 3,888 8,000 200
25230001 宜園餐廳。王者香 K1 2026/02/26 10,295 計算 6,839 0 4,000 100
2410009 新埤-永和豆漿W2 K2 2026/02/24 10,294 計算 6,838 0 4,000 100
1710098 好吉利早餐-3 K2 2026/02/11 10,292 計算 6,837 7,132 10,000 300
6210031 儷玉早餐店1.4 K2 2026/02/05 10,211 計算 6,783 5,735 8,000 200
0111216 古糧碳烤三明治(加)-和平 A-PT 2026/03/05 10,205 計算 6,779 6,054 8,000 200
0610081 永和-德協1.4 A-PN 2026/02/12 10,183 計算 6,764 3,519 8,000 200
5810087 小青蛙營養早餐-1.4 K1 2026/02/26 10,119 計算 6,722 5,790 8,000 200
0210303 美好104早餐-3 K1 2026/03/04 10,017 計算 6,654 6,249 7,000 200
0980008 饗食鹹酥雞-3 A-PN 2026/02/11 10,005 計算 6,646 6,351 7,000 200
3740002 伍李麗華-1.4 K1 2026/03/02 9,903 計算 6,578 3,434 7,000 200
0810020 元發早餐-2.5 A-PN 2026/03/06 9,735 計算 6,467 6,150 7,000 200
2760005 枋寮依莎貝兒幼兒園2.5 K2 2026/02/13 9,663 計算 6,419 8,784 12,000 350
4410036 美美漢堡王2.5 K1 2026/01/02 9,642 計算 6,405 4,532 7,000 200
4210085 土豆廚坊-1.4 K1 2026/02/26 9,579 計算 6,363 8,691 12,000 350
4030001 橘子廚房-3 A-PN 2026/02/25 9,467 計算 6,289 3,590 7,000 200
3591003 小二春福氣鍋復興店2.5 K1 2026/02/26 9,420 計算 6,258 4,119 7,000 200
2670003 清唐-2.5 K2 2026/03/03 9,308 計算 6,183 5,212 7,000 200
5810105 品味軒-1.4 K1 2026/02/26 9,240 計算 6,138 6,902 10,000 300
0810079 小玉早餐_3 A-PN 2026/01/21 9,157 計算 6,083 10,324 14,000 400
0510179 香緹拉-萬丹新庒-3 K2 2026/02/25 9,153 計算 6,080 4,810 7,000 200
4410003 吉多屋早午餐-2.5 K1 2026/02/24 9,140 計算 6,072 7,662 11,000 300
1710017 晨光早點-3 K2 2026/03/04 8,990 計算 5,972 1,210 4,000 100
0620020 溫蒂長治-1.4 A-PN 2026/03/02 8,920 計算 5,925 4,193 7,000 200
4790001 反轉厚奶酥-岡山店_1 K2 2026/02/09 8,862 計算 5,887 0 4,000 100
2710012 甜甜屋2.5 K2 2026/02/24 8,820 計算 5,859 4,088 7,000 200
1110069 凱地貓-泰山2.5 A-PN 2026/03/03 8,781 計算 5,833 5,073 7,000 200
1220065 檸檬園泡沫(3) K1 2026/02/11 8,718 計算 5,791 5,270 7,000 200
0530039 陳師父-3 K2 2026/03/04 8,532 計算 5,668 4,209 6,000 150
4690001 貴族mini-4 K2 2026/02/26 8,485 計算 5,636 3,600 6,000 150
5810060 美而美-鳳山光華1.4 K1 2026/02/23 8,466 計算 5,624 7,325 10,000 300
0110041 歸來抓餅-3 K2 2026/02/11 8,457 計算 5,618 0 3,000 50
4310039 早到晚到-楠梓二店 K2 2026/02/09 8,431 計算 5,601 4,968 6,000 150
4210061 黑白配早午餐1.4 K1 2026/03/05 8,418 計算 5,592 2,354 6,000 150
0220268 搖起來-3 K1 2026/02/25 8,385 計算 5,570 5,596 8,000 200
0810075 徐玉環2.5 A-PN 2026/03/06 8,220 計算 5,460 8,361 11,000 300
2610075 手工饅頭-2.5 K2 2026/03/06 8,198 計算 5,446 5,906 8,000 200
1750002 小魚郎直播-3 K2 2025/11/26 8,195 計算 5,444 0 3,000 50
1310114 麥味登-內埔豐田-3 K1 2026/03/04 8,171 計算 5,428 6,499 9,000 250
1340009 辰手作-3 K1 2026/02/25 8,080 計算 5,367 5,306 6,000 150
4810005 餉食早午餐-1.4 K2 2026/03/05 8,028 計算 5,333 6,123 9,000 250
1920018 林邊燒仙草-2 K2 2026/03/03 7,884 計算 5,237 4,599 6,000 150
6320006 泉水早點-3 A-PN 2026/03/04 7,804 計算 5,184 5,092 6,000 150
2610059 枋寮-弘爺早點2.5 K2 2026/03/06 7,730 計算 5,135 4,297 6,000 150
6210029 水寮美美1.4 K2 2026/03/02 7,712 計算 5,123 7,403 10,000 300
0530048 西環牛莊_3 K2 2026/02/11 7,701 計算 5,116 5,134 7,000 200
0560008 萬大橋下柳小姐W3 K2 2026/03/04 7,621 計算 5,063 3,296 6,000 150
0110164 豆Re米漿晨坊-3 A-PT 2026/03/04 7,587 計算 5,040 7,515 10,000 300
5810127 美而美-曹公路_4 K1 2026/03/05 7,576 計算 5,033 2,182 6,000 150
0510041 莊芳玲W3 K2 2026/03/04 7,509 計算 4,988 7,410 10,000 300
2520006 太空冰城2.5 K2 2026/02/24 7,433 計算 4,938 5,303 7,000 200
2610033 元氣美食站2.5 K2 2026/03/06 7,376 計算 4,900 3,133 6,000 150
5890008 嗑吧1.4(原宵棧文龍 K2 2026/03/05 7,314 計算 4,859 3,371 6,000 150
1710084 正點早點-3 K2 2026/02/25 7,270 計算 4,829 3,076 6,000 150
1010025 高朗林太太(1.4)/15 A-PN 2026/03/05 7,265 計算 4,826 7,044 10,000 300
1020097 新圍紅茶1.4 A-PN 2026/03/05 7,186 計算 4,774 6,476 9,000 250
0510090 麻吉早餐店W3 K2 2026/03/04 7,104 計算 4,719 3,297 5,000 150
5810090 美迪亞-新富路-1.4 K1 2026/02/26 7,005 計算 4,653 4,341 5,000 150
3610008 碰個面-福音店2.5 K1 2026/03/06 6,929 計算 4,603 3,829 5,000 150
4610024 美美早餐-重立 1.4 K1 2026/03/02 6,898 計算 4,582 2,295 5,000 150
5810061 美而美-安寧1.4 K1 2026/03/05 6,758 計算 4,489 3,477 5,000 150
4430006 禾雅咖啡-2.5 K1 2026/01/27 6,699 計算 4,450 3,383 5,000 150
2120150 崁頂冷飲店-莊小姐-3 K2 2026/03/04 6,614 計算 4,394 3,639 5,000 150
A-PNP 營業部-PN外送 A-PN 2026/02/04 6,595 計算 4,381 6,742 9,000 250
4410007 398素食早餐-2.5 K1 2026/03/03 6,558 計算 4,356 2,500 5,000 150
1120006 燕威-泰山2.5 A-PN 2026/03/03 6,535 計算 4,341 1,250 4,000 100
1710016 許璞玉2.5 K2 2026/03/03 6,456 計算 4,289 1,023 3,000 50
0190013 小二春鍋燒-民生店 A-PT 2026/03/02 6,374 計算 4,234 2,739 5,000 150
4410028 唯豐朝食2.5 K1 2026/02/10 6,324 計算 4,201 0 3,000 50
2610072 雞爸爸-2.5 K2 2026/03/06 6,319 計算 4,198 3,052 5,000 150
5810072 義美琪-1.4 K1 2026/02/23 6,291 計算 4,179 581 3,000 50
0980012 黑豬懷舊食堂2.5 A-PN 2026/03/06 6,254 計算 4,154 2,225 5,000 150
2630036 鰻鰻烤-枋寮店2.5 K2 2026/02/13 6,240 計算 4,145 11,337 15,000 450
1510029 晨墨家屋食堂-2.5 A-PN 2026/03/03 6,222 計算 4,133 3,820 5,000 150
4210132 AM健康餐盒1.4 K1 2026/02/12 6,189 計算 4,111 5,799 8,000 200
1720028 新峰冰城_3 K2 2026/02/25 6,164 計算 4,095 2,975 5,000 150
1210031 瑞麟-赤山(3) K1 2026/03/04 6,139 計算 4,078 2,346 5,000 150
4410022 原滋味早午餐2.5 K1 2025/11/28 5,952 計算 3,954 0 3,000 50
0710034 湯包煎餃1.4 K2 2026/03/02 5,864 計算 3,895 4,478 6,000 150
0110193 小叮噹屏東廣東 A-PT 2026/03/06 5,829 計算 3,872 4,465 6,000 150
0980014 雞次郎 2.5 A-PN 2026/02/06 5,796 計算 3,850 3,096 5,000 150
0910022 N013食堂 2.5 A-PN 2026/02/24 5,778 計算 3,838 2,198 5,000 150
4210144 榮興港式夜宵-1.4 K1 2026/03/05 5,765 計算 3,830 2,319 5,000 150
1710066 清早早餐-3 K2 2026/03/04 5,731 計算 3,807 3,223 4,000 100
0820025 李毓蕙-3 A-PN 2026/02/25 5,685 計算 3,776 1,989 4,000 100
0111124 和園早午餐 A-PT 2026/03/05 5,672 計算 3,768 3,660 4,000 100
4310037 王勻均1.4 K2 2026/03/05 5,604 計算 3,723 2,470 4,000 100
0690003 探桔咖啡1.4 A-PN 2026/03/02 5,573 計算 3,702 1,742 4,000 100
6290001 戀戀大樹1.4 K2 2026/03/05 5,563 計算 3,695 2,772 4,000 100
2510001 八兩-佳冬2.5 K2 2026/03/03 5,560 計算 3,693 0 3,000 50
4410025 Lane28-過勇店2.5 K1 2025/12/12 5,543 計算 3,682 0 3,000 50
5810065 瑪莉早餐店1.4 K1 2026/03/05 5,474 計算 3,636 3,664 5,000 150
2520016 鴻成檳榔2.5 K2 2026/03/03 5,468 計算 3,632 1,479 4,000 100
5810187 元之氣-三誠店-2.5 K1 2026/03/06 5,377 計算 3,572 3,000 4,000 100
4210142 初早安好手作早餐-1.4 K1 2026/03/02 5,300 計算 3,521 3,427 4,000 100
4780002 Mr.Q大熱狗-岡山-1 K2 2026/03/02 5,167 計算 3,432 3,286 4,000 100
1930007 悟饕飯包 K2 2026/02/13 5,143 計算 3,416 4,997 7,000 200
2030159 南邊61-6咖啡-3 K2 2026/02/11 5,122 計算 3,402 3,703 5,000 150
1910010 台北廣東粥-2.5 K2 2026/02/24 5,063 計算 3,363 2,882 4,000 100
0510012 老朋友早餐-施小姐-3 K2 2026/02/25 5,062 計算 3,363 812 3,000 50
5810239 美素園-文山店1.4 K2 2026/03/05 5,025 計算 3,338 2,415 4,000 100
0210261 美素園-熱河-1.4 K1 2026/02/26 4,936 計算 3,279 3,142 4,000 100
0570001 鮮而美-3 K2 2025/12/31 4,869 計算 3,234 0 3,000 50
3990003 天天喫粥1.4 K1 2026/02/26 4,834 計算 3,211 2,976 4,000 100
2610005 鄭文嬪2.5 K2 2025/12/30 4,754 計算 3,158 0 3,000 50
5910031 後庄素食麵_4 K1 2026/01/08 4,676 計算 3,106 4,676 7,000 200
1710047 友圓對面攤販2.5 K2 2026/03/03 4,651 計算 3,090 6,226 9,000 250
4210156 永和豆漿-建工1.4 K1 2026/02/09 4,625 計算 3,072 4,132 6,000 150
A-PTP 營業部-PT外送 A-PT 2026/03/06 4,608 計算 3,061 12,219 17,000 500
1310116 小叮噹-豐田-3 K1 2026/02/11 4,581 計算 3,043 2,681 4,000 100
4390005 榮興港式夜宵-楠梓-1.4 K2 2026/02/09 4,574 計算 3,038 2,101 4,000 100
4190002 梧茗-2 K1 2026/02/03 4,542 計算 3,017 1,514 4,000 100
2080002 紅豆餅-南州-3 K2 2026/03/04 4,466 計算 2,967 2,233 4,000 100
1920023 林邊-日本拉麵2.5 K2 2026/03/03 4,455 計算 2,959 2,911 4,000 100
2640004 富全麵包2.5 K2 2026/03/06 4,442 計算 2,951 3,752 5,000 150
5910041 吳明吉2.5 K1 2026/02/13 4,389 計算 2,916 4,389 6,000 150
0920019 阿貴2.5 A-PN 2026/02/24 4,356 計算 2,894 2,242 4,000 100
4210123 威力早午餐_4 K1 2026/03/05 4,314 計算 2,866 4,314 6,000 150
1720137 紅茶幫-新園_5 K2 2026/01/23 4,287 計算 2,848 2,858 4,000 100
0510016 黃薛春連W3 K2 2026/02/25 4,257 計算 2,828 2,151 3,000 50
K2P K2外送 K2 2026/02/09 4,168 計算 2,769 2,458 3,000 50
6180001 燒肉飯-1.4 K2 2026/02/09 4,119 計算 2,736 1,724 3,000 50
1010117 早安美芝城-高朗1.4 A-PN 2025/12/04 4,082 計算 2,712 0 3,000 50
4210036 丹麥先生早餐店-1.4 K1 2026/02/26 4,018 計算 2,669 1,649 3,000 50
5810164 黃怡婷-1.4 K2 2026/02/26 4,013 計算 2,666 2,367 3,000 50
0910082 陳佩君-3 A-PN 2026/03/04 3,976 計算 2,641 0 3,000 50
4120009 蘇家冰城1.4 K1 2026/02/26 3,953 計算 2,626 3,886 6,000 150
1720004 全尚鍋燒麵2.5 K2 2026/02/13 3,953 計算 2,626 2,300 3,000 50
4210157 里食光1.4 K1 2026/03/05 3,952 計算 2,625 2,889 4,000 100
0110919 巨林美而美-公館2.5 A-PT 2026/03/03 3,945 計算 2,621 1,238 3,000 50
5830050 可佳自助餐_4 K1 2025/12/11 3,910 計算 2,597 0 3,000 50
6010046 基隆九如三明治_3 K2 2026/02/25 3,891 計算 2,585 3,076 5,000 150
1710088 胡紅云-2.5 K2 2026/03/06 3,868 計算 2,569 1,399 3,000 50
0510005 夏南早點W3 K2 2026/03/04 3,835 計算 2,548 1,083 3,000 50
4380003 子晟炸雞場-4 K2 2025/11/27 3,806 計算 2,528 0 3,000 50
1010048 巧味美1.4 A-PN 2026/03/02 3,698 計算 2,457 2,824 4,000 100
4410030 拉亞漢堡-宏平2.5 K1 2026/02/10 3,595 計算 2,388 2,679 4,000 100
5890002 品約餐坊1.4 K1 2026/01/12 3,558 計算 2,364 3,558 5,000 150
4310034 謝麗玲-1 K2 2026/03/02 3,555 計算 2,362 1,598 3,000 50
2670002 建興幼兒園-2 K2 2026/03/03 3,548 計算 2,357 0 3,000 50
0560001 巧味海苔飯卷-3 K2 2025/12/24 3,547 計算 2,356 0 3,000 50
0510115 布好笑早餐店_3 K2 2026/03/04 3,524 計算 2,341 1,762 3,000 50
3710035 亞倫妮-山東-1.4 K1 2026/03/05 3,515 計算 2,335 3,527 5,000 150
6310011 郭先生-3 A-PN 2026/03/04 3,481 計算 2,312 1,875 3,000 50
0320040 福家小館-3 K2 2026/03/04 3,481 計算 2,312 2,342 4,000 100
5840003 禾軒-1.4 K1 2025/12/18 3,431 計算 2,279 0 3,000 50
4210103 蜻蜓早點-1.4 K1 2026/03/05 3,367 計算 2,237 1,165 3,000 50
1350001 永大食品原料有限公司-3 K1 2026/01/28 3,357 計算 2,230 2,686 4,000 100
0110220 田宜璁-3 A-PT 2026/02/25 3,344 計算 2,221 1,714 3,000 50
0710027 巨林-麟洛(3) K1 2026/02/25 3,324 計算 2,208 809 3,000 50
0910081 曼尼斯-2.5 A-PN 2026/03/06 3,308 計算 2,197 2,973 4,000 100
0510108 下蚶早點W3 K2 2026/02/25 3,208 計算 2,131 1,576 3,000 50
5810198 薄依特2.5 K1 2026/02/24 3,181 計算 2,113 3,549 5,000 150
28030003 松苑餐廳-中央店。王者香 K1 2026/03/03 3,152 計算 2,094 0 3,000 50
0960028 陳清文-1.4 A-PN 2026/01/22 3,139 計算 2,085 1,461 3,000 50
0530005 林文龍_3 K2 2026/02/11 3,113 計算 2,068 0 3,000 50
0910092 早餐先生2.5 A-PN 2026/03/06 3,087 計算 2,051 698 3,000 50
2550003 佳冬鄉農會生鮮超市2.5 K2 2026/01/30 3,086 計算 2,050 3,086 5,000 150
4810003 早點來-大社1.4 K2 2025/12/11 3,086 計算 2,050 0 3,000 50
1110086 阿尼早餐1.4-G A-PN 2026/01/08 3,048 計算 2,025 3,048 5,000 150
6380002 韓星炸雞-3 A-PN 2026/01/28 2,986 計算 1,984 1,219 3,000 50
0520170 漠茶樂-3 K2 2025/12/24 2,977 計算 1,978 0 3,000 50
3520003 日和.樂茶町-2.5 K1 2026/02/10 2,972 計算 1,974 1,486 3,000 50
2010010 唐水寶-3 K2 2026/03/04 2,971 計算 1,974 2,377 4,000 100
4210151 小搞搞叭噗蛋餅1.4 K1 2026/02/23 2,957 計算 1,964 1,843 3,000 50
5810208 甲胖職人手作早午餐2.5 K1 2026/03/06 2,941 計算 1,954 3,662 5,000 150
4110017 美寶堡-崗山西街-2 K1 2026/02/10 2,844 計算 1,889 1,750 3,000 50
5810037 五色廚房_4 K1 2026/02/26 2,838 計算 1,885 1,423 3,000 50
0910013 永春早點2.5 A-PN 2026/02/24 2,803 計算 1,862 1,738 3,000 50
6210005 黃秋田-1.4 K2 2026/02/09 2,780 計算 1,847 1,390 3,000 50
0110081 鍋燒一族 A-PT 2026/03/03 2,762 計算 1,835 1,343 3,000 50
5820029 義爵式創意輕食-1.4 K2 2026/01/22 2,734 計算 1,816 1,829 3,000 50
0810006 許明添W3 A-PN 2026/03/04 2,685 計算 1,784 300 3,000 50
1710022 上林廣東粥_3 K2 2026/03/04 2,684 計算 1,783 2,898 4,000 100
0930015 陳素蓮-3 A-PN 2026/03/04 2,682 計算 1,782 3,841 6,000 150
4110052 Smoko salad bar-2.5 K1 2025/12/16 2,667 計算 1,772 0 3,000 50
3710082 禾森咖啡館-師大-2 K1 2026/02/10 2,648 計算 1,759 844 3,000 50
2520053 枋寮-9453網咖 2.5 K2 2026/02/06 2,633 計算 1,749 766 3,000 50
0910100 飯香館-陳伊翔2.5 A-PN 2026/03/03 2,628 計算 1,746 1,895 3,000 50
4210129 亞倫妮早午餐-昌裕1.4 K1 2026/02/05 2,625 計算 1,744 2,803 4,000 100
0550008 阿珍批發_3 K2 2025/12/03 2,567 計算 1,705 0 3,000 50
4610005 早安21-3-4 K2 2026/02/12 2,532 計算 1,682 1,629 3,000 50
4110024 Smile Brunch-2.5 K1 2026/01/09 2,515 計算 1,671 1,005 3,000 50
1410002 小叮噹-西勢-3 K1 2026/02/25 2,500 計算 1,661 1,825 3,000 50
2630004 紅豆餅枋寮2.5 K2 2026/03/03 2,488 計算 1,653 2,156 3,000 50
2530039 好粥到-佳冬2.5 K2 2026/02/24 2,480 計算 1,647 1,730 3,000 50
2680001 山文竟鍋燒枋寮-2 K2 2026/02/24 2,433 計算 1,616 1,314 3,000 50
4710005 日十早午餐-岡山-1 K2 2026/03/02 2,388 計算 1,586 1,244 3,000 50
23630001 王者香。逢甲店 K1 2026/01/20 2,381 計算 1,582 2,381 4,000 100
0510006 美而美-社皮郵局W3 K2 2026/03/04 2,326 計算 1,545 1,491 3,000 50
0530018 宏靜幼兒園W3 K2 2025/12/24 2,254 計算 1,497 0 3,000 50
0510120 早點-廣安W3 K2 2026/02/25 2,250 計算 1,495 1,656 3,000 50
1220003 冰BAR(3) K1 2026/02/11 2,209 計算 1,467 0 3,000 50
0310070 早上好-3 K2 2025/11/26 2,190 計算 1,455 0 3,000 50
2020003 水世界南州-3 K2 2026/02/25 2,175 計算 1,445 1,400 3,000 50
6330007 錦靜食堂-3 A-PN 2026/02/11 2,172 計算 1,443 1,699 3,000 50
4480005 路邊12號飯糰 創始店2.5 K1 2026/02/26 2,145 計算 1,425 2,221 3,000 50
4110035 古早人包子店-2.5 K1 2026/01/06 2,126 計算 1,412 2,126 3,000 50
2760001 育群托兒所2.5 K2 2026/03/06 2,036 計算 1,352 0 3,000 50
0110928 ABC早餐 A-PT 2026/01/13 1,957 計算 1,300 895 3,000 50
4390002 咖喱哪勒Curry Where?-4 K2 2026/01/26 1,867 計算 1,240 1,467 3,000 50
5810177 Lane 28(文化) 1.4 K1 2025/11/27 1,859 計算 1,235 0 3,000 50
3560001 比歐緻居2.5 K1 2026/03/06 1,810 計算 1,202 0 3,000 50
0160077 湯姆熊-屏東民族 A-PT 2026/02/23 1,800 計算 1,196 787 3,000 50
4510014 朝早餐屋-1.4 K1 2025/12/04 1,790 計算 1,189 0 3,000 50
0510178 手作古早味-3 K2 2026/02/11 1,767 計算 1,174 0 3,000 50
0810058 晨語早餐2.5 A-PN 2026/02/03 1,754 計算 1,165 579 3,000 50
6110008 美滋泉-鳥松1.4 K1 2026/03/02 1,727 計算 1,147 1,710 3,000 50
6210016 美滋泉-久堂-1.4 K2 2026/01/19 1,726 計算 1,147 724 3,000 50
2290001 bistro185餐酒館-3 K1 2025/11/19 1,622 計算 1,077 0 3,000 50
0510181 社皮飯湯-W3 K2 2026/02/25 1,576 計算 1,047 0 3,000 50
1930014 林邊李師父2.5 K2 2026/01/27 1,547 計算 1,028 1,547 3,000 50
0380018 彰彰小煎包_3 K2 2026/03/04 1,523 計算 1,012 5,788 8,000 200
0310111 古糧早餐-鳳山店_4 K1 2026/02/12 1,514 計算 1,006 1,514 3,000 50
1310255 913早餐坊-3 K1 2026/02/11 1,489 計算 989 0 3,000 50
4290012 岩手ENZO壽司1.4 K1 2025/12/29 1,448 計算 962 0 3,000 50
0520175 紅茶幫-社皮3 K2 2025/11/19 1,429 計算 949 0 3,000 50
2610041 方寸素食 K2 2026/02/03 1,419 計算 943 0 3,000 50
5810084 美滋泉-鳳山光復_4 K1 2026/02/26 1,398 計算 929 0 3,000 50
4510010 美而美-裕誠_4 K1 2025/12/11 1,381 計算 917 0 3,000 50
2660011 塭豐香雞排2.5 K2 2026/03/03 1,359 計算 903 992 3,000 50
5810224 呷尚寶-鳳山瑞興_4 K1 2026/02/12 1,343 計算 892 1,343 3,000 50
2530038 香堤綠園2.5 K2 2026/02/06 1,333 計算 885 0 3,000 50
5810068 美味美-光復_4 K1 2026/02/12 1,327 計算 882 2,602 4,000 100
1310256 美而美-豐田-3 K1 2025/12/31 1,300 計算 864 0 3,000 50
0910084 次春早午餐-里港2.5 A-PN 2026/02/10 1,197 計算 795 673 3,000 50
1920021 巧克網路2.5 K2 2026/02/13 1,138 計算 756 0 3,000 50
4480003 金日鴻便當2.5 K1 2025/12/26 1,138 計算 756 0 3,000 50
1020098 柯媽媽檸檬冰沙1.4 A-PN 2025/12/18 1,136 計算 755 0 3,000 50
0980003 阿雖與砸扣 K1 2026/03/04 1,110 計算 737 157 3,000 50
1710102 瑞麟美而美-仙吉店-3 K2 2026/03/04 1,086 計算 721 2,172 3,000 50
6210032 麥味登久堂中興店1.4 K2 2026/03/02 1,080 計算 717 6,260 9,000 250
0121245 多多姐古早味紅茶冰4 A-PT 2025/12/22 1,069 計算 710 0 3,000 50
1210041 陳秀鏈-佳和-3 K1 2025/11/19 1,067 計算 709 0 3,000 50
5810080 美美早餐-新富-1.4 K1 2026/02/12 1,067 計算 709 962 3,000 50
1310005 夏一跳-富田-3 K1 2026/02/25 1,057 計算 702 1,057 3,000 50
1220069 大姆哥茶飲-3 K1 2025/12/10 1,057 計算 702 0 3,000 50
1720132 新園茶品2.5 K2 2026/03/04 1,052 計算 699 1,357 3,000 50
1320212 鄭小姐-內埔-3 K1 2025/12/03 1,029 計算 684 0 3,000 50
4110010 麥味登-沱江-5 K1 2026/01/16 943 計算 626 1,482 3,000 50
0810077 鑫睿咖哩、鍋燒-2.5 A-PN 2026/02/13 924 計算 614 505 3,000 50
5840007 馬蔥餅-仁和店1.4 K2 2025/12/01 867 計算 576 0 3,000 50
2690001 日昇撞球場-2.5 K2 2025/12/16 857 計算 569 0 3,000 50
0880004 阿貞魯粿2.5 A-PN 2026/02/03 853 計算 567 0 3,000 50
2620036 東海冰店(梅梅旁)2.5 K2 2026/03/03 767 計算 510 0 3,000 50
0520163 呷茶等冰友-3 K2 2026/03/04 735 計算 488 864 3,000 50
0510197 三點食客_3 K2 2025/12/03 724 計算 481 0 3,000 50
0580004 平安紅豆餅-3 K2 2026/02/25 690 計算 458 0 3,000 50
0121223 威澤遊戲廣場 A-PT 2026/03/06 681 計算 452 2,714 4,000 100
2610028 榮利商號2.5 K2 2026/03/03 660 計算 438 660 3,000 50
5810248 許早(文自店)1.4 K1 2026/02/02 624 計算 415 624 3,000 50
5820043 員味綠豆湯1.4 K2 2026/03/05 624 計算 415 624 3,000 50
2580004 基隆海產粥-2.5 K2 2026/02/10 605 計算 402 605 3,000 50
0160050 51區撞球店 A-PT 2026/02/05 590 計算 392 0 3,000 50
4210029 晨食達人-澄明-4 K1 2026/02/26 571 計算 379 0 3,000 50
3780001 戰味鹹酥雞-南華2.5 K1 2026/02/06 550 計算 365 550 3,000 50
5880003 戰味鹹酥雞-文衡1.4 K1 2026/03/05 550 計算 365 550 3,000 50
1310264 黃氏鸞_3 K1 2025/12/03 537 計算 357 0 3,000 50
1310043 富田肉粽-3 K1 2026/02/11 514 計算 341 0 3,000 50
0260018 仙女麵食館-3 K1 2025/12/09 438 計算 291 0 3,000 50
基準期間: 20251115 ~ 20260109 | 紅包 = 門檻 × 3% | 紅色 = MTD消費 ≥ 門檻

資料輸出

11. CP-26-006 輸出

程式碼
timestamp = get_export_timestamp()
export_name_006 = get_export_name("CustomerTargeting_CP-26-006", timestamp)

export_006 = (
    targets_006
    .with_columns([
        pl.col("customer_code").cast(pl.Utf8).alias("customer_code"),
        pl.when(pl.col("last_order_date").is_not_null())
        .then(
            pl.col("last_order_date").str.slice(0, 4) + "/" +
            pl.col("last_order_date").str.slice(4, 2) + "/" +
            pl.col("last_order_date").str.slice(6, 2)
        )
        .otherwise(pl.lit(""))
        .alias("last_order")
    ])
    .select([
        "customer_code", "trade_name", "delivery_route",
        "target_type", "revenue_since_nov", "last_order"
    ])
)

sheet_url_006 = google_write_sheet(
    data=export_006,
    sheet_name=export_name_006,
    sheet_tab="target_customers",
)

if sheet_url_006:
    print(f"**CP-26-006 Google Sheet:** {sheet_url_006}")
else:
    csv_path_006 = f"/tmp/{export_name_006}.csv"
    export_006.write_csv(csv_path_006)
    print(f"**CP-26-006 CSV:** {csv_path_006}")
    print(f"Total rows: {len(export_006):,}")
Created sheet: https://docs.google.com/spreadsheets/d/1Bl4KAFORPz38ONR8ekqxwdjKVALN8EzqX_V9nF_eW88
**CP-26-006 Google Sheet:** https://docs.google.com/spreadsheets/d/1Bl4KAFORPz38ONR8ekqxwdjKVALN8EzqX_V9nF_eW88

12. CP-26-008 輸出

程式碼
export_name_008 = get_export_name("CustomerTargeting_CP-26-008", timestamp)

export_008 = (
    targets_008
    .with_columns([
        pl.col("customer_code").cast(pl.Utf8).alias("customer_code"),
        pl.when(pl.col("last_order_date").is_not_null())
        .then(
            pl.col("last_order_date").str.slice(0, 4) + "/" +
            pl.col("last_order_date").str.slice(4, 2) + "/" +
            pl.col("last_order_date").str.slice(6, 2)
        )
        .otherwise(pl.lit(""))
        .alias("last_order")
    ])
    .select([
        "customer_code",
        "trade_name",
        "delivery_route",
        "last_order",
        "baseline_revenue",
        "threshold_source",
        "threshold",
        "jan_mtd_spend",
        "adjusted_threshold",
        "rebate_amount"
    ])
)

sheet_url_008 = google_write_sheet(
    data=export_008,
    sheet_name=export_name_008,
    sheet_tab="target_customers",
)

if sheet_url_008:
    print(f"**CP-26-008 Google Sheet:** {sheet_url_008}")
else:
    csv_path_008 = f"/tmp/{export_name_008}.csv"
    export_008.write_csv(csv_path_008)
    print(f"**CP-26-008 CSV:** {csv_path_008}")
    print(f"Total rows: {len(export_008):,}")
Created sheet: https://docs.google.com/spreadsheets/d/1d5LT9iVzgSe1tvVHmJBFAe0Zjjb3g5DKDAxflNQs1jU
**CP-26-008 Google Sheet:** https://docs.google.com/spreadsheets/d/1d5LT9iVzgSe1tvVHmJBFAe0Zjjb3g5DKDAxflNQs1jU

附錄: 資料說明

註釋CP-26-006 欄位說明
  • customer_code: 客戶代碼
  • trade_name: 商號名稱
  • delivery_route: 配送路線 (A-PT: 屏東市, A-PN: 屏北)
  • target_type: 目標類型 (交叉銷售 / 流失挽回)
  • revenue_since_nov: 營收金額 (交叉銷售: 2025/11起; 流失挽回: 2025全年)
  • last_order: 最後訂單日期 (僅流失挽回客戶)
註釋CP-26-008 欄位說明
  • customer_code: 客戶代碼
  • trade_name: 商號名稱
  • delivery_route: 配送路線 (A-PT, A-PN, K1, K2)
  • last_order: 最後訂單日期
  • baseline_revenue: 基準期間營收 (2025-11-15 ~ 2026-01-09)
  • threshold_source: 門檻來源 (計算 / 中位數)
  • threshold: 原始消費門檻
  • jan_mtd_spend: 2026年1月 MTD 消費金額 (紅色標示 = 已達門檻)
  • adjusted_threshold: 調整後門檻 (下限$3,000,進位至$1,000)
  • rebate_amount: 紅包金額 (調整門檻 × 3%,捨去至$50)
警告重要注意事項
  1. CP-26-006 與 CP-26-008 互斥: A-PT/A-PN 路線客戶只會出現在其中一個活動
  2. K1/K2 客戶: 全部納入 CP-26-008,不受 CP-26-006 影響
  3. 門檻計算: 無基準營收客戶採用中位數,確保每位客戶都有合理門檻